ETH Price: $3,315.77 (+2.03%)
Gas: 3 Gwei

Token

Lucid Fields By Saito (LUCID)
 

Overview

Max Total Supply

368 LUCID

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LUCID
0xaff95d5a8566b75914931ebad03d668108f929fa
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:
LucidFieldsBySaito

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 2023-01-09
*/

// 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 LucidFieldsBySaito is ERC721A, DefaultOperatorFilterer {
    mapping(uint256 => uint256) blockFree;

    mapping(address => bool) minted;

    uint256 public maxSupply = 368;

    uint256 public maxPerTx = 3;    

    uint256 public price = 0.005 ether;

    uint256 public royalty = 50;

    bool pause;

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

    string uri = "ipfs://QmXFm2gF6DRejfuezWsjaATaZYZhTBPkqqdarV5scTYJJf/";
    function setUri(string memory _uri) external onlyOwner {
        uri = _uri;
    }

    address owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }
    
    constructor() ERC721A("Lucid Fields By Saito", "LUCID") {
        owner = msg.sender;
    }

    function _mint(uint256 amount) internal {
        require(msg.sender == tx.origin);
        if (msg.value == 0) {
            uint256 freeNum = (maxSupply - totalSupply()) / 12;
            require(blockFree[block.number] + 1 <= freeNum);
            blockFree[block.number] += 1;
            _safeMint(msg.sender, 1);
            return;
        }
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

    function reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
        uint16 totalSupply = uint16(totalSupply());
        require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
        _safeMint(_receiver , _mintAmount);
    }

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"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":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610170600a556003600b556611c37937e08000600c556032600d556040518060600160405280603681526020016200323360369139600f9080519060200190620000509291906200036f565b503480156200005e57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601581526020017f4c75636964204669656c647320427920536169746f00000000000000000000008152506040518060400160405280600581526020017f4c554349440000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fa9291906200036f565b508060039080519060200190620001139291906200036f565b50620001246200036a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000321578015620001e7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ad9291906200044d565b600060405180830381600087803b158015620001c857600080fd5b505af1158015620001dd573d6000803e3d6000fd5b5050505062000320565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002679291906200044d565b600060405180830381600087803b1580156200028257600080fd5b505af115801562000297573d6000803e3d6000fd5b505050506200031f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ea919062000430565b600060405180830381600087803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050505b5b5b505033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000513565b600090565b8280546200037d90620004ae565b90600052602060002090601f016020900481019282620003a15760008555620003ed565b82601f10620003bc57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ec578251825591602001919060010190620003cf565b5b509050620003fc919062000400565b5090565b5b808211156200041b57600081600090555060010162000401565b5090565b6200042a816200047a565b82525050565b60006020820190506200044760008301846200041f565b92915050565b60006040820190506200046460008301856200041f565b6200047360208301846200041f565b9392505050565b600062000487826200048e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004c757607f821691505b60208210811415620004de57620004dd620004e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612d1080620005236000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bad0ba6f14610479578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f968adbe146105475761014b565b806370a082311461035c57806395d89b41146103995780639b642de1146103c4578063a035b1fe146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806329ee566c1161010857806329ee566c146102585780632a55205a146102835780633ccfd60b146102c157806341f43434146102d857806342842e0e146103035780636352211e1461031f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612393565b610572565b6040516101849190612741565b60405180910390f35b34801561019957600080fd5b506101a2610604565b6040516101af9190612777565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612476565b610696565b6040516101ec9190612688565b60405180910390f35b61020f600480360381019061020a9190612326565b610715565b005b34801561021d57600080fd5b5061022661082e565b60405161023391906127b9565b60405180910390f35b61025660048036038101906102519190612210565b610845565b005b34801561026457600080fd5b5061026d6109a5565b60405161027a91906127b9565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a591906124a3565b6109ab565b6040516102b8929190612718565b60405180910390f35b3480156102cd57600080fd5b506102d66109fd565b005b3480156102e457600080fd5b506102ed610aa0565b6040516102fa919061275c565b60405180910390f35b61031d60048036038101906103189190612210565b610ab2565b005b34801561032b57600080fd5b5061034660048036038101906103419190612476565b610c12565b6040516103539190612688565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906121a3565b610c24565b60405161039091906127b9565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb9190612777565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906123ed565b610d6f565b005b3480156103f957600080fd5b50610402610de3565b60405161040f91906127b9565b60405180910390f35b610432600480360381019061042d9190612476565b610de9565b005b34801561044057600080fd5b5061045b600480360381019061045691906122e6565b610e25565b005b61047760048036038101906104729190612263565b610f3e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612436565b6110a1565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612476565b61116e565b6040516104d69190612777565b60405180910390f35b3480156104eb57600080fd5b506104f46111a2565b60405161050191906127b9565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906121d0565b6111a8565b60405161053e9190612741565b60405180910390f35b34801561055357600080fd5b5061055c61123c565b60405161056991906127b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461061390612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612afa565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a182611242565b6106d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561081f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161078d9291906126a3565b60206040518083038186803b1580156107a557600080fd5b505afa1580156107b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dd9190612366565b61081e57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108159190612688565b60405180910390fd5b5b61082983836112a1565b505050565b60006108386113e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b8576108b38484846113ea565b61099f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109019291906126a3565b60206040518083038186803b15801561091957600080fd5b505afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612366565b61099257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109899190612688565b60405180910390fd5b5b61099e8484846113ea565b5b50505050565b600d5481565b60008060006103e8600d54856109c19190612972565b6109cb9190612941565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9d573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b2557610b2084848461170f565b610c0c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b6e9291906126a3565b60206040518083038186803b158015610b8657600080fd5b505afa158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190612366565b610bff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bf69190612688565b60405180910390fd5b5b610c0b84848461170f565b5b50505050565b6000610c1d8261172f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610cec90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612afa565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc957600080fd5b80600f9080519060200190610ddf929190611f8d565b5050565b600c5481565b600a5481610df561082e565b610dff91906128eb565b1115610e0a57600080fd5b600b54811115610e1957600080fd5b610e22816117fd565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f2f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9d9291906126a3565b60206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190612366565b610f2e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f259190612688565b60405180910390fd5b5b610f3983836118f3565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb257610fad858585856119fe565b61109a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffb9291906126a3565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190612366565b61108c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110839190612688565b60405180910390fd5b5b611099858585856119fe565b5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fb57600080fd5b600061110561082e565b9050600a54838261111691906128b3565b61ffff16111561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612799565b60405180910390fd5b611169828461ffff16611a71565b505050565b6060600f61117b83611a8f565b60405160200161118c929190612664565b6040516020818303038152906040529050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b60008161124d6113e5565b1115801561125c575060005482105b801561129a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006112ac82610c12565b90508073ffffffffffffffffffffffffffffffffffffffff166112cd611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611330576112f9816112f4611ae8565b6111a8565b61132f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f58261172f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146884611af0565b9150915061147e8187611479611ae8565b611b17565b6114ca576114938661148e611ae8565b6111a8565b6114c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611531576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153e8686866001611b5b565b801561154957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611617856115f3888887611b61565b7c020000000000000000000000000000000000000000000000000000000017611b89565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561169f57600060018501905060006004600083815260200190815260200160002054141561169d57600054811461169c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117078686866001611bb4565b505050505050565b61172a83838360405180602001604052806000815250610f3e565b505050565b6000808290508061173e6113e5565b116117c6576000548110156117c55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c3575b60008114156117b957600460008360019003935083815260200190815260200160002054905061178e565b80925050506117f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461183557600080fd5b60003414156118cb576000600c61184a61082e565b600a5461185791906129cc565b6118619190612941565b9050806001600860004381526020019081526020016000205461188491906128eb565b111561188f57600080fd5b60016008600043815260200190815260200160002060008282546118b391906128eb565b925050819055506118c5336001611a71565b506118f0565b600c54816118d99190612972565b3410156118e557600080fd5b6118ef3382611a71565b5b50565b8060076000611900611ae8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f29190612741565b60405180910390a35050565b611a09848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6b57611a3484848484611bba565b611a6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a8b828260405180602001604052806000815250611d1a565b5050565b606060a060405101806040526020810391506000825281835b600115611ad357600184039350600a81066030018453600a8104905080611ace57611ad3565b611aa8565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b78868684611db7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be0611ae8565b8786866040518563ffffffff1660e01b8152600401611c0294939291906126cc565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4d57506040513d601f19601f82011682018060405250810190611c4a91906123c0565b60015b611cc7573d8060008114611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b50600081511415611cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d248383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db257600080549050600083820390505b611d646000868380600101945086611bba565b611d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d51578160005414611daf57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611e01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0e6000848385611b5b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e8583611e766000866000611b61565b611e7f85611f7d565b17611b89565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eeb565b506000821415611f62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f786000848385611bb4565b505050565b60006001821460e11b9050919050565b828054611f9990612afa565b90600052602060002090601f016020900481019282611fbb5760008555612002565b82601f10611fd457805160ff1916838001178555612002565b82800160010185558215612002579182015b82811115612001578251825591602001919060010190611fe6565b5b50905061200f9190612013565b5090565b5b8082111561202c576000816000905550600101612014565b5090565b600061204361203e846127f9565b6127d4565b90508281526020810184848401111561205f5761205e612c1e565b5b61206a848285612ab8565b509392505050565b60006120856120808461282a565b6127d4565b9050828152602081018484840111156120a1576120a0612c1e565b5b6120ac848285612ab8565b509392505050565b6000813590506120c381612c67565b92915050565b6000813590506120d881612c7e565b92915050565b6000815190506120ed81612c7e565b92915050565b60008135905061210281612c95565b92915050565b60008151905061211781612c95565b92915050565b600082601f83011261213257612131612c19565b5b8135612142848260208601612030565b91505092915050565b600082601f8301126121605761215f612c19565b5b8135612170848260208601612072565b91505092915050565b60008135905061218881612cac565b92915050565b60008135905061219d81612cc3565b92915050565b6000602082840312156121b9576121b8612c28565b5b60006121c7848285016120b4565b91505092915050565b600080604083850312156121e7576121e6612c28565b5b60006121f5858286016120b4565b9250506020612206858286016120b4565b9150509250929050565b60008060006060848603121561222957612228612c28565b5b6000612237868287016120b4565b9350506020612248868287016120b4565b92505060406122598682870161218e565b9150509250925092565b6000806000806080858703121561227d5761227c612c28565b5b600061228b878288016120b4565b945050602061229c878288016120b4565b93505060406122ad8782880161218e565b925050606085013567ffffffffffffffff8111156122ce576122cd612c23565b5b6122da8782880161211d565b91505092959194509250565b600080604083850312156122fd576122fc612c28565b5b600061230b858286016120b4565b925050602061231c858286016120c9565b9150509250929050565b6000806040838503121561233d5761233c612c28565b5b600061234b858286016120b4565b925050602061235c8582860161218e565b9150509250929050565b60006020828403121561237c5761237b612c28565b5b600061238a848285016120de565b91505092915050565b6000602082840312156123a9576123a8612c28565b5b60006123b7848285016120f3565b91505092915050565b6000602082840312156123d6576123d5612c28565b5b60006123e484828501612108565b91505092915050565b60006020828403121561240357612402612c28565b5b600082013567ffffffffffffffff81111561242157612420612c23565b5b61242d8482850161214b565b91505092915050565b6000806040838503121561244d5761244c612c28565b5b600061245b85828601612179565b925050602061246c858286016120b4565b9150509250929050565b60006020828403121561248c5761248b612c28565b5b600061249a8482850161218e565b91505092915050565b600080604083850312156124ba576124b9612c28565b5b60006124c88582860161218e565b92505060206124d98582860161218e565b9150509250929050565b6124ec81612a00565b82525050565b6124fb81612a12565b82525050565b600061250c82612870565b6125168185612886565b9350612526818560208601612ac7565b61252f81612c2d565b840191505092915050565b61254381612a82565b82525050565b60006125548261287b565b61255e8185612897565b935061256e818560208601612ac7565b61257781612c2d565b840191505092915050565b600061258d8261287b565b61259781856128a8565b93506125a7818560208601612ac7565b80840191505092915050565b600081546125c081612afa565b6125ca81866128a8565b945060018216600081146125e557600181146125f657612629565b60ff19831686528186019350612629565b6125ff8561285b565b60005b8381101561262157815481890152600182019150602081019050612602565b838801955050505b50505092915050565b600061263f601383612897565b915061264a82612c3e565b602082019050919050565b61265e81612a78565b82525050565b600061267082856125b3565b915061267c8284612582565b91508190509392505050565b600060208201905061269d60008301846124e3565b92915050565b60006040820190506126b860008301856124e3565b6126c560208301846124e3565b9392505050565b60006080820190506126e160008301876124e3565b6126ee60208301866124e3565b6126fb6040830185612655565b818103606083015261270d8184612501565b905095945050505050565b600060408201905061272d60008301856124e3565b61273a6020830184612655565b9392505050565b600060208201905061275660008301846124f2565b92915050565b6000602082019050612771600083018461253a565b92915050565b600060208201905081810360008301526127918184612549565b905092915050565b600060208201905081810360008301526127b281612632565b9050919050565b60006020820190506127ce6000830184612655565b92915050565b60006127de6127ef565b90506127ea8282612b2c565b919050565b6000604051905090565b600067ffffffffffffffff82111561281457612813612bea565b5b61281d82612c2d565b9050602081019050919050565b600067ffffffffffffffff82111561284557612844612bea565b5b61284e82612c2d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128be82612a4a565b91506128c983612a4a565b92508261ffff038211156128e0576128df612b5d565b5b828201905092915050565b60006128f682612a78565b915061290183612a78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561293657612935612b5d565b5b828201905092915050565b600061294c82612a78565b915061295783612a78565b92508261296757612966612b8c565b5b828204905092915050565b600061297d82612a78565b915061298883612a78565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129c1576129c0612b5d565b5b828202905092915050565b60006129d782612a78565b91506129e283612a78565b9250828210156129f5576129f4612b5d565b5b828203905092915050565b6000612a0b82612a58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612a8d82612a94565b9050919050565b6000612a9f82612aa6565b9050919050565b6000612ab182612a58565b9050919050565b82818337600083830152505050565b60005b83811015612ae5578082015181840152602081019050612aca565b83811115612af4576000848401525b50505050565b60006002820490506001821680612b1257607f821691505b60208210811415612b2657612b25612bbb565b5b50919050565b612b3582612c2d565b810181811067ffffffffffffffff82111715612b5457612b53612bea565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b612c7081612a00565b8114612c7b57600080fd5b50565b612c8781612a12565b8114612c9257600080fd5b50565b612c9e81612a1e565b8114612ca957600080fd5b50565b612cb581612a4a565b8114612cc057600080fd5b50565b612ccc81612a78565b8114612cd757600080fd5b5056fea2646970667358221220eaa2a12ec2124d6faf2adc772552d78552bd83f9dfdd737e6410dc2282ef5ade64736f6c63430008070033697066733a2f2f516d58466d326746364452656a6675657a57736a614154615a595a685442506b71716461725635736354594a4a662f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bad0ba6f14610479578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f968adbe146105475761014b565b806370a082311461035c57806395d89b41146103995780639b642de1146103c4578063a035b1fe146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806329ee566c1161010857806329ee566c146102585780632a55205a146102835780633ccfd60b146102c157806341f43434146102d857806342842e0e146103035780636352211e1461031f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612393565b610572565b6040516101849190612741565b60405180910390f35b34801561019957600080fd5b506101a2610604565b6040516101af9190612777565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612476565b610696565b6040516101ec9190612688565b60405180910390f35b61020f600480360381019061020a9190612326565b610715565b005b34801561021d57600080fd5b5061022661082e565b60405161023391906127b9565b60405180910390f35b61025660048036038101906102519190612210565b610845565b005b34801561026457600080fd5b5061026d6109a5565b60405161027a91906127b9565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a591906124a3565b6109ab565b6040516102b8929190612718565b60405180910390f35b3480156102cd57600080fd5b506102d66109fd565b005b3480156102e457600080fd5b506102ed610aa0565b6040516102fa919061275c565b60405180910390f35b61031d60048036038101906103189190612210565b610ab2565b005b34801561032b57600080fd5b5061034660048036038101906103419190612476565b610c12565b6040516103539190612688565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906121a3565b610c24565b60405161039091906127b9565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb9190612777565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906123ed565b610d6f565b005b3480156103f957600080fd5b50610402610de3565b60405161040f91906127b9565b60405180910390f35b610432600480360381019061042d9190612476565b610de9565b005b34801561044057600080fd5b5061045b600480360381019061045691906122e6565b610e25565b005b61047760048036038101906104729190612263565b610f3e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612436565b6110a1565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612476565b61116e565b6040516104d69190612777565b60405180910390f35b3480156104eb57600080fd5b506104f46111a2565b60405161050191906127b9565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906121d0565b6111a8565b60405161053e9190612741565b60405180910390f35b34801561055357600080fd5b5061055c61123c565b60405161056991906127b9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461061390612afa565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612afa565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a182611242565b6106d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561081f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161078d9291906126a3565b60206040518083038186803b1580156107a557600080fd5b505afa1580156107b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dd9190612366565b61081e57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108159190612688565b60405180910390fd5b5b61082983836112a1565b505050565b60006108386113e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b8576108b38484846113ea565b61099f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109019291906126a3565b60206040518083038186803b15801561091957600080fd5b505afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612366565b61099257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109899190612688565b60405180910390fd5b5b61099e8484846113ea565b5b50505050565b600d5481565b60008060006103e8600d54856109c19190612972565b6109cb9190612941565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9d573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b2557610b2084848461170f565b610c0c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b6e9291906126a3565b60206040518083038186803b158015610b8657600080fd5b505afa158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190612366565b610bff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bf69190612688565b60405180910390fd5b5b610c0b84848461170f565b5b50505050565b6000610c1d8261172f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610cec90612afa565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612afa565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc957600080fd5b80600f9080519060200190610ddf929190611f8d565b5050565b600c5481565b600a5481610df561082e565b610dff91906128eb565b1115610e0a57600080fd5b600b54811115610e1957600080fd5b610e22816117fd565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f2f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9d9291906126a3565b60206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190612366565b610f2e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f259190612688565b60405180910390fd5b5b610f3983836118f3565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb257610fad858585856119fe565b61109a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffb9291906126a3565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190612366565b61108c57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110839190612688565b60405180910390fd5b5b611099858585856119fe565b5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fb57600080fd5b600061110561082e565b9050600a54838261111691906128b3565b61ffff16111561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290612799565b60405180910390fd5b611169828461ffff16611a71565b505050565b6060600f61117b83611a8f565b60405160200161118c929190612664565b6040516020818303038152906040529050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b60008161124d6113e5565b1115801561125c575060005482105b801561129a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006112ac82610c12565b90508073ffffffffffffffffffffffffffffffffffffffff166112cd611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611330576112f9816112f4611ae8565b6111a8565b61132f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f58261172f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146884611af0565b9150915061147e8187611479611ae8565b611b17565b6114ca576114938661148e611ae8565b6111a8565b6114c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611531576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153e8686866001611b5b565b801561154957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611617856115f3888887611b61565b7c020000000000000000000000000000000000000000000000000000000017611b89565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561169f57600060018501905060006004600083815260200190815260200160002054141561169d57600054811461169c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117078686866001611bb4565b505050505050565b61172a83838360405180602001604052806000815250610f3e565b505050565b6000808290508061173e6113e5565b116117c6576000548110156117c55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c3575b60008114156117b957600460008360019003935083815260200190815260200160002054905061178e565b80925050506117f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461183557600080fd5b60003414156118cb576000600c61184a61082e565b600a5461185791906129cc565b6118619190612941565b9050806001600860004381526020019081526020016000205461188491906128eb565b111561188f57600080fd5b60016008600043815260200190815260200160002060008282546118b391906128eb565b925050819055506118c5336001611a71565b506118f0565b600c54816118d99190612972565b3410156118e557600080fd5b6118ef3382611a71565b5b50565b8060076000611900611ae8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f29190612741565b60405180910390a35050565b611a09848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6b57611a3484848484611bba565b611a6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a8b828260405180602001604052806000815250611d1a565b5050565b606060a060405101806040526020810391506000825281835b600115611ad357600184039350600a81066030018453600a8104905080611ace57611ad3565b611aa8565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b78868684611db7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be0611ae8565b8786866040518563ffffffff1660e01b8152600401611c0294939291906126cc565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4d57506040513d601f19601f82011682018060405250810190611c4a91906123c0565b60015b611cc7573d8060008114611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b50600081511415611cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d248383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db257600080549050600083820390505b611d646000868380600101945086611bba565b611d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d51578160005414611daf57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611e01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0e6000848385611b5b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e8583611e766000866000611b61565b611e7f85611f7d565b17611b89565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eeb565b506000821415611f62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f786000848385611bb4565b505050565b60006001821460e11b9050919050565b828054611f9990612afa565b90600052602060002090601f016020900481019282611fbb5760008555612002565b82601f10611fd457805160ff1916838001178555612002565b82800160010185558215612002579182015b82811115612001578251825591602001919060010190611fe6565b5b50905061200f9190612013565b5090565b5b8082111561202c576000816000905550600101612014565b5090565b600061204361203e846127f9565b6127d4565b90508281526020810184848401111561205f5761205e612c1e565b5b61206a848285612ab8565b509392505050565b60006120856120808461282a565b6127d4565b9050828152602081018484840111156120a1576120a0612c1e565b5b6120ac848285612ab8565b509392505050565b6000813590506120c381612c67565b92915050565b6000813590506120d881612c7e565b92915050565b6000815190506120ed81612c7e565b92915050565b60008135905061210281612c95565b92915050565b60008151905061211781612c95565b92915050565b600082601f83011261213257612131612c19565b5b8135612142848260208601612030565b91505092915050565b600082601f8301126121605761215f612c19565b5b8135612170848260208601612072565b91505092915050565b60008135905061218881612cac565b92915050565b60008135905061219d81612cc3565b92915050565b6000602082840312156121b9576121b8612c28565b5b60006121c7848285016120b4565b91505092915050565b600080604083850312156121e7576121e6612c28565b5b60006121f5858286016120b4565b9250506020612206858286016120b4565b9150509250929050565b60008060006060848603121561222957612228612c28565b5b6000612237868287016120b4565b9350506020612248868287016120b4565b92505060406122598682870161218e565b9150509250925092565b6000806000806080858703121561227d5761227c612c28565b5b600061228b878288016120b4565b945050602061229c878288016120b4565b93505060406122ad8782880161218e565b925050606085013567ffffffffffffffff8111156122ce576122cd612c23565b5b6122da8782880161211d565b91505092959194509250565b600080604083850312156122fd576122fc612c28565b5b600061230b858286016120b4565b925050602061231c858286016120c9565b9150509250929050565b6000806040838503121561233d5761233c612c28565b5b600061234b858286016120b4565b925050602061235c8582860161218e565b9150509250929050565b60006020828403121561237c5761237b612c28565b5b600061238a848285016120de565b91505092915050565b6000602082840312156123a9576123a8612c28565b5b60006123b7848285016120f3565b91505092915050565b6000602082840312156123d6576123d5612c28565b5b60006123e484828501612108565b91505092915050565b60006020828403121561240357612402612c28565b5b600082013567ffffffffffffffff81111561242157612420612c23565b5b61242d8482850161214b565b91505092915050565b6000806040838503121561244d5761244c612c28565b5b600061245b85828601612179565b925050602061246c858286016120b4565b9150509250929050565b60006020828403121561248c5761248b612c28565b5b600061249a8482850161218e565b91505092915050565b600080604083850312156124ba576124b9612c28565b5b60006124c88582860161218e565b92505060206124d98582860161218e565b9150509250929050565b6124ec81612a00565b82525050565b6124fb81612a12565b82525050565b600061250c82612870565b6125168185612886565b9350612526818560208601612ac7565b61252f81612c2d565b840191505092915050565b61254381612a82565b82525050565b60006125548261287b565b61255e8185612897565b935061256e818560208601612ac7565b61257781612c2d565b840191505092915050565b600061258d8261287b565b61259781856128a8565b93506125a7818560208601612ac7565b80840191505092915050565b600081546125c081612afa565b6125ca81866128a8565b945060018216600081146125e557600181146125f657612629565b60ff19831686528186019350612629565b6125ff8561285b565b60005b8381101561262157815481890152600182019150602081019050612602565b838801955050505b50505092915050565b600061263f601383612897565b915061264a82612c3e565b602082019050919050565b61265e81612a78565b82525050565b600061267082856125b3565b915061267c8284612582565b91508190509392505050565b600060208201905061269d60008301846124e3565b92915050565b60006040820190506126b860008301856124e3565b6126c560208301846124e3565b9392505050565b60006080820190506126e160008301876124e3565b6126ee60208301866124e3565b6126fb6040830185612655565b818103606083015261270d8184612501565b905095945050505050565b600060408201905061272d60008301856124e3565b61273a6020830184612655565b9392505050565b600060208201905061275660008301846124f2565b92915050565b6000602082019050612771600083018461253a565b92915050565b600060208201905081810360008301526127918184612549565b905092915050565b600060208201905081810360008301526127b281612632565b9050919050565b60006020820190506127ce6000830184612655565b92915050565b60006127de6127ef565b90506127ea8282612b2c565b919050565b6000604051905090565b600067ffffffffffffffff82111561281457612813612bea565b5b61281d82612c2d565b9050602081019050919050565b600067ffffffffffffffff82111561284557612844612bea565b5b61284e82612c2d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128be82612a4a565b91506128c983612a4a565b92508261ffff038211156128e0576128df612b5d565b5b828201905092915050565b60006128f682612a78565b915061290183612a78565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561293657612935612b5d565b5b828201905092915050565b600061294c82612a78565b915061295783612a78565b92508261296757612966612b8c565b5b828204905092915050565b600061297d82612a78565b915061298883612a78565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129c1576129c0612b5d565b5b828202905092915050565b60006129d782612a78565b91506129e283612a78565b9250828210156129f5576129f4612b5d565b5b828203905092915050565b6000612a0b82612a58565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612a8d82612a94565b9050919050565b6000612a9f82612aa6565b9050919050565b6000612ab182612a58565b9050919050565b82818337600083830152505050565b60005b83811015612ae5578082015181840152602081019050612aca565b83811115612af4576000848401525b50505050565b60006002820490506001821680612b1257607f821691505b60208210811415612b2657612b25612bbb565b5b50919050565b612b3582612c2d565b810181811067ffffffffffffffff82111715612b5457612b53612bea565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b612c7081612a00565b8114612c7b57600080fd5b50565b612c8781612a12565b8114612c9257600080fd5b50565b612c9e81612a1e565b8114612ca957600080fd5b50565b612cb581612a4a565b8114612cc057600080fd5b50565b612ccc81612a78565b8114612cd757600080fd5b5056fea2646970667358221220eaa2a12ec2124d6faf2adc772552d78552bd83f9dfdd737e6410dc2282ef5ade64736f6c63430008070033

