ETH Price: $3,389.08 (-1.53%)
Gas: 2 Gwei

Token

L i l C a t t s (LilCatts)
 

Overview

Max Total Supply

810 LilCatts

Holders

641

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LilCatts
0x3ab04ba9e07a9372226c152bc4315ee7d0b0cf38
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:
LilCatts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-14
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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 DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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


contract LilCatts is ERC721A, DefaultOperatorFilterer {
    string public baseURI = "ipfs://bafybeiho372ikzdsffk4xis6mf7dl7cfbar2ajaio2mj3atcs6wtgbhx3i/";      
    uint256 public maxSupply = 999; 
    uint256 public price = 0.002 ether;
    uint256 public maxPerTx = 30;
    uint256 private _baseGasLimit = 80000;
    uint256 private _baseDifficulty = 10;
    uint256 private _difficultyBais = 120;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        require(amount <= maxPerTx);
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }     

    function freemint() public {
        require(gasleft() > _baseGasLimit);       
        if (!raffle()) return;
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) == 0);
        _safeMint(msg.sender, 1);
    }

    function raffle() public view returns(bool) {
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
        return num > difficulty();
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("L i l C a t t s", "LilCatts") {
        owner = msg.sender;
    }
    
    function setPrice(uint256 newPrice, uint256 maxT) external onlyOwner {
        price = newPrice;
        maxPerTx = maxT;
    }

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"difficulty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"maxT","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620032dd6043913960089080519060200190620000359291906200037b565b506103e760095566071afd498d0000600a55601e600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f4c2069206c2043206120742074207300000000000000000000000000000000008152506040518060400160405280600881526020017f4c696c43617474730000000000000000000000000000000000000000000000008152508160029080519060200190620001069291906200037b565b5080600390805190602001906200011f9291906200037b565b50620001306200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b992919062000459565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027392919062000459565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f691906200043c565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051f565b600090565b8280546200038990620004ba565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b620004368162000486565b82525050565b60006020820190506200045360008301846200042b565b92915050565b60006040820190506200047060008301856200042b565b6200047f60208301846200042b565b9392505050565b600062000493826200049a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e9620004f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612dae806200052f6000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c514610575578063f7d97577146105b2578063f968adbe146105db578063f9cb63ac146106065761019c565b8063b88d4fde146104f1578063c87b56dd1461050d578063d5abeb011461054a5761019c565b806395d89b41116100c657806395d89b4114610456578063a035b1fe14610481578063a0712d68146104ac578063a22cb465146104c85761019c565b80636c0360eb146103c357806370a08231146103ee5780638da5cb5b1461042b5761019c565b806323b872dd1161015957806341f434341161013357806341f434341461031657806342842e0e1461034157806355f804b31461035d5780636352211e146103865761019c565b806323b872dd146102b857806333c1420a146102d45780633ccfd60b146102ff5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806319cae4621461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b60405161028491906128ba565b60405180910390f35b34801561029957600080fd5b506102a26108f0565b6040516102af91906128ba565b60405180910390f35b6102d260048036038101906102cd91906123e2565b610926565b005b3480156102e057600080fd5b506102e9610a86565b6040516102f69190612862565b60405180910390f35b34801561030b57600080fd5b50610314610ad3565b005b34801561032257600080fd5b5061032b610b76565b604051610338919061287d565b60405180910390f35b61035b600480360381019061035691906123e2565b610b88565b005b34801561036957600080fd5b50610384600480360381019061037f91906125bf565b610ce8565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612608565b610d5c565b6040516103ba91906127d2565b60405180910390f35b3480156103cf57600080fd5b506103d8610d6e565b6040516103e59190612898565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612375565b610dfc565b60405161042291906128ba565b60405180910390f35b34801561043757600080fd5b50610440610eb5565b60405161044d91906127d2565b60405180910390f35b34801561046257600080fd5b5061046b610edb565b6040516104789190612898565b60405180910390f35b34801561048d57600080fd5b50610496610f6d565b6040516104a391906128ba565b60405180910390f35b6104c660048036038101906104c19190612608565b610f73565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906124b8565b610fca565b005b61050b60048036038101906105069190612435565b6110e3565b005b34801561051957600080fd5b50610534600480360381019061052f9190612608565b611246565b6040516105419190612898565b60405180910390f35b34801561055657600080fd5b5061055f6112e5565b60405161056c91906128ba565b60405180910390f35b34801561058157600080fd5b5061059c600480360381019061059791906123a2565b6112eb565b6040516105a99190612862565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612635565b61137f565b005b3480156105e757600080fd5b506105f06113eb565b6040516105fd91906128ba565b60405180910390f35b34801561061257600080fd5b5061061b6113f1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b60006108e3611630565b6001546000540303905090565b6000600954600e546109006108d9565b61090a9190612a26565b61091491906129f5565b600d54610921919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a74573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099957610994848484611635565b610a80565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109e29291906127ed565b60206040518083038186803b1580156109fa57600080fd5b505afa158015610a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a329190612538565b610a7357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a6a91906127d2565b60405180910390fd5b5b610a7f848484611635565b5b50505050565b60008060644233604051602001610a9e9291906127a6565b6040516020818303038152906040528051906020012060001c610ac19190612bfd565b9050610acb6108f0565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2d57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b73573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610cd6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bfb57610bf684848461195a565b610ce2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c449291906127ed565b60206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612538565b610cd557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ccc91906127d2565b60405180910390fd5b5b610ce184848461195a565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d4257600080fd5b8060089080519060200190610d58929190612174565b5050565b6000610d678261197a565b9050919050565b60088054610d7b90612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790612b6c565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610eea90612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1690612b6c565b8015610f635780601f10610f3857610100808354040283529160200191610f63565b820191906000526020600020905b815481529060010190602001808311610f4657829003601f168201915b5050505050905090565b600a5481565b60095481610f7f6108d9565b610f89919061299f565b1115610f9457600080fd5b600b54811115610fa357600080fd5b600a5481610fb19190612a26565b341015610fbd57600080fd5b610fc73382611a48565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110d4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110429291906127ed565b60206040518083038186803b15801561105a57600080fd5b505afa15801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190612538565b6110d357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110ca91906127d2565b60405180910390fd5b5b6110de8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611232573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111575761115285858585611b71565b61123f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111a09291906127ed565b60206040518083038186803b1580156111b857600080fd5b505afa1580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f09190612538565b61123157336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122891906127d2565b60405180910390fd5b5b61123e85858585611b71565b5b5050505050565b60606112518261148d565b611287576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611291611be4565b90506000815114156112b257604051806020016040528060008152506112dd565b806112bc84611c76565b6040516020016112cd929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d957600080fd5b81600a8190555080600b819055505050565b600b5481565b600c545a116113ff57600080fd5b611407610a86565b6114105761148b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461144857600080fd5b60095460016114556108d9565b61145f919061299f565b111561146a57600080fd5b600061147533610dfc565b1461147f57600080fd5b61148a336001611a48565b5b565b600081611498611630565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610d5c565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b6112eb565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116408261197a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116b384611cd7565b915091506116c981876116c4611ccf565b611cfe565b611715576116de866116d9611ccf565b6112eb565b611714576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561177c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117898686866001611d42565b801561179457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118628561183e888887611d48565b7c020000000000000000000000000000000000000000000000000000000017611d70565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156118ea5760006001850190506000600460008381526020019081526020016000205414156118e85760005481146118e7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119528686866001611d9b565b505050505050565b611975838383604051806020016040528060008152506110e3565b505050565b60008082905080611989611630565b11611a1157600054811015611a105760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a0e575b6000811415611a045760046000836001900393508381526020019081526020016000205490506119d9565b8092505050611a43565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611a62828260405180602001604052806000815250611da1565b5050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c848484610926565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d5f868684611f9e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611dab8383611fa7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3957600080549050600083820390505b611deb6000868380600101945086611e3e565b611e21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dd8578160005414611e3657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611fe8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ff56000848385611d42565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061206c8361205d6000866000611d48565b61206685612164565b17611d70565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120d2565b506000821415612149576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061215f6000848385611d9b565b505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea26469706673582212202cbb0a6d6526c870fc8cc65ea82d660f0c3a1bfbe360248398e1bf2fc3f08ca964736f6c63430008070033697066733a2f2f62616679626569686f333732696b7a647366666b34786973366d6637646c37636662617232616a61696f326d6a33617463733677746762687833692f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c514610575578063f7d97577146105b2578063f968adbe146105db578063f9cb63ac146106065761019c565b8063b88d4fde146104f1578063c87b56dd1461050d578063d5abeb011461054a5761019c565b806395d89b41116100c657806395d89b4114610456578063a035b1fe14610481578063a0712d68146104ac578063a22cb465146104c85761019c565b80636c0360eb146103c357806370a08231146103ee5780638da5cb5b1461042b5761019c565b806323b872dd1161015957806341f434341161013357806341f434341461031657806342842e0e1461034157806355f804b31461035d5780636352211e146103865761019c565b806323b872dd146102b857806333c1420a146102d45780633ccfd60b146102ff5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806319cae4621461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b60405161028491906128ba565b60405180910390f35b34801561029957600080fd5b506102a26108f0565b6040516102af91906128ba565b60405180910390f35b6102d260048036038101906102cd91906123e2565b610926565b005b3480156102e057600080fd5b506102e9610a86565b6040516102f69190612862565b60405180910390f35b34801561030b57600080fd5b50610314610ad3565b005b34801561032257600080fd5b5061032b610b76565b604051610338919061287d565b60405180910390f35b61035b600480360381019061035691906123e2565b610b88565b005b34801561036957600080fd5b50610384600480360381019061037f91906125bf565b610ce8565b005b34801561039257600080fd5b506103ad60048036038101906103a89190612608565b610d5c565b6040516103ba91906127d2565b60405180910390f35b3480156103cf57600080fd5b506103d8610d6e565b6040516103e59190612898565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612375565b610dfc565b60405161042291906128ba565b60405180910390f35b34801561043757600080fd5b50610440610eb5565b60405161044d91906127d2565b60405180910390f35b34801561046257600080fd5b5061046b610edb565b6040516104789190612898565b60405180910390f35b34801561048d57600080fd5b50610496610f6d565b6040516104a391906128ba565b60405180910390f35b6104c660048036038101906104c19190612608565b610f73565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906124b8565b610fca565b005b61050b60048036038101906105069190612435565b6110e3565b005b34801561051957600080fd5b50610534600480360381019061052f9190612608565b611246565b6040516105419190612898565b60405180910390f35b34801561055657600080fd5b5061055f6112e5565b60405161056c91906128ba565b60405180910390f35b34801561058157600080fd5b5061059c600480360381019061059791906123a2565b6112eb565b6040516105a99190612862565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612635565b61137f565b005b3480156105e757600080fd5b506105f06113eb565b6040516105fd91906128ba565b60405180910390f35b34801561061257600080fd5b5061061b6113f1565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b60006108e3611630565b6001546000540303905090565b6000600954600e546109006108d9565b61090a9190612a26565b61091491906129f5565b600d54610921919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a74573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099957610994848484611635565b610a80565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109e29291906127ed565b60206040518083038186803b1580156109fa57600080fd5b505afa158015610a0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a329190612538565b610a7357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a6a91906127d2565b60405180910390fd5b5b610a7f848484611635565b5b50505050565b60008060644233604051602001610a9e9291906127a6565b6040516020818303038152906040528051906020012060001c610ac19190612bfd565b9050610acb6108f0565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2d57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b73573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610cd6573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bfb57610bf684848461195a565b610ce2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c449291906127ed565b60206040518083038186803b158015610c5c57600080fd5b505afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190612538565b610cd557336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ccc91906127d2565b60405180910390fd5b5b610ce184848461195a565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d4257600080fd5b8060089080519060200190610d58929190612174565b5050565b6000610d678261197a565b9050919050565b60088054610d7b90612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610da790612b6c565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610eea90612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1690612b6c565b8015610f635780601f10610f3857610100808354040283529160200191610f63565b820191906000526020600020905b815481529060010190602001808311610f4657829003601f168201915b5050505050905090565b600a5481565b60095481610f7f6108d9565b610f89919061299f565b1115610f9457600080fd5b600b54811115610fa357600080fd5b600a5481610fb19190612a26565b341015610fbd57600080fd5b610fc73382611a48565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110d4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110429291906127ed565b60206040518083038186803b15801561105a57600080fd5b505afa15801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190612538565b6110d357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110ca91906127d2565b60405180910390fd5b5b6110de8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611232573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111575761115285858585611b71565b61123f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111a09291906127ed565b60206040518083038186803b1580156111b857600080fd5b505afa1580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f09190612538565b61123157336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161122891906127d2565b60405180910390fd5b5b61123e85858585611b71565b5b5050505050565b60606112518261148d565b611287576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611291611be4565b90506000815114156112b257604051806020016040528060008152506112dd565b806112bc84611c76565b6040516020016112cd929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d957600080fd5b81600a8190555080600b819055505050565b600b5481565b600c545a116113ff57600080fd5b611407610a86565b6114105761148b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461144857600080fd5b60095460016114556108d9565b61145f919061299f565b111561146a57600080fd5b600061147533610dfc565b1461147f57600080fd5b61148a336001611a48565b5b565b600081611498611630565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610d5c565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b6112eb565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116408261197a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116a7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116b384611cd7565b915091506116c981876116c4611ccf565b611cfe565b611715576116de866116d9611ccf565b6112eb565b611714576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561177c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117898686866001611d42565b801561179457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118628561183e888887611d48565b7c020000000000000000000000000000000000000000000000000000000017611d70565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156118ea5760006001850190506000600460008381526020019081526020016000205414156118e85760005481146118e7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119528686866001611d9b565b505050505050565b611975838383604051806020016040528060008152506110e3565b505050565b60008082905080611989611630565b11611a1157600054811015611a105760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a0e575b6000811415611a045760046000836001900393508381526020019081526020016000205490506119d9565b8092505050611a43565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611a62828260405180602001604052806000815250611da1565b5050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c848484610926565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d5f868684611f9e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611dab8383611fa7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3957600080549050600083820390505b611deb6000868380600101945086611e3e565b611e21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dd8578160005414611e3657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611fe8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ff56000848385611d42565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061206c8361205d6000866000611d48565b61206685612164565b17611d70565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120d2565b506000821415612149576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061215f6000848385611d9b565b505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea26469706673582212202cbb0a6d6526c870fc8cc65ea82d660f0c3a1bfbe360248398e1bf2fc3f08ca964736f6c63430008070033

Deployed Bytecode Sourcemap

57078:3306:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18674:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19576:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26067:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59597:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15327:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58455:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59770:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58263:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59191:109;;;;;;;;;;;;;:::i;:::-;;54443:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59949:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57849:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20969:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57139:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16511:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58601:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19752:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57283:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57492:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59413:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60136:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19962:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57245:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27016:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58816:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57324:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57962:293;;;;;;;;;;;;;:::i;:::-;;18674:639;18759:4;19098:10;19083:25;;:11;:25;;;;:102;;;;19175:10;19160:25;;:11;:25;;;;19083:102;:179;;;;19252:10;19237:25;;:11;:25;;;;19083:179;19063:199;;18674:639;;;:::o;19576:100::-;19630:13;19663:5;19656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19576:100;:::o;26067:218::-;26143:7;26168:16;26176:7;26168;:16::i;:::-;26163:64;;26193:34;;;;;;;;;;;;;;26163:64;26247:15;:24;26263:7;26247:24;;;;;;;;;;;:30;;;;;;;;;;;;26240:37;;26067:218;;;:::o;59597:165::-;59701:8;56485:1;54543:42;56437:45;;;:49;56433:225;;;54543:42;56508;;;56559:4;56566:8;56508:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56503:144;;56622:8;56603:28;;;;;;;;;;;:::i;:::-;;;;;;;;56503:144;56433:225;59722:32:::1;59736:8;59746:7;59722:13;:32::i;:::-;59597:165:::0;;;:::o;15327:323::-;15388:7;15616:15;:13;:15::i;:::-;15601:12;;15585:13;;:28;:46;15578:53;;15327:323;:::o;58455:138::-;58497:7;58576:9;;58558:15;;58542:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;58524:15;;:61;;;;:::i;:::-;58517:68;;58455:138;:::o;59770:171::-;59879:4;55739:1;54543:42;55691:45;;;:49;55687:539;;;55980:10;55972:18;;:4;:18;;;55968:85;;;59896:37:::1;59915:4;59921:2;59925:7;59896:18;:37::i;:::-;56031:7:::0;;55968:85;54543:42;56072;;;56123:4;56130:10;56072:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56067:148;;56188:10;56169:30;;;;;;;;;;;:::i;:::-;;;;;;;;56067:148;55687:539;59896:37:::1;59915:4;59921:2;59925:7;59896:18;:37::i;:::-;59770:171:::0;;;;;:::o;58263:184::-;58301:4;58318:11;58400:3;58367:15;58384:10;58350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58340:56;;;;;;58332:65;;:71;;;;:::i;:::-;58318:85;;58427:12;:10;:12::i;:::-;58421:3;:18;58414:25;;;58263:184;:::o;59191:109::-;58675:10;58666:19;;:5;;;;;;;;;;;:19;;;58658:28;;;;;;59249:10:::1;59241:28;;:51;59270:21;59241:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59191:109::o:0;54443:143::-;54543:42;54443:143;:::o;59949:179::-;60062:4;55739:1;54543:42;55691:45;;;:49;55687:539;;;55980:10;55972:18;;:4;:18;;;55968:85;;;60079:41:::1;60102:4;60108:2;60112:7;60079:22;:41::i;:::-;56031:7:::0;;55968:85;54543:42;56072;;;56123:4;56130:10;56072:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56067:148;;56188:10;56169:30;;;;;;;;;;;:::i;:::-;;;;;;;;56067:148;55687:539;60079:41:::1;60102:4;60108:2;60112:7;60079:22;:41::i;:::-;59949:179:::0;;;;;:::o;57849:100::-;58675:10;58666:19;;:5;;;;;;;;;;;:19;;;58658:28;;;;;;57933:8:::1;57923:7;:18;;;;;;;;;;;;:::i;:::-;;57849:100:::0;:::o;20969:152::-;21041:7;21084:27;21103:7;21084:18;:27::i;:::-;21061:52;;20969:152;;;:::o;57139:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16511:233::-;16583:7;16624:1;16607:19;;:5;:19;;;16603:60;;;16635:28;;;;;;;;;;;;;;16603:60;10670:13;16681:18;:25;16700:5;16681:25;;;;;;;;;;;;;;;;:55;16674:62;;16511:233;;;:::o;58601:20::-;;;;;;;;;;;;;:::o;19752:104::-;19808:13;19841:7;19834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19752:104;:::o;57283:34::-;;;;:::o;57492:233::-;57582:9;;57572:6;57556:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57548:44;;;;;;57621:8;;57611:6;:18;;57603:27;;;;;;57671:5;;57662:6;:14;;;;:::i;:::-;57649:9;:27;;57641:36;;;;;;57688:29;57698:10;57710:6;57688:9;:29::i;:::-;57492:233;:::o;59413:176::-;59517:8;56485:1;54543:42;56437:45;;;:49;56433:225;;;54543:42;56508;;;56559:4;56566:8;56508:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56503:144;;56622:8;56603:28;;;;;;;;;;;:::i;:::-;;;;;;;;56503:144;56433:225;59538:43:::1;59562:8;59572;59538:23;:43::i;:::-;59413:176:::0;;;:::o;60136:245::-;60304:4;55739:1;54543:42;55691:45;;;:49;55687:539;;;55980:10;55972:18;;:4;:18;;;55968:85;;;60326:47:::1;60349:4;60355:2;60359:7;60368:4;60326:22;:47::i;:::-;56031:7:::0;;55968:85;54543:42;56072;;;56123:4;56130:10;56072:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56067:148;;56188:10;56169:30;;;;;;;;;;;:::i;:::-;;;;;;;;56067:148;55687:539;60326:47:::1;60349:4;60355:2;60359:7;60368:4;60326:22;:47::i;:::-;60136:245:::0;;;;;;:::o;19962:318::-;20035:13;20066:16;20074:7;20066;:16::i;:::-;20061:59;;20091:29;;;;;;;;;;;;;;20061:59;20133:21;20157:10;:8;:10::i;:::-;20133:34;;20210:1;20191:7;20185:21;:26;;:87;;;;;;;;;;;;;;;;;20238:7;20247:18;20257:7;20247:9;:18::i;:::-;20221:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20185:87;20178:94;;;19962:318;;;:::o;57245:30::-;;;;:::o;27016:164::-;27113:4;27137:18;:25;27156:5;27137:25;;;;;;;;;;;;;;;:35;27163:8;27137:35;;;;;;;;;;;;;;;;;;;;;;;;;27130:42;;27016:164;;;;:::o;58816:130::-;58675:10;58666:19;;:5;;;;;;;;;;;:19;;;58658:28;;;;;;58904:8:::1;58896:5;:16;;;;58934:4;58923:8;:15;;;;58816:130:::0;;:::o;57324:28::-;;;;:::o;57962:293::-;58020:13;;58008:9;:25;58000:34;;;;;;58057:8;:6;:8::i;:::-;58052:22;;58067:7;;58052:22;58106:9;58092:23;;:10;:23;;;58084:32;;;;;;58156:9;;58151:1;58135:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;58127:39;;;;;;58210:1;58185:21;58195:10;58185:9;:21::i;:::-;:26;58177:35;;;;;;58223:24;58233:10;58245:1;58223:9;:24::i;:::-;57962:293;:::o;27438:282::-;27503:4;27559:7;27540:15;:13;:15::i;:::-;:26;;:66;;;;;27593:13;;27583:7;:23;27540:66;:153;;;;;27692:1;11446:8;27644:17;:26;27662:7;27644:26;;;;;;;;;;;;:44;:49;27540:153;27520:173;;27438:282;;;:::o;25500:408::-;25589:13;25605:16;25613:7;25605;:16::i;:::-;25589:32;;25661:5;25638:28;;:19;:17;:19::i;:::-;:28;;;25634:175;;25686:44;25703:5;25710:19;:17;:19::i;:::-;25686:16;:44::i;:::-;25681:128;;25758:35;;;;;;;;;;;;;;25681:128;25634:175;25854:2;25821:15;:24;25837:7;25821:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25892:7;25888:2;25872:28;;25881:5;25872:28;;;;;;;;;;;;25578:330;25500:408;;:::o;14843:92::-;14899:7;14843:92;:::o;29706:2825::-;29848:27;29878;29897:7;29878:18;:27::i;:::-;29848:57;;29963:4;29922:45;;29938:19;29922:45;;;29918:86;;29976:28;;;;;;;;;;;;;;29918:86;30018:27;30047:23;30074:35;30101:7;30074:26;:35::i;:::-;30017:92;;;;30209:68;30234:15;30251:4;30257:19;:17;:19::i;:::-;30209:24;:68::i;:::-;30204:180;;30297:43;30314:4;30320:19;:17;:19::i;:::-;30297:16;:43::i;:::-;30292:92;;30349:35;;;;;;;;;;;;;;30292:92;30204:180;30415:1;30401:16;;:2;:16;;;30397:52;;;30426:23;;;;;;;;;;;;;;30397:52;30462:43;30484:4;30490:2;30494:7;30503:1;30462:21;:43::i;:::-;30598:15;30595:160;;;30738:1;30717:19;30710:30;30595:160;31135:18;:24;31154:4;31135:24;;;;;;;;;;;;;;;;31133:26;;;;;;;;;;;;31204:18;:22;31223:2;31204:22;;;;;;;;;;;;;;;;31202:24;;;;;;;;;;;31526:146;31563:2;31612:45;31627:4;31633:2;31637:19;31612:14;:45::i;:::-;11726:8;31584:73;31526:18;:146::i;:::-;31497:17;:26;31515:7;31497:26;;;;;;;;;;;:175;;;;31843:1;11726:8;31792:19;:47;:52;31788:627;;;31865:19;31897:1;31887:7;:11;31865:33;;32054:1;32020:17;:30;32038:11;32020:30;;;;;;;;;;;;:35;32016:384;;;32158:13;;32143:11;:28;32139:242;;32338:19;32305:17;:30;32323:11;32305:30;;;;;;;;;;;:52;;;;32139:242;32016:384;31846:569;31788:627;32462:7;32458:2;32443:27;;32452:4;32443:27;;;;;;;;;;;;32481:42;32502:4;32508:2;32512:7;32521:1;32481:20;:42::i;:::-;29837:2694;;;29706:2825;;;:::o;32627:193::-;32773:39;32790:4;32796:2;32800:7;32773:39;;;;;;;;;;;;:16;:39::i;:::-;32627:193;;;:::o;22124:1275::-;22191:7;22211:12;22226:7;22211:22;;22294:4;22275:15;:13;:15::i;:::-;:23;22271:1061;;22328:13;;22321:4;:20;22317:1015;;;22366:14;22383:17;:23;22401:4;22383:23;;;;;;;;;;;;22366:40;;22500:1;11446:8;22472:6;:24;:29;22468:845;;;23137:113;23154:1;23144:6;:11;23137:113;;;23197:17;:25;23215:6;;;;;;;23197:25;;;;;;;;;;;;23188:34;;23137:113;;;23283:6;23276:13;;;;;;22468:845;22343:989;22317:1015;22271:1061;23360:31;;;;;;;;;;;;;;22124:1275;;;;:::o;43578:112::-;43655:27;43665:2;43669:8;43655:27;;;;;;;;;;;;:9;:27::i;:::-;43578:112;;:::o;26625:234::-;26772:8;26720:18;:39;26739:19;:17;:19::i;:::-;26720:39;;;;;;;;;;;;;;;:49;26760:8;26720:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26832:8;26796:55;;26811:19;:17;:19::i;:::-;26796:55;;;26842:8;26796:55;;;;;;:::i;:::-;;;;;;;;26625:234;;:::o;33418:407::-;33593:31;33606:4;33612:2;33616:7;33593:12;:31::i;:::-;33657:1;33639:2;:14;;;:19;33635:183;;33678:56;33709:4;33715:2;33719:7;33728:5;33678:30;:56::i;:::-;33673:145;;33762:40;;;;;;;;;;;;;;33673:145;33635:183;33418:407;;;;:::o;57733:108::-;57793:13;57826:7;57819:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57733:108;:::o;49953:1745::-;50018:17;50452:4;50445;50439:11;50435:22;50544:1;50538:4;50531:15;50619:4;50616:1;50612:12;50605:19;;50701:1;50696:3;50689:14;50805:3;51044:5;51026:428;51052:1;51026:428;;;51092:1;51087:3;51083:11;51076:18;;51263:2;51257:4;51253:13;51249:2;51245:22;51240:3;51232:36;51357:2;51351:4;51347:13;51339:21;;51424:4;51414:25;;51432:5;;51414:25;51026:428;;;51030:21;51493:3;51488;51484:13;51608:4;51603:3;51599:14;51592:21;;51673:6;51668:3;51661:19;50057:1634;;;49953:1745;;;:::o;49746:105::-;49806:7;49833:10;49826:17;;49746:105;:::o;28601:485::-;28703:27;28732:23;28773:38;28814:15;:24;28830:7;28814:24;;;;;;;;;;;28773:65;;28991:18;28968:41;;29048:19;29042:26;29023:45;;28953:126;28601:485;;;:::o;27829:659::-;27978:11;28143:16;28136:5;28132:28;28123:37;;28303:16;28292:9;28288:32;28275:45;;28453:15;28442:9;28439:30;28431:5;28420:9;28417:20;28414:56;28404:66;;27829:659;;;;;:::o;34487:159::-;;;;;:::o;49055:311::-;49190:7;49210:16;11850:3;49236:19;:41;;49210:68;;11850:3;49304:31;49315:4;49321:2;49325:9;49304:10;:31::i;:::-;49296:40;;:62;;49289:69;;;49055:311;;;;;:::o;23947:450::-;24027:14;24195:16;24188:5;24184:28;24175:37;;24372:5;24358:11;24333:23;24329:41;24326:52;24319:5;24316:63;24306:73;;23947:450;;;;:::o;35311:158::-;;;;;:::o;42805:689::-;42936:19;42942:2;42946:8;42936:5;:19::i;:::-;43015:1;42997:2;:14;;;:19;42993:483;;43037:11;43051:13;;43037:27;;43083:13;43105:8;43099:3;:14;43083:30;;43132:233;43163:62;43202:1;43206:2;43210:7;;;;;;43219:5;43163:30;:62::i;:::-;43158:167;;43261:40;;;;;;;;;;;;;;43158:167;43360:3;43352:5;:11;43132:233;;43447:3;43430:13;;:20;43426:34;;43452:8;;;43426:34;43018:458;;42993:483;42805:689;;;:::o;35909:716::-;36072:4;36118:2;36093:45;;;36139:19;:17;:19::i;:::-;36160:4;36166:7;36175:5;36093:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36089:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36393:1;36376:6;:13;:18;36372:235;;;36422:40;;;;;;;;;;;;;;36372:235;36565:6;36559:13;36550:6;36546:2;36542:15;36535:38;36089:529;36262:54;;;36252:64;;;:6;:64;;;;36245:71;;;35909:716;;;;;;:::o;48756:147::-;48893:6;48756:147;;;;;:::o;37087:2966::-;37160:20;37183:13;;37160:36;;37223:1;37211:8;:13;37207:44;;;37233:18;;;;;;;;;;;;;;37207:44;37264:61;37294:1;37298:2;37302:12;37316:8;37264:21;:61::i;:::-;37808:1;10808:2;37778:1;:26;;37777:32;37765:8;:45;37739:18;:22;37758:2;37739:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38087:139;38124:2;38178:33;38201:1;38205:2;38209:1;38178:14;:33::i;:::-;38145:30;38166:8;38145:20;:30::i;:::-;:66;38087:18;:139::i;:::-;38053:17;:31;38071:12;38053:31;;;;;;;;;;;:173;;;;38243:16;38274:11;38303:8;38288:12;:23;38274:37;;38824:16;38820:2;38816:25;38804:37;;39196:12;39156:8;39115:1;39053:25;38994:1;38933;38906:335;39567:1;39553:12;39549:20;39507:346;39608:3;39599:7;39596:16;39507:346;;39826:7;39816:8;39813:1;39786:25;39783:1;39780;39775:59;39661:1;39652:7;39648:15;39637:26;;39507:346;;;39511:77;39898:1;39886:8;:13;39882:45;;;39908:19;;;;;;;;;;;;;;39882:45;39960:3;39944:13;:19;;;;37513:2462;;39985:60;40014:1;40018:2;40022:12;40036:8;39985:20;:60::i;:::-;37149:2904;37087:2966;;:::o;24499:324::-;24569:14;24802:1;24792:8;24789:15;24763:24;24759:46;24749:56;;24499:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:474::-;7720:6;7728;7777:2;7765:9;7756:7;7752:23;7748:32;7745:119;;;7783:79;;:::i;:::-;7745:119;7903:1;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7874:117;8030:2;8056:53;8101:7;8092:6;8081:9;8077:22;8056:53;:::i;:::-;8046:63;;8001:118;7652:474;;;;;:::o;8132:118::-;8219:24;8237:5;8219:24;:::i;:::-;8214:3;8207:37;8132:118;;:::o;8256:157::-;8361:45;8381:24;8399:5;8381:24;:::i;:::-;8361:45;:::i;:::-;8356:3;8349:58;8256:157;;:::o;8419:109::-;8500:21;8515:5;8500:21;:::i;:::-;8495:3;8488:34;8419:109;;:::o;8534:360::-;8620:3;8648:38;8680:5;8648:38;:::i;:::-;8702:70;8765:6;8760:3;8702:70;:::i;:::-;8695:77;;8781:52;8826:6;8821:3;8814:4;8807:5;8803:16;8781:52;:::i;:::-;8858:29;8880:6;8858:29;:::i;:::-;8853:3;8849:39;8842:46;;8624:270;8534:360;;;;:::o;8900:195::-;9019:69;9082:5;9019:69;:::i;:::-;9014:3;9007:82;8900:195;;:::o;9101:364::-;9189:3;9217:39;9250:5;9217:39;:::i;:::-;9272:71;9336:6;9331:3;9272:71;:::i;:::-;9265:78;;9352:52;9397:6;9392:3;9385:4;9378:5;9374:16;9352:52;:::i;:::-;9429:29;9451:6;9429:29;:::i;:::-;9424:3;9420:39;9413:46;;9193:272;9101:364;;;;:::o;9471:377::-;9577:3;9605:39;9638:5;9605:39;:::i;:::-;9660:89;9742:6;9737:3;9660:89;:::i;:::-;9653:96;;9758:52;9803:6;9798:3;9791:4;9784:5;9780:16;9758:52;:::i;:::-;9835:6;9830:3;9826:16;9819:23;;9581:267;9471:377;;;;:::o;9854:118::-;9941:24;9959:5;9941:24;:::i;:::-;9936:3;9929:37;9854:118;;:::o;9978:157::-;10083:45;10103:24;10121:5;10103:24;:::i;:::-;10083:45;:::i;:::-;10078:3;10071:58;9978:157;;:::o;10141:435::-;10321:3;10343:95;10434:3;10425:6;10343:95;:::i;:::-;10336:102;;10455:95;10546:3;10537:6;10455:95;:::i;:::-;10448:102;;10567:3;10560:10;;10141:435;;;;;:::o;10582:397::-;10722:3;10737:75;10808:3;10799:6;10737:75;:::i;:::-;10837:2;10832:3;10828:12;10821:19;;10850:75;10921:3;10912:6;10850:75;:::i;:::-;10950:2;10945:3;10941:12;10934:19;;10970:3;10963:10;;10582:397;;;;;:::o;10985:222::-;11078:4;11116:2;11105:9;11101:18;11093:26;;11129:71;11197:1;11186:9;11182:17;11173:6;11129:71;:::i;:::-;10985:222;;;;:::o;11213:332::-;11334:4;11372:2;11361:9;11357:18;11349:26;;11385:71;11453:1;11442:9;11438:17;11429:6;11385:71;:::i;:::-;11466:72;11534:2;11523:9;11519:18;11510:6;11466:72;:::i;:::-;11213:332;;;;;:::o;11551:640::-;11746:4;11784:3;11773:9;11769:19;11761:27;;11798:71;11866:1;11855:9;11851:17;11842:6;11798:71;:::i;:::-;11879:72;11947:2;11936:9;11932:18;11923:6;11879:72;:::i;:::-;11961;12029:2;12018:9;12014:18;12005:6;11961:72;:::i;:::-;12080:9;12074:4;12070:20;12065:2;12054:9;12050:18;12043:48;12108:76;12179:4;12170:6;12108:76;:::i;:::-;12100:84;;11551:640;;;;;;;:::o;12197:210::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12335:65;12397:1;12386:9;12382:17;12373:6;12335:65;:::i;:::-;12197:210;;;;:::o;12413:286::-;12538:4;12576:2;12565:9;12561:18;12553:26;;12589:103;12689:1;12678:9;12674:17;12665:6;12589:103;:::i;:::-;12413:286;;;;:::o;12705:313::-;12818:4;12856:2;12845:9;12841:18;12833:26;;12905:9;12899:4;12895:20;12891:1;12880:9;12876:17;12869:47;12933:78;13006:4;12997:6;12933:78;:::i;:::-;12925:86;;12705:313;;;;:::o;13024:222::-;13117:4;13155:2;13144:9;13140:18;13132:26;;13168:71;13236:1;13225:9;13221:17;13212:6;13168:71;:::i;:::-;13024:222;;;;:::o;13252:129::-;13286:6;13313:20;;:::i;:::-;13303:30;;13342:33;13370:4;13362:6;13342:33;:::i;:::-;13252:129;;;:::o;13387:75::-;13420:6;13453:2;13447:9;13437:19;;13387:75;:::o;13468:307::-;13529:4;13619:18;13611:6;13608:30;13605:56;;;13641:18;;:::i;:::-;13605:56;13679:29;13701:6;13679:29;:::i;:::-;13671:37;;13763:4;13757;13753:15;13745:23;;13468:307;;;:::o;13781:308::-;13843:4;13933:18;13925:6;13922:30;13919:56;;;13955:18;;:::i;:::-;13919:56;13993:29;14015:6;13993:29;:::i;:::-;13985:37;;14077:4;14071;14067:15;14059:23;;13781:308;;;:::o;14095:98::-;14146:6;14180:5;14174:12;14164:22;;14095:98;;;:::o;14199:99::-;14251:6;14285:5;14279:12;14269:22;;14199:99;;;:::o;14304:168::-;14387:11;14421:6;14416:3;14409:19;14461:4;14456:3;14452:14;14437:29;;14304:168;;;;:::o;14478:169::-;14562:11;14596:6;14591:3;14584:19;14636:4;14631:3;14627:14;14612:29;;14478:169;;;;:::o;14653:148::-;14755:11;14792:3;14777:18;;14653:148;;;;:::o;14807:305::-;14847:3;14866:20;14884:1;14866:20;:::i;:::-;14861:25;;14900:20;14918:1;14900:20;:::i;:::-;14895:25;;15054:1;14986:66;14982:74;14979:1;14976:81;14973:107;;;15060:18;;:::i;:::-;14973:107;15104:1;15101;15097:9;15090:16;;14807:305;;;;:::o;15118:185::-;15158:1;15175:20;15193:1;15175:20;:::i;:::-;15170:25;;15209:20;15227:1;15209:20;:::i;:::-;15204:25;;15248:1;15238:35;;15253:18;;:::i;:::-;15238:35;15295:1;15292;15288:9;15283:14;;15118:185;;;;:::o;15309:348::-;15349:7;15372:20;15390:1;15372:20;:::i;:::-;15367:25;;15406:20;15424:1;15406:20;:::i;:::-;15401:25;;15594:1;15526:66;15522:74;15519:1;15516:81;15511:1;15504:9;15497:17;15493:105;15490:131;;;15601:18;;:::i;:::-;15490:131;15649:1;15646;15642:9;15631:20;;15309:348;;;;:::o;15663:96::-;15700:7;15729:24;15747:5;15729:24;:::i;:::-;15718:35;;15663:96;;;:::o;15765:90::-;15799:7;15842:5;15835:13;15828:21;15817:32;;15765:90;;;:::o;15861:149::-;15897:7;15937:66;15930:5;15926:78;15915:89;;15861:149;;;:::o;16016:126::-;16053:7;16093:42;16086:5;16082:54;16071:65;;16016:126;;;:::o;16148:77::-;16185:7;16214:5;16203:16;;16148:77;;;:::o;16231:158::-;16313:9;16346:37;16377:5;16346:37;:::i;:::-;16333:50;;16231:158;;;:::o;16395:126::-;16445:9;16478:37;16509:5;16478:37;:::i;:::-;16465:50;;16395:126;;;:::o;16527:113::-;16577:9;16610:24;16628:5;16610:24;:::i;:::-;16597:37;;16527:113;;;:::o;16646:154::-;16730:6;16725:3;16720;16707:30;16792:1;16783:6;16778:3;16774:16;16767:27;16646:154;;;:::o;16806:307::-;16874:1;16884:113;16898:6;16895:1;16892:13;16884:113;;;16983:1;16978:3;16974:11;16968:18;16964:1;16959:3;16955:11;16948:39;16920:2;16917:1;16913:10;16908:15;;16884:113;;;17015:6;17012:1;17009:13;17006:101;;;17095:1;17086:6;17081:3;17077:16;17070:27;17006:101;16855:258;16806:307;;;:::o;17119:320::-;17163:6;17200:1;17194:4;17190:12;17180:22;;17247:1;17241:4;17237:12;17268:18;17258:81;;17324:4;17316:6;17312:17;17302:27;;17258:81;17386:2;17378:6;17375:14;17355:18;17352:38;17349:84;;;17405:18;;:::i;:::-;17349:84;17170:269;17119:320;;;:::o;17445:281::-;17528:27;17550:4;17528:27;:::i;:::-;17520:6;17516:40;17658:6;17646:10;17643:22;17622:18;17610:10;17607:34;17604:62;17601:88;;;17669:18;;:::i;:::-;17601:88;17709:10;17705:2;17698:22;17488:238;17445:281;;:::o;17732:100::-;17771:7;17800:26;17820:5;17800:26;:::i;:::-;17789:37;;17732:100;;;:::o;17838:94::-;17877:7;17906:20;17920:5;17906:20;:::i;:::-;17895:31;;17838:94;;;:::o;17938:79::-;17977:7;18006:5;17995:16;;17938:79;;;:::o;18023:176::-;18055:1;18072:20;18090:1;18072:20;:::i;:::-;18067:25;;18106:20;18124:1;18106:20;:::i;:::-;18101:25;;18145:1;18135:35;;18150:18;;:::i;:::-;18135:35;18191:1;18188;18184:9;18179:14;;18023:176;;;;:::o;18205:180::-;18253:77;18250:1;18243:88;18350:4;18347:1;18340:15;18374:4;18371:1;18364:15;18391:180;18439:77;18436:1;18429:88;18536:4;18533:1;18526:15;18560:4;18557:1;18550:15;18577:180;18625:77;18622:1;18615:88;18722:4;18719:1;18712:15;18746:4;18743:1;18736:15;18763:180;18811:77;18808:1;18801:88;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18949:117;19058:1;19055;19048:12;19072:117;19181:1;19178;19171:12;19195:117;19304:1;19301;19294:12;19318:117;19427:1;19424;19417:12;19441:102;19482:6;19533:2;19529:7;19524:2;19517:5;19513:14;19509:28;19499:38;;19441:102;;;:::o;19549:94::-;19582:8;19630:5;19626:2;19622:14;19601:35;;19549:94;;;:::o;19649:122::-;19722:24;19740:5;19722:24;:::i;:::-;19715:5;19712:35;19702:63;;19761:1;19758;19751:12;19702:63;19649:122;:::o;19777:116::-;19847:21;19862:5;19847:21;:::i;:::-;19840:5;19837:32;19827:60;;19883:1;19880;19873:12;19827:60;19777:116;:::o;19899:120::-;19971:23;19988:5;19971:23;:::i;:::-;19964:5;19961:34;19951:62;;20009:1;20006;19999:12;19951:62;19899:120;:::o;20025:122::-;20098:24;20116:5;20098:24;:::i;:::-;20091:5;20088:35;20078:63;;20137:1;20134;20127:12;20078:63;20025:122;:::o

Swarm Source

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