Deployed Bytecode Sourcemap

57076:3096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18676:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19578:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26069:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59385:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15329:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59558:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57355:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58695:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59084:109;;;;;;;;;;;;;:::i;:::-;;54445:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59737:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20971:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16513:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19754:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57664:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57312:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57410:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59201:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59924:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58425:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58921:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57233:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27018:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57272:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18676:639;18761:4;19100:10;19085:25;;:11;:25;;;;:102;;;;19177:10;19162:25;;:11;:25;;;;19085:102;:179;;;;19254:10;19239:25;;:11;:25;;;;19085:179;19065:199;;18676:639;;;:::o;19578:100::-;19632:13;19665:5;19658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19578:100;:::o;26069:218::-;26145:7;26170:16;26178:7;26170;:16::i;:::-;26165:64;;26195:34;;;;;;;;;;;;;;26165:64;26249:15;:24;26265:7;26249:24;;;;;;;;;;;:30;;;;;;;;;;;;26242:37;;26069:218;;;:::o;59385:165::-;59489:8;56487:1;54545:42;56439:45;;;:49;56435:225;;;54545:42;56510;;;56561:4;56568:8;56510:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56505:144;;56624:8;56605:28;;;;;;;;;;;:::i;:::-;;;;;;;;56505:144;56435:225;59510:32:::1;59524:8;59534:7;59510:13;:32::i;:::-;59385:165:::0;;;:::o;15329:323::-;15390:7;15618:15;:13;:15::i;:::-;15603:12;;15587:13;;:28;:46;15580:53;;15329:323;:::o;59558:171::-;59667:4;55741:1;54545:42;55693:45;;;:49;55689:539;;;55982:10;55974:18;;:4;:18;;;55970:85;;;59684:37:::1;59703:4;59709:2;59713:7;59684:18;:37::i;:::-;56033:7:::0;;55970:85;54545:42;56074;;;56125:4;56132:10;56074:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56069:148;;56190:10;56171:30;;;;;;;;;;;:::i;:::-;;;;;;;;56069:148;55689:539;59684:37:::1;59703:4;59709:2;59713:7;59684:18;:37::i;:::-;59558:171:::0;;;;;:::o;57355:27::-;;;;:::o;58695:218::-;58783:7;58792;58812:21;58861:4;58850:7;;58837:10;:20;;;;:::i;:::-;58836:29;;;;:::i;:::-;58812:53;;58884:5;;;;;;;;;;;58891:13;58876:29;;;;;58695:218;;;;;:::o;59084:109::-;57823:10;57814:19;;:5;;;;;;;;;;;:19;;;57806:28;;;;;;59142:10:::1;59134:28;;:51;59163:21;59134:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59084:109::o:0;54445:143::-;54545:42;54445:143;:::o;59737:179::-;59850:4;55741:1;54545:42;55693:45;;;:49;55689:539;;;55982:10;55974:18;;:4;:18;;;55970:85;;;59867:41:::1;59890:4;59896:2;59900:7;59867:22;:41::i;:::-;56033:7:::0;;55970:85;54545:42;56074;;;56125:4;56132:10;56074:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56069:148;;56190:10;56171:30;;;;;;;;;;;:::i;:::-;;;;;;;;56069:148;55689:539;59867:41:::1;59890:4;59896:2;59900:7;59867:22;:41::i;:::-;59737:179:::0;;;;;:::o;20971:152::-;21043:7;21086:27;21105:7;21086:18;:27::i;:::-;21063:52;;20971:152;;;:::o;16513:233::-;16585:7;16626:1;16609:19;;:5;:19;;;16605:60;;;16637:28;;;;;;;;;;;;;;16605:60;10672:13;16683:18;:25;16702:5;16683:25;;;;;;;;;;;;;;;;:55;16676:62;;16513:233;;;:::o;19754:104::-;19810:13;19843:7;19836:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19754:104;:::o;57664:84::-;57823:10;57814:19;;:5;;;;;;;;;;;:19;;;57806:28;;;;;;57736:4:::1;57730:3;:10;;;;;;;;;;;;:::i;:::-;;57664:84:::0;:::o;57312:34::-;;;;:::o;57410:170::-;57500:9;;57490:6;57474:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57466:44;;;;;;57539:8;;57529:6;:18;;57521:27;;;;;;57559:13;57565:6;57559:5;:13::i;:::-;57410:170;:::o;59201:176::-;59305:8;56487:1;54545:42;56439:45;;;:49;56435:225;;;54545:42;56510;;;56561:4;56568:8;56510:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56505:144;;56624:8;56605:28;;;;;;;;;;;:::i;:::-;;;;;;;;56505:144;56435:225;59326:43:::1;59350:8;59360;59326:23;:43::i;:::-;59201:176:::0;;;:::o;59924:245::-;60092:4;55741:1;54545:42;55693:45;;;:49;55689:539;;;55982:10;55974:18;;:4;:18;;;55970:85;;;60114:47:::1;60137:4;60143:2;60147:7;60156:4;60114:22;:47::i;:::-;56033:7:::0;;55970:85;54545:42;56074;;;56125:4;56132:10;56074:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56069:148;;56190:10;56171:30;;;;;;;;;;;:::i;:::-;;;;;;;;56069:148;55689:539;60114:47:::1;60137:4;60143:2;60147:7;60156:4;60114:22;:47::i;:::-;59924:245:::0;;;;;;:::o;58425:262::-;57823:10;57814:19;;:5;;;;;;;;;;;:19;;;57806:28;;;;;;58511:18:::1;58539:13;:11;:13::i;:::-;58511:42;;58601:9;;58586:11;58572;:25;;;;:::i;:::-;:38;;;;58564:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58645:34;58655:9;58667:11;58645:34;;:9;:34::i;:::-;58500:187;58425:262:::0;;:::o;58921:155::-;58986:13;59043:3;59048:18;59058:7;59048:9;:18::i;:::-;59026:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59012:56;;58921:155;;;:::o;57233:30::-;;;;:::o;27018:164::-;27115:4;27139:18;:25;27158:5;27139:25;;;;;;;;;;;;;;;:35;27165:8;27139:35;;;;;;;;;;;;;;;;;;;;;;;;;27132:42;;27018:164;;;;:::o;57272:27::-;;;;:::o;27440:282::-;27505:4;27561:7;27542:15;:13;:15::i;:::-;:26;;:66;;;;;27595:13;;27585:7;:23;27542:66;:153;;;;;27694:1;11448:8;27646:17;:26;27664:7;27646:26;;;;;;;;;;;;:44;:49;27542:153;27522:173;;27440:282;;;:::o;25502:408::-;25591:13;25607:16;25615:7;25607;:16::i;:::-;25591:32;;25663:5;25640:28;;:19;:17;:19::i;:::-;:28;;;25636:175;;25688:44;25705:5;25712:19;:17;:19::i;:::-;25688:16;:44::i;:::-;25683:128;;25760:35;;;;;;;;;;;;;;25683:128;25636:175;25856:2;25823:15;:24;25839:7;25823:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25894:7;25890:2;25874:28;;25883:5;25874:28;;;;;;;;;;;;25580:330;25502:408;;:::o;14845:92::-;14901:7;14845:92;:::o;29708:2825::-;29850:27;29880;29899:7;29880:18;:27::i;:::-;29850:57;;29965:4;29924:45;;29940:19;29924:45;;;29920:86;;29978:28;;;;;;;;;;;;;;29920:86;30020:27;30049:23;30076:35;30103:7;30076:26;:35::i;:::-;30019:92;;;;30211:68;30236:15;30253:4;30259:19;:17;:19::i;:::-;30211:24;:68::i;:::-;30206:180;;30299:43;30316:4;30322:19;:17;:19::i;:::-;30299:16;:43::i;:::-;30294:92;;30351:35;;;;;;;;;;;;;;30294:92;30206:180;30417:1;30403:16;;:2;:16;;;30399:52;;;30428:23;;;;;;;;;;;;;;30399:52;30464:43;30486:4;30492:2;30496:7;30505:1;30464:21;:43::i;:::-;30600:15;30597:160;;;30740:1;30719:19;30712:30;30597:160;31137:18;:24;31156:4;31137:24;;;;;;;;;;;;;;;;31135:26;;;;;;;;;;;;31206:18;:22;31225:2;31206:22;;;;;;;;;;;;;;;;31204:24;;;;;;;;;;;31528:146;31565:2;31614:45;31629:4;31635:2;31639:19;31614:14;:45::i;:::-;11728:8;31586:73;31528:18;:146::i;:::-;31499:17;:26;31517:7;31499:26;;;;;;;;;;;:175;;;;31845:1;11728:8;31794:19;:47;:52;31790:627;;;31867:19;31899:1;31889:7;:11;31867:33;;32056:1;32022:17;:30;32040:11;32022:30;;;;;;;;;;;;:35;32018:384;;;32160:13;;32145:11;:28;32141:242;;32340:19;32307:17;:30;32325:11;32307:30;;;;;;;;;;;:52;;;;32141:242;32018:384;31848:569;31790:627;32464:7;32460:2;32445:27;;32454:4;32445:27;;;;;;;;;;;;32483:42;32504:4;32510:2;32514:7;32523:1;32483:20;:42::i;:::-;29839:2694;;;29708:2825;;;:::o;32629:193::-;32775:39;32792:4;32798:2;32802:7;32775:39;;;;;;;;;;;;:16;:39::i;:::-;32629:193;;;:::o;22126:1275::-;22193:7;22213:12;22228:7;22213:22;;22296:4;22277:15;:13;:15::i;:::-;:23;22273:1061;;22330:13;;22323:4;:20;22319:1015;;;22368:14;22385:17;:23;22403:4;22385:23;;;;;;;;;;;;22368:40;;22502:1;11448:8;22474:6;:24;:29;22470:845;;;23139:113;23156:1;23146:6;:11;23139:113;;;23199:17;:25;23217:6;;;;;;;23199:25;;;;;;;;;;;;23190:34;;23139:113;;;23285:6;23278:13;;;;;;22470:845;22345:989;22319:1015;22273:1061;23362:31;;;;;;;;;;;;;;22126:1275;;;;:::o;57967:450::-;58040:9;58026:23;;:10;:23;;;58018:32;;;;;;58078:1;58065:9;:14;58061:262;;;58096:15;58144:2;58127:13;:11;:13::i;:::-;58115:9;;:25;;;;:::i;:::-;58114:32;;;;:::i;:::-;58096:50;;58200:7;58195:1;58169:9;:23;58179:12;58169:23;;;;;;;;;;;;:27;;;;:::i;:::-;:38;;58161:47;;;;;;58250:1;58223:9;:23;58233:12;58223:23;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;58266:24;58276:10;58288:1;58266:9;:24::i;:::-;58305:7;;;58061:262;58363:5;;58354:6;:14;;;;:::i;:::-;58341:9;:27;;58333:36;;;;;;58380:29;58390:10;58402:6;58380:9;:29::i;:::-;57967:450;;:::o;26627:234::-;26774:8;26722:18;:39;26741:19;:17;:19::i;:::-;26722:39;;;;;;;;;;;;;;;:49;26762:8;26722:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26834:8;26798:55;;26813:19;:17;:19::i;:::-;26798:55;;;26844:8;26798:55;;;;;;:::i;:::-;;;;;;;;26627:234;;:::o;33420:407::-;33595:31;33608:4;33614:2;33618:7;33595:12;:31::i;:::-;33659:1;33641:2;:14;;;:19;33637:183;;33680:56;33711:4;33717:2;33721:7;33730:5;33680:30;:56::i;:::-;33675:145;;33764:40;;;;;;;;;;;;;;33675:145;33637:183;33420:407;;;;:::o;43580:112::-;43657:27;43667:2;43671:8;43657:27;;;;;;;;;;;;:9;:27::i;:::-;43580:112;;:::o;49955:1745::-;50020:17;50454:4;50447;50441:11;50437:22;50546:1;50540:4;50533:15;50621:4;50618:1;50614:12;50607:19;;50703:1;50698:3;50691:14;50807:3;51046:5;51028:428;51054:1;51028:428;;;51094:1;51089:3;51085:11;51078:18;;51265:2;51259:4;51255:13;51251:2;51247:22;51242:3;51234:36;51359:2;51353:4;51349:13;51341:21;;51426:4;51416:25;;51434:5;;51416:25;51028:428;;;51032:21;51495:3;51490;51486:13;51610:4;51605:3;51601:14;51594:21;;51675:6;51670:3;51663:19;50059:1634;;;49955:1745;;;:::o;49748:105::-;49808:7;49835:10;49828:17;;49748:105;:::o;28603:485::-;28705:27;28734:23;28775:38;28816:15;:24;28832:7;28816:24;;;;;;;;;;;28775:65;;28993:18;28970:41;;29050:19;29044:26;29025:45;;28955:126;28603:485;;;:::o;27831:659::-;27980:11;28145:16;28138:5;28134:28;28125:37;;28305:16;28294:9;28290:32;28277:45;;28455:15;28444:9;28441:30;28433:5;28422:9;28419:20;28416:56;28406:66;;27831:659;;;;;:::o;34489:159::-;;;;;:::o;49057:311::-;49192:7;49212:16;11852:3;49238:19;:41;;49212:68;;11852:3;49306:31;49317:4;49323:2;49327:9;49306:10;:31::i;:::-;49298:40;;:62;;49291:69;;;49057:311;;;;;:::o;23949:450::-;24029:14;24197:16;24190:5;24186:28;24177:37;;24374:5;24360:11;24335:23;24331:41;24328:52;24321:5;24318:63;24308:73;;23949:450;;;;:::o;35313:158::-;;;;;:::o;35911:716::-;36074:4;36120:2;36095:45;;;36141:19;:17;:19::i;:::-;36162:4;36168:7;36177:5;36095:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36091:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36395:1;36378:6;:13;:18;36374:235;;;36424:40;;;;;;;;;;;;;;36374:235;36567:6;36561:13;36552:6;36548:2;36544:15;36537:38;36091:529;36264:54;;;36254:64;;;:6;:64;;;;36247:71;;;35911:716;;;;;;:::o;42807:689::-;42938:19;42944:2;42948:8;42938:5;:19::i;:::-;43017:1;42999:2;:14;;;:19;42995:483;;43039:11;43053:13;;43039:27;;43085:13;43107:8;43101:3;:14;43085:30;;43134:233;43165:62;43204:1;43208:2;43212:7;;;;;;43221:5;43165:30;:62::i;:::-;43160:167;;43263:40;;;;;;;;;;;;;;43160:167;43362:3;43354:5;:11;43134:233;;43449:3;43432:13;;:20;43428:34;;43454:8;;;43428:34;43020:458;;42995:483;42807:689;;;:::o;48758:147::-;48895:6;48758:147;;;;;:::o;37089:2966::-;37162:20;37185:13;;37162:36;;37225:1;37213:8;:13;37209:44;;;37235:18;;;;;;;;;;;;;;37209:44;37266:61;37296:1;37300:2;37304:12;37318:8;37266:21;:61::i;:::-;37810:1;10810:2;37780:1;:26;;37779:32;37767:8;:45;37741:18;:22;37760:2;37741:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38089:139;38126:2;38180:33;38203:1;38207:2;38211:1;38180:14;:33::i;:::-;38147:30;38168:8;38147:20;:30::i;:::-;:66;38089:18;:139::i;:::-;38055:17;:31;38073:12;38055:31;;;;;;;;;;;:173;;;;38245:16;38276:11;38305:8;38290:12;:23;38276:37;;38826:16;38822:2;38818:25;38806:37;;39198:12;39158:8;39117:1;39055:25;38996:1;38935;38908:335;39569:1;39555:12;39551:20;39509:346;39610:3;39601:7;39598:16;39509:346;;39828:7;39818:8;39815:1;39788:25;39785:1;39782;39777:59;39663:1;39654:7;39650:15;39639:26;;39509:346;;;39513:77;39900:1;39888:8;:13;39884:45;;;39910:19;;;;;;;;;;;;;;39884:45;39962:3;39946:13;:19;;;;37515:2462;;39987:60;40016:1;40020:2;40024:12;40038:8;39987:20;:60::i;:::-;37151:2904;37089:2966;;:::o;24501:324::-;24571:14;24804:1;24794:8;24791:15;24765:24;24761:46;24751:56;;24501: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:137::-;2320:5;2358:6;2345:20;2336:29;;2374:32;2400:5;2374:32;:::i;:::-;2275:137;;;;:::o;2418:139::-;2464:5;2502:6;2489:20;2480:29;;2518:33;2545:5;2518:33;:::i;:::-;2418:139;;;;:::o;2563:329::-;2622:6;2671:2;2659:9;2650:7;2646:23;2642:32;2639:119;;;2677:79;;:::i;:::-;2639:119;2797:1;2822:53;2867:7;2858:6;2847:9;2843:22;2822:53;:::i;:::-;2812:63;;2768:117;2563:329;;;;:::o;2898:474::-;2966:6;2974;3023:2;3011:9;3002:7;2998:23;2994:32;2991:119;;;3029:79;;:::i;:::-;2991:119;3149:1;3174:53;3219:7;3210:6;3199:9;3195:22;3174:53;:::i;:::-;3164:63;;3120:117;3276:2;3302:53;3347:7;3338:6;3327:9;3323:22;3302:53;:::i;:::-;3292:63;;3247:118;2898:474;;;;;:::o;3378:619::-;3455:6;3463;3471;3520:2;3508:9;3499:7;3495:23;3491:32;3488:119;;;3526:79;;:::i;:::-;3488:119;3646:1;3671:53;3716:7;3707:6;3696:9;3692:22;3671:53;:::i;:::-;3661:63;;3617:117;3773:2;3799:53;3844:7;3835:6;3824:9;3820:22;3799:53;:::i;:::-;3789:63;;3744:118;3901:2;3927:53;3972:7;3963:6;3952:9;3948:22;3927:53;:::i;:::-;3917:63;;3872:118;3378:619;;;;;:::o;4003:943::-;4098:6;4106;4114;4122;4171:3;4159:9;4150:7;4146:23;4142:33;4139:120;;;4178:79;;:::i;:::-;4139:120;4298:1;4323:53;4368:7;4359:6;4348:9;4344:22;4323:53;:::i;:::-;4313:63;;4269:117;4425:2;4451:53;4496:7;4487:6;4476:9;4472:22;4451:53;:::i;:::-;4441:63;;4396:118;4553:2;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4524:118;4709:2;4698:9;4694:18;4681:32;4740:18;4732:6;4729:30;4726:117;;;4762:79;;:::i;:::-;4726:117;4867:62;4921:7;4912:6;4901:9;4897:22;4867:62;:::i;:::-;4857:72;;4652:287;4003:943;;;;;;;:::o;4952:468::-;5017:6;5025;5074:2;5062:9;5053:7;5049:23;5045:32;5042:119;;;5080:79;;:::i;:::-;5042:119;5200:1;5225:53;5270:7;5261:6;5250:9;5246:22;5225:53;:::i;:::-;5215:63;;5171:117;5327:2;5353:50;5395:7;5386:6;5375:9;5371:22;5353:50;:::i;:::-;5343:60;;5298:115;4952:468;;;;;:::o;5426:474::-;5494:6;5502;5551:2;5539:9;5530:7;5526:23;5522:32;5519:119;;;5557:79;;:::i;:::-;5519:119;5677:1;5702:53;5747:7;5738:6;5727:9;5723:22;5702:53;:::i;:::-;5692:63;;5648:117;5804:2;5830:53;5875:7;5866:6;5855:9;5851:22;5830:53;:::i;:::-;5820:63;;5775:118;5426:474;;;;;:::o;5906:345::-;5973:6;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:61;6226:7;6217:6;6206:9;6202:22;6173:61;:::i;:::-;6163:71;;6119:125;5906:345;;;;:::o;6257:327::-;6315:6;6364:2;6352:9;6343:7;6339:23;6335:32;6332:119;;;6370:79;;:::i;:::-;6332:119;6490:1;6515:52;6559:7;6550:6;6539:9;6535:22;6515:52;:::i;:::-;6505:62;;6461:116;6257:327;;;;:::o;6590:349::-;6659:6;6708:2;6696:9;6687:7;6683:23;6679:32;6676:119;;;6714:79;;:::i;:::-;6676:119;6834:1;6859:63;6914:7;6905:6;6894:9;6890:22;6859:63;:::i;:::-;6849:73;;6805:127;6590:349;;;;:::o;6945:509::-;7014:6;7063:2;7051:9;7042:7;7038:23;7034:32;7031:119;;;7069:79;;:::i;:::-;7031:119;7217:1;7206:9;7202:17;7189:31;7247:18;7239:6;7236:30;7233:117;;;7269:79;;:::i;:::-;7233:117;7374:63;7429:7;7420:6;7409:9;7405:22;7374:63;:::i;:::-;7364:73;;7160:287;6945:509;;;;:::o;7460:472::-;7527:6;7535;7584:2;7572:9;7563:7;7559:23;7555:32;7552:119;;;7590:79;;:::i;:::-;7552:119;7710:1;7735:52;7779:7;7770:6;7759:9;7755:22;7735:52;:::i;:::-;7725:62;;7681:116;7836:2;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7807:118;7460:472;;;;;:::o;7938:329::-;7997:6;8046:2;8034:9;8025:7;8021:23;8017:32;8014:119;;;8052:79;;:::i;:::-;8014:119;8172:1;8197:53;8242:7;8233:6;8222:9;8218:22;8197:53;:::i;:::-;8187:63;;8143:117;7938:329;;;;:::o;8273:474::-;8341:6;8349;8398:2;8386:9;8377:7;8373:23;8369:32;8366:119;;;8404:79;;:::i;:::-;8366:119;8524:1;8549:53;8594:7;8585:6;8574:9;8570:22;8549:53;:::i;:::-;8539:63;;8495:117;8651:2;8677:53;8722:7;8713:6;8702:9;8698:22;8677:53;:::i;:::-;8667:63;;8622:118;8273:474;;;;;:::o;8753:118::-;8840:24;8858:5;8840:24;:::i;:::-;8835:3;8828:37;8753:118;;:::o;8877:109::-;8958:21;8973:5;8958:21;:::i;:::-;8953:3;8946:34;8877:109;;:::o;8992:360::-;9078:3;9106:38;9138:5;9106:38;:::i;:::-;9160:70;9223:6;9218:3;9160:70;:::i;:::-;9153:77;;9239:52;9284:6;9279:3;9272:4;9265:5;9261:16;9239:52;:::i;:::-;9316:29;9338:6;9316:29;:::i;:::-;9311:3;9307:39;9300:46;;9082:270;8992:360;;;;:::o;9358:195::-;9477:69;9540:5;9477:69;:::i;:::-;9472:3;9465:82;9358:195;;:::o;9559:364::-;9647:3;9675:39;9708:5;9675:39;:::i;:::-;9730:71;9794:6;9789:3;9730:71;:::i;:::-;9723:78;;9810:52;9855:6;9850:3;9843:4;9836:5;9832:16;9810:52;:::i;:::-;9887:29;9909:6;9887:29;:::i;:::-;9882:3;9878:39;9871:46;;9651:272;9559:364;;;;:::o;9929:377::-;10035:3;10063:39;10096:5;10063:39;:::i;:::-;10118:89;10200:6;10195:3;10118:89;:::i;:::-;10111:96;;10216:52;10261:6;10256:3;10249:4;10242:5;10238:16;10216:52;:::i;:::-;10293:6;10288:3;10284:16;10277:23;;10039:267;9929:377;;;;:::o;10336:845::-;10439:3;10476:5;10470:12;10505:36;10531:9;10505:36;:::i;:::-;10557:89;10639:6;10634:3;10557:89;:::i;:::-;10550:96;;10677:1;10666:9;10662:17;10693:1;10688:137;;;;10839:1;10834:341;;;;10655:520;;10688:137;10772:4;10768:9;10757;10753:25;10748:3;10741:38;10808:6;10803:3;10799:16;10792:23;;10688:137;;10834:341;10901:38;10933:5;10901:38;:::i;:::-;10961:1;10975:154;10989:6;10986:1;10983:13;10975:154;;;11063:7;11057:14;11053:1;11048:3;11044:11;11037:35;11113:1;11104:7;11100:15;11089:26;;11011:4;11008:1;11004:12;10999:17;;10975:154;;;11158:6;11153:3;11149:16;11142:23;;10841:334;;10655:520;;10443:738;;10336:845;;;;:::o;11187:366::-;11329:3;11350:67;11414:2;11409:3;11350:67;:::i;:::-;11343:74;;11426:93;11515:3;11426:93;:::i;:::-;11544:2;11539:3;11535:12;11528:19;;11187:366;;;:::o;11559:118::-;11646:24;11664:5;11646:24;:::i;:::-;11641:3;11634:37;11559:118;;:::o;11683:429::-;11860:3;11882:92;11970:3;11961:6;11882:92;:::i;:::-;11875:99;;11991:95;12082:3;12073:6;11991:95;:::i;:::-;11984:102;;12103:3;12096:10;;11683:429;;;;;:::o;12118:222::-;12211:4;12249:2;12238:9;12234:18;12226:26;;12262:71;12330:1;12319:9;12315:17;12306:6;12262:71;:::i;:::-;12118:222;;;;:::o;12346:332::-;12467:4;12505:2;12494:9;12490:18;12482:26;;12518:71;12586:1;12575:9;12571:17;12562:6;12518:71;:::i;:::-;12599:72;12667:2;12656:9;12652:18;12643:6;12599:72;:::i;:::-;12346:332;;;;;:::o;12684:640::-;12879:4;12917:3;12906:9;12902:19;12894:27;;12931:71;12999:1;12988:9;12984:17;12975:6;12931:71;:::i;:::-;13012:72;13080:2;13069:9;13065:18;13056:6;13012:72;:::i;:::-;13094;13162:2;13151:9;13147:18;13138:6;13094:72;:::i;:::-;13213:9;13207:4;13203:20;13198:2;13187:9;13183:18;13176:48;13241:76;13312:4;13303:6;13241:76;:::i;:::-;13233:84;;12684:640;;;;;;;:::o;13330:332::-;13451:4;13489:2;13478:9;13474:18;13466:26;;13502:71;13570:1;13559:9;13555:17;13546:6;13502:71;:::i;:::-;13583:72;13651:2;13640:9;13636:18;13627:6;13583:72;:::i;:::-;13330:332;;;;;:::o;13668:210::-;13755:4;13793:2;13782:9;13778:18;13770:26;;13806:65;13868:1;13857:9;13853:17;13844:6;13806:65;:::i;:::-;13668:210;;;;:::o;13884:286::-;14009:4;14047:2;14036:9;14032:18;14024:26;;14060:103;14160:1;14149:9;14145:17;14136:6;14060:103;:::i;:::-;13884:286;;;;:::o;14176:313::-;14289:4;14327:2;14316:9;14312:18;14304:26;;14376:9;14370:4;14366:20;14362:1;14351:9;14347:17;14340:47;14404:78;14477:4;14468:6;14404:78;:::i;:::-;14396:86;;14176:313;;;;:::o;14495:419::-;14661:4;14699:2;14688:9;14684:18;14676:26;;14748:9;14742:4;14738:20;14734:1;14723:9;14719:17;14712:47;14776:131;14902:4;14776:131;:::i;:::-;14768:139;;14495:419;;;:::o;14920:222::-;15013:4;15051:2;15040:9;15036:18;15028:26;;15064:71;15132:1;15121:9;15117:17;15108:6;15064:71;:::i;:::-;14920:222;;;;:::o;15148:129::-;15182:6;15209:20;;:::i;:::-;15199:30;;15238:33;15266:4;15258:6;15238:33;:::i;:::-;15148:129;;;:::o;15283:75::-;15316:6;15349:2;15343:9;15333:19;;15283:75;:::o;15364:307::-;15425:4;15515:18;15507:6;15504:30;15501:56;;;15537:18;;:::i;:::-;15501:56;15575:29;15597:6;15575:29;:::i;:::-;15567:37;;15659:4;15653;15649:15;15641:23;;15364:307;;;:::o;15677:308::-;15739:4;15829:18;15821:6;15818:30;15815:56;;;15851:18;;:::i;:::-;15815:56;15889:29;15911:6;15889:29;:::i;:::-;15881:37;;15973:4;15967;15963:15;15955:23;;15677:308;;;:::o;15991:141::-;16040:4;16063:3;16055:11;;16086:3;16083:1;16076:14;16120:4;16117:1;16107:18;16099:26;;15991:141;;;:::o;16138:98::-;16189:6;16223:5;16217:12;16207:22;;16138:98;;;:::o;16242:99::-;16294:6;16328:5;16322:12;16312:22;;16242:99;;;:::o;16347:168::-;16430:11;16464:6;16459:3;16452:19;16504:4;16499:3;16495:14;16480:29;;16347:168;;;;:::o;16521:169::-;16605:11;16639:6;16634:3;16627:19;16679:4;16674:3;16670:14;16655:29;;16521:169;;;;:::o;16696:148::-;16798:11;16835:3;16820:18;;16696:148;;;;:::o;16850:242::-;16889:3;16908:19;16925:1;16908:19;:::i;:::-;16903:24;;16941:19;16958:1;16941:19;:::i;:::-;16936:24;;17034:1;17026:6;17022:14;17019:1;17016:21;17013:47;;;17040:18;;:::i;:::-;17013:47;17084:1;17081;17077:9;17070:16;;16850:242;;;;:::o;17098:305::-;17138:3;17157:20;17175:1;17157:20;:::i;:::-;17152:25;;17191:20;17209:1;17191:20;:::i;:::-;17186:25;;17345:1;17277:66;17273:74;17270:1;17267:81;17264:107;;;17351:18;;:::i;:::-;17264:107;17395:1;17392;17388:9;17381:16;;17098:305;;;;:::o;17409:185::-;17449:1;17466:20;17484:1;17466:20;:::i;:::-;17461:25;;17500:20;17518:1;17500:20;:::i;:::-;17495:25;;17539:1;17529:35;;17544:18;;:::i;:::-;17529:35;17586:1;17583;17579:9;17574:14;;17409:185;;;;:::o;17600:348::-;17640:7;17663:20;17681:1;17663:20;:::i;:::-;17658:25;;17697:20;17715:1;17697:20;:::i;:::-;17692:25;;17885:1;17817:66;17813:74;17810:1;17807:81;17802:1;17795:9;17788:17;17784:105;17781:131;;;17892:18;;:::i;:::-;17781:131;17940:1;17937;17933:9;17922:20;;17600:348;;;;:::o;17954:191::-;17994:4;18014:20;18032:1;18014:20;:::i;:::-;18009:25;;18048:20;18066:1;18048:20;:::i;:::-;18043:25;;18087:1;18084;18081:8;18078:34;;;18092:18;;:::i;:::-;18078:34;18137:1;18134;18130:9;18122:17;;17954:191;;;;:::o;18151:96::-;18188:7;18217:24;18235:5;18217:24;:::i;:::-;18206:35;;18151:96;;;:::o;18253:90::-;18287:7;18330:5;18323:13;18316:21;18305:32;;18253:90;;;:::o;18349:149::-;18385:7;18425:66;18418:5;18414:78;18403:89;;18349:149;;;:::o;18504:89::-;18540:7;18580:6;18573:5;18569:18;18558:29;;18504:89;;;:::o;18599:126::-;18636:7;18676:42;18669:5;18665:54;18654:65;;18599:126;;;:::o;18731:77::-;18768:7;18797:5;18786:16;;18731:77;;;:::o;18814:158::-;18896:9;18929:37;18960:5;18929:37;:::i;:::-;18916:50;;18814:158;;;:::o;18978:126::-;19028:9;19061:37;19092:5;19061:37;:::i;:::-;19048:50;;18978:126;;;:::o;19110:113::-;19160:9;19193:24;19211:5;19193:24;:::i;:::-;19180:37;;19110:113;;;:::o;19229:154::-;19313:6;19308:3;19303;19290:30;19375:1;19366:6;19361:3;19357:16;19350:27;19229:154;;;:::o;19389:307::-;19457:1;19467:113;19481:6;19478:1;19475:13;19467:113;;;19566:1;19561:3;19557:11;19551:18;19547:1;19542:3;19538:11;19531:39;19503:2;19500:1;19496:10;19491:15;;19467:113;;;19598:6;19595:1;19592:13;19589:101;;;19678:1;19669:6;19664:3;19660:16;19653:27;19589:101;19438:258;19389:307;;;:::o;19702:320::-;19746:6;19783:1;19777:4;19773:12;19763:22;;19830:1;19824:4;19820:12;19851:18;19841:81;;19907:4;19899:6;19895:17;19885:27;;19841:81;19969:2;19961:6;19958:14;19938:18;19935:38;19932:84;;;19988:18;;:::i;:::-;19932:84;19753:269;19702:320;;;:::o;20028:281::-;20111:27;20133:4;20111:27;:::i;:::-;20103:6;20099:40;20241:6;20229:10;20226:22;20205:18;20193:10;20190:34;20187:62;20184:88;;;20252:18;;:::i;:::-;20184:88;20292:10;20288:2;20281:22;20071:238;20028:281;;:::o;20315:180::-;20363:77;20360:1;20353:88;20460:4;20457:1;20450:15;20484:4;20481:1;20474:15;20501:180;20549:77;20546:1;20539:88;20646:4;20643:1;20636:15;20670:4;20667:1;20660:15;20687:180;20735:77;20732:1;20725:88;20832:4;20829:1;20822:15;20856:4;20853:1;20846:15;20873:180;20921:77;20918:1;20911:88;21018:4;21015:1;21008:15;21042:4;21039:1;21032:15;21059:117;21168:1;21165;21158:12;21182:117;21291:1;21288;21281:12;21305:117;21414:1;21411;21404:12;21428:117;21537:1;21534;21527:12;21551:102;21592:6;21643:2;21639:7;21634:2;21627:5;21623:14;21619:28;21609:38;;21551:102;;;:::o;21659:169::-;21799:21;21795:1;21787:6;21783:14;21776:45;21659:169;:::o;21834:122::-;21907:24;21925:5;21907:24;:::i;:::-;21900:5;21897:35;21887:63;;21946:1;21943;21936:12;21887:63;21834:122;:::o;21962:116::-;22032:21;22047:5;22032:21;:::i;:::-;22025:5;22022:32;22012:60;;22068:1;22065;22058:12;22012:60;21962:116;:::o;22084:120::-;22156:23;22173:5;22156:23;:::i;:::-;22149:5;22146:34;22136:62;;22194:1;22191;22184:12;22136:62;22084:120;:::o;22210:::-;22282:23;22299:5;22282:23;:::i;:::-;22275:5;22272:34;22262:62;;22320:1;22317;22310:12;22262:62;22210:120;:::o;22336:122::-;22409:24;22427:5;22409:24;:::i;:::-;22402:5;22399:35;22389:63;;22448:1;22445;22438:12;22389:63;22336:122;:::o

Swarm Source

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