ETH Price: $3,098.65 (+4.65%)
Gas: 3 Gwei

Token

Pepe of Glitch (POG)
 

Overview

Max Total Supply

888 POG

Holders

306

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
sticky.eth
Balance
6 POG
0x613ead0ea5af374af0ccfc117ef116a8e8d133fe
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:
PepeofGlitch

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

/**
██████╗ ███████╗██████╗ ███████╗     ██████╗ ███████╗     ██████╗ ██╗     ██╗████████╗ ██████╗██╗  ██╗
██╔══██╗██╔════╝██╔══██╗██╔════╝    ██╔═══██╗██╔════╝    ██╔════╝ ██║     ██║╚══██╔══╝██╔════╝██║  ██║
██████╔╝█████╗  ██████╔╝█████╗      ██║   ██║█████╗      ██║  ███╗██║     ██║   ██║   ██║     ███████║
██╔═══╝ ██╔══╝  ██╔═══╝ ██╔══╝      ██║   ██║██╔══╝      ██║   ██║██║     ██║   ██║   ██║     ██╔══██║
██║     ███████╗██║     ███████╗    ╚██████╔╝██║         ╚██████╔╝███████╗██║   ██║   ╚██████╗██║  ██║
╚═╝     ╚══════╝╚═╝     ╚══════╝     ╚═════╝ ╚═╝          ╚═════╝ ╚══════╝╚═╝   ╚═╝    ╚═════╝╚═╝  ╚═╝
                                                                                                      
*/

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

    mapping(address => bool) minted;

    uint256 public maxSupply = 888;

    uint256 public maxPerTx = 8;    

    uint256 public price = 0.002 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://bafybeia277dqlk6whjbuxexu5jkttaolkee5smqhxg7olh7hee2mwpmwlu/";
    function setUri(string memory _uri) external onlyOwner {
        uri = _uri;
    }

    address owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }
    
    constructor() ERC721A("Pepe of Glitch", "POG") {
        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), ".json"));
    }

    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"}]

6080604052610378600a556008600b5566071afd498d0000600c556032600d556040518060800160405280604381526020016200328a60439139600f9080519060200190620000509291906200036f565b503480156200005e57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f50657065206f6620476c697463680000000000000000000000000000000000008152506040518060400160405280600381526020017f504f4700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fa9291906200036f565b508060039080519060200190620001139291906200036f565b50620001246200036a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000321578015620001e7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ad9291906200044d565b600060405180830381600087803b158015620001c857600080fd5b505af1158015620001dd573d6000803e3d6000fd5b5050505062000320565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002679291906200044d565b600060405180830381600087803b1580156200028257600080fd5b505af115801562000297573d6000803e3d6000fd5b505050506200031f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ea919062000430565b600060405180830381600087803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050505b5b5b505033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000513565b600090565b8280546200037d90620004ae565b90600052602060002090601f016020900481019282620003a15760008555620003ed565b82601f10620003bc57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ec578251825591602001919060010190620003cf565b5b509050620003fc919062000400565b5090565b5b808211156200041b57600081600090555060010162000401565b5090565b6200042a816200047a565b82525050565b60006020820190506200044760008301846200041f565b92915050565b60006040820190506200046460008301856200041f565b6200047360208301846200041f565b9392505050565b600062000487826200048e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004c757607f821691505b60208210811415620004de57620004dd620004e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612d6780620005236000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bad0ba6f14610479578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f968adbe146105475761014b565b806370a082311461035c57806395d89b41146103995780639b642de1146103c4578063a035b1fe146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806329ee566c1161010857806329ee566c146102585780632a55205a146102835780633ccfd60b146102c157806341f43434146102d857806342842e0e146103035780636352211e1461031f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612393565b610572565b604051610184919061276f565b60405180910390f35b34801561019957600080fd5b506101a2610604565b6040516101af91906127a5565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612476565b610696565b6040516101ec91906126b6565b60405180910390f35b61020f600480360381019061020a9190612326565b610715565b005b34801561021d57600080fd5b5061022661082e565b60405161023391906127e7565b60405180910390f35b61025660048036038101906102519190612210565b610845565b005b34801561026457600080fd5b5061026d6109a5565b60405161027a91906127e7565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a591906124a3565b6109ab565b6040516102b8929190612746565b60405180910390f35b3480156102cd57600080fd5b506102d66109fd565b005b3480156102e457600080fd5b506102ed610aa0565b6040516102fa919061278a565b60405180910390f35b61031d60048036038101906103189190612210565b610ab2565b005b34801561032b57600080fd5b5061034660048036038101906103419190612476565b610c12565b60405161035391906126b6565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906121a3565b610c24565b60405161039091906127e7565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb91906127a5565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906123ed565b610d6f565b005b3480156103f957600080fd5b50610402610de3565b60405161040f91906127e7565b60405180910390f35b610432600480360381019061042d9190612476565b610de9565b005b34801561044057600080fd5b5061045b600480360381019061045691906122e6565b610e25565b005b61047760048036038101906104729190612263565b610f3e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612436565b6110a1565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612476565b61116e565b6040516104d691906127a5565b60405180910390f35b3480156104eb57600080fd5b506104f46111a2565b60405161050191906127e7565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906121d0565b6111a8565b60405161053e919061276f565b60405180910390f35b34801561055357600080fd5b5061055c61123c565b60405161056991906127e7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461061390612b28565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612b28565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a182611242565b6106d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561081f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161078d9291906126d1565b60206040518083038186803b1580156107a557600080fd5b505afa1580156107b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dd9190612366565b61081e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161081591906126b6565b60405180910390fd5b5b61082983836112a1565b505050565b60006108386113e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b8576108b38484846113ea565b61099f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109019291906126d1565b60206040518083038186803b15801561091957600080fd5b505afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612366565b61099257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161098991906126b6565b60405180910390fd5b5b61099e8484846113ea565b5b50505050565b600d5481565b60008060006103e8600d54856109c191906129a0565b6109cb919061296f565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9d573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b2557610b2084848461170f565b610c0c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b6e9291906126d1565b60206040518083038186803b158015610b8657600080fd5b505afa158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190612366565b610bff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bf691906126b6565b60405180910390fd5b5b610c0b84848461170f565b5b50505050565b6000610c1d8261172f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610cec90612b28565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612b28565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc957600080fd5b80600f9080519060200190610ddf929190611f8d565b5050565b600c5481565b600a5481610df561082e565b610dff9190612919565b1115610e0a57600080fd5b600b54811115610e1957600080fd5b610e22816117fd565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f2f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9d9291906126d1565b60206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190612366565b610f2e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f2591906126b6565b60405180910390fd5b5b610f3983836118f3565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb257610fad858585856119fe565b61109a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffb9291906126d1565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190612366565b61108c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161108391906126b6565b60405180910390fd5b5b611099858585856119fe565b5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fb57600080fd5b600061110561082e565b9050600a54838261111691906128e1565b61ffff16111561115b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611152906127c7565b60405180910390fd5b611169828461ffff16611a71565b505050565b6060600f61117b83611a8f565b60405160200161118c929190612687565b6040516020818303038152906040529050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b60008161124d6113e5565b1115801561125c575060005482105b801561129a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006112ac82610c12565b90508073ffffffffffffffffffffffffffffffffffffffff166112cd611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611330576112f9816112f4611ae8565b6111a8565b61132f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f58261172f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146884611af0565b9150915061147e8187611479611ae8565b611b17565b6114ca576114938661148e611ae8565b6111a8565b6114c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611531576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153e8686866001611b5b565b801561154957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611617856115f3888887611b61565b7c020000000000000000000000000000000000000000000000000000000017611b89565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561169f57600060018501905060006004600083815260200190815260200160002054141561169d57600054811461169c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117078686866001611bb4565b505050505050565b61172a83838360405180602001604052806000815250610f3e565b505050565b6000808290508061173e6113e5565b116117c6576000548110156117c55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c3575b60008114156117b957600460008360019003935083815260200190815260200160002054905061178e565b80925050506117f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461183557600080fd5b60003414156118cb576000600c61184a61082e565b600a5461185791906129fa565b611861919061296f565b905080600160086000438152602001908152602001600020546118849190612919565b111561188f57600080fd5b60016008600043815260200190815260200160002060008282546118b39190612919565b925050819055506118c5336001611a71565b506118f0565b600c54816118d991906129a0565b3410156118e557600080fd5b6118ef3382611a71565b5b50565b8060076000611900611ae8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f2919061276f565b60405180910390a35050565b611a09848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6b57611a3484848484611bba565b611a6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a8b828260405180602001604052806000815250611d1a565b5050565b606060a060405101806040526020810391506000825281835b600115611ad357600184039350600a81066030018453600a8104905080611ace57611ad3565b611aa8565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b78868684611db7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be0611ae8565b8786866040518563ffffffff1660e01b8152600401611c0294939291906126fa565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4d57506040513d601f19601f82011682018060405250810190611c4a91906123c0565b60015b611cc7573d8060008114611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b50600081511415611cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d248383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db257600080549050600083820390505b611d646000868380600101945086611bba565b611d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d51578160005414611daf57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611e01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0e6000848385611b5b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e8583611e766000866000611b61565b611e7f85611f7d565b17611b89565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eeb565b506000821415611f62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f786000848385611bb4565b505050565b60006001821460e11b9050919050565b828054611f9990612b28565b90600052602060002090601f016020900481019282611fbb5760008555612002565b82601f10611fd457805160ff1916838001178555612002565b82800160010185558215612002579182015b82811115612001578251825591602001919060010190611fe6565b5b50905061200f9190612013565b5090565b5b8082111561202c576000816000905550600101612014565b5090565b600061204361203e84612827565b612802565b90508281526020810184848401111561205f5761205e612c4c565b5b61206a848285612ae6565b509392505050565b600061208561208084612858565b612802565b9050828152602081018484840111156120a1576120a0612c4c565b5b6120ac848285612ae6565b509392505050565b6000813590506120c381612cbe565b92915050565b6000813590506120d881612cd5565b92915050565b6000815190506120ed81612cd5565b92915050565b60008135905061210281612cec565b92915050565b60008151905061211781612cec565b92915050565b600082601f83011261213257612131612c47565b5b8135612142848260208601612030565b91505092915050565b600082601f8301126121605761215f612c47565b5b8135612170848260208601612072565b91505092915050565b60008135905061218881612d03565b92915050565b60008135905061219d81612d1a565b92915050565b6000602082840312156121b9576121b8612c56565b5b60006121c7848285016120b4565b91505092915050565b600080604083850312156121e7576121e6612c56565b5b60006121f5858286016120b4565b9250506020612206858286016120b4565b9150509250929050565b60008060006060848603121561222957612228612c56565b5b6000612237868287016120b4565b9350506020612248868287016120b4565b92505060406122598682870161218e565b9150509250925092565b6000806000806080858703121561227d5761227c612c56565b5b600061228b878288016120b4565b945050602061229c878288016120b4565b93505060406122ad8782880161218e565b925050606085013567ffffffffffffffff8111156122ce576122cd612c51565b5b6122da8782880161211d565b91505092959194509250565b600080604083850312156122fd576122fc612c56565b5b600061230b858286016120b4565b925050602061231c858286016120c9565b9150509250929050565b6000806040838503121561233d5761233c612c56565b5b600061234b858286016120b4565b925050602061235c8582860161218e565b9150509250929050565b60006020828403121561237c5761237b612c56565b5b600061238a848285016120de565b91505092915050565b6000602082840312156123a9576123a8612c56565b5b60006123b7848285016120f3565b91505092915050565b6000602082840312156123d6576123d5612c56565b5b60006123e484828501612108565b91505092915050565b60006020828403121561240357612402612c56565b5b600082013567ffffffffffffffff81111561242157612420612c51565b5b61242d8482850161214b565b91505092915050565b6000806040838503121561244d5761244c612c56565b5b600061245b85828601612179565b925050602061246c858286016120b4565b9150509250929050565b60006020828403121561248c5761248b612c56565b5b600061249a8482850161218e565b91505092915050565b600080604083850312156124ba576124b9612c56565b5b60006124c88582860161218e565b92505060206124d98582860161218e565b9150509250929050565b6124ec81612a2e565b82525050565b6124fb81612a40565b82525050565b600061250c8261289e565b61251681856128b4565b9350612526818560208601612af5565b61252f81612c5b565b840191505092915050565b61254381612ab0565b82525050565b6000612554826128a9565b61255e81856128c5565b935061256e818560208601612af5565b61257781612c5b565b840191505092915050565b600061258d826128a9565b61259781856128d6565b93506125a7818560208601612af5565b80840191505092915050565b600081546125c081612b28565b6125ca81866128d6565b945060018216600081146125e557600181146125f657612629565b60ff19831686528186019350612629565b6125ff85612889565b60005b8381101561262157815481890152600182019150602081019050612602565b838801955050505b50505092915050565b600061263f6005836128d6565b915061264a82612c6c565b600582019050919050565b60006126626013836128c5565b915061266d82612c95565b602082019050919050565b61268181612aa6565b82525050565b600061269382856125b3565b915061269f8284612582565b91506126aa82612632565b91508190509392505050565b60006020820190506126cb60008301846124e3565b92915050565b60006040820190506126e660008301856124e3565b6126f360208301846124e3565b9392505050565b600060808201905061270f60008301876124e3565b61271c60208301866124e3565b6127296040830185612678565b818103606083015261273b8184612501565b905095945050505050565b600060408201905061275b60008301856124e3565b6127686020830184612678565b9392505050565b600060208201905061278460008301846124f2565b92915050565b600060208201905061279f600083018461253a565b92915050565b600060208201905081810360008301526127bf8184612549565b905092915050565b600060208201905081810360008301526127e081612655565b9050919050565b60006020820190506127fc6000830184612678565b92915050565b600061280c61281d565b90506128188282612b5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561284257612841612c18565b5b61284b82612c5b565b9050602081019050919050565b600067ffffffffffffffff82111561287357612872612c18565b5b61287c82612c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ec82612a78565b91506128f783612a78565b92508261ffff0382111561290e5761290d612b8b565b5b828201905092915050565b600061292482612aa6565b915061292f83612aa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296457612963612b8b565b5b828201905092915050565b600061297a82612aa6565b915061298583612aa6565b92508261299557612994612bba565b5b828204905092915050565b60006129ab82612aa6565b91506129b683612aa6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129ef576129ee612b8b565b5b828202905092915050565b6000612a0582612aa6565b9150612a1083612aa6565b925082821015612a2357612a22612b8b565b5b828203905092915050565b6000612a3982612a86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612abb82612ac2565b9050919050565b6000612acd82612ad4565b9050919050565b6000612adf82612a86565b9050919050565b82818337600083830152505050565b60005b83811015612b13578082015181840152602081019050612af8565b83811115612b22576000848401525b50505050565b60006002820490506001821680612b4057607f821691505b60208210811415612b5457612b53612be9565b5b50919050565b612b6382612c5b565b810181811067ffffffffffffffff82111715612b8257612b81612c18565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b612cc781612a2e565b8114612cd257600080fd5b50565b612cde81612a40565b8114612ce957600080fd5b50565b612cf581612a4c565b8114612d0057600080fd5b50565b612d0c81612a78565b8114612d1757600080fd5b50565b612d2381612aa6565b8114612d2e57600080fd5b5056fea264697066735822122024c1cc218ecfbcfed032dc6e35030c6925b99b1a933fa48c9c1848ce8a0f6fa564736f6c63430008070033697066733a2f2f626166796265696132373764716c6b3677686a627578657875356a6b7474616f6c6b656535736d71687867376f6c6837686565326d77706d776c752f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bad0ba6f14610479578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f968adbe146105475761014b565b806370a082311461035c57806395d89b41146103995780639b642de1146103c4578063a035b1fe146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806329ee566c1161010857806329ee566c146102585780632a55205a146102835780633ccfd60b146102c157806341f43434146102d857806342842e0e146103035780636352211e1461031f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612393565b610572565b604051610184919061276f565b60405180910390f35b34801561019957600080fd5b506101a2610604565b6040516101af91906127a5565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612476565b610696565b6040516101ec91906126b6565b60405180910390f35b61020f600480360381019061020a9190612326565b610715565b005b34801561021d57600080fd5b5061022661082e565b60405161023391906127e7565b60405180910390f35b61025660048036038101906102519190612210565b610845565b005b34801561026457600080fd5b5061026d6109a5565b60405161027a91906127e7565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a591906124a3565b6109ab565b6040516102b8929190612746565b60405180910390f35b3480156102cd57600080fd5b506102d66109fd565b005b3480156102e457600080fd5b506102ed610aa0565b6040516102fa919061278a565b60405180910390f35b61031d60048036038101906103189190612210565b610ab2565b005b34801561032b57600080fd5b5061034660048036038101906103419190612476565b610c12565b60405161035391906126b6565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906121a3565b610c24565b60405161039091906127e7565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb91906127a5565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906123ed565b610d6f565b005b3480156103f957600080fd5b50610402610de3565b60405161040f91906127e7565b60405180910390f35b610432600480360381019061042d9190612476565b610de9565b005b34801561044057600080fd5b5061045b600480360381019061045691906122e6565b610e25565b005b61047760048036038101906104729190612263565b610f3e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612436565b6110a1565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612476565b61116e565b6040516104d691906127a5565b60405180910390f35b3480156104eb57600080fd5b506104f46111a2565b60405161050191906127e7565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906121d0565b6111a8565b60405161053e919061276f565b60405180910390f35b34801561055357600080fd5b5061055c61123c565b60405161056991906127e7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461061390612b28565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612b28565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a182611242565b6106d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561081f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161078d9291906126d1565b60206040518083038186803b1580156107a557600080fd5b505afa1580156107b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dd9190612366565b61081e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161081591906126b6565b60405180910390fd5b5b61082983836112a1565b505050565b60006108386113e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b8576108b38484846113ea565b61099f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109019291906126d1565b60206040518083038186803b15801561091957600080fd5b505afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612366565b61099257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161098991906126b6565b60405180910390fd5b5b61099e8484846113ea565b5b50505050565b600d5481565b60008060006103e8600d54856109c191906129a0565b6109cb919061296f565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9d573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b2557610b2084848461170f565b610c0c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b6e9291906126d1565b60206040518083038186803b158015610b8657600080fd5b505afa158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190612366565b610bff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bf691906126b6565b60405180910390fd5b5b610c0b84848461170f565b5b50505050565b6000610c1d8261172f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610cec90612b28565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612b28565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc957600080fd5b80600f9080519060200190610ddf929190611f8d565b5050565b600c5481565b600a5481610df561082e565b610dff9190612919565b1115610e0a57600080fd5b600b54811115610e1957600080fd5b610e22816117fd565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f2f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9d9291906126d1565b60206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190612366565b610f2e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f2591906126b6565b60405180910390fd5b5b610f3983836118f3565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb257610fad858585856119fe565b61109a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffb9291906126d1565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190612366565b61108c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161108391906126b6565b60405180910390fd5b5b611099858585856119fe565b5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fb57600080fd5b600061110561082e565b9050600a54838261111691906128e1565b61ffff16111561115b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611152906127c7565b60405180910390fd5b611169828461ffff16611a71565b505050565b6060600f61117b83611a8f565b60405160200161118c929190612687565b6040516020818303038152906040529050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b60008161124d6113e5565b1115801561125c575060005482105b801561129a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006112ac82610c12565b90508073ffffffffffffffffffffffffffffffffffffffff166112cd611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611330576112f9816112f4611ae8565b6111a8565b61132f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f58261172f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146884611af0565b9150915061147e8187611479611ae8565b611b17565b6114ca576114938661148e611ae8565b6111a8565b6114c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611531576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153e8686866001611b5b565b801561154957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611617856115f3888887611b61565b7c020000000000000000000000000000000000000000000000000000000017611b89565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561169f57600060018501905060006004600083815260200190815260200160002054141561169d57600054811461169c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117078686866001611bb4565b505050505050565b61172a83838360405180602001604052806000815250610f3e565b505050565b6000808290508061173e6113e5565b116117c6576000548110156117c55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c3575b60008114156117b957600460008360019003935083815260200190815260200160002054905061178e565b80925050506117f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461183557600080fd5b60003414156118cb576000600c61184a61082e565b600a5461185791906129fa565b611861919061296f565b905080600160086000438152602001908152602001600020546118849190612919565b111561188f57600080fd5b60016008600043815260200190815260200160002060008282546118b39190612919565b925050819055506118c5336001611a71565b506118f0565b600c54816118d991906129a0565b3410156118e557600080fd5b6118ef3382611a71565b5b50565b8060076000611900611ae8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f2919061276f565b60405180910390a35050565b611a09848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6b57611a3484848484611bba565b611a6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a8b828260405180602001604052806000815250611d1a565b5050565b606060a060405101806040526020810391506000825281835b600115611ad357600184039350600a81066030018453600a8104905080611ace57611ad3565b611aa8565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b78868684611db7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be0611ae8565b8786866040518563ffffffff1660e01b8152600401611c0294939291906126fa565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4d57506040513d601f19601f82011682018060405250810190611c4a91906123c0565b60015b611cc7573d8060008114611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b50600081511415611cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d248383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db257600080549050600083820390505b611d646000868380600101945086611bba565b611d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d51578160005414611daf57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611e01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0e6000848385611b5b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e8583611e766000866000611b61565b611e7f85611f7d565b17611b89565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eeb565b506000821415611f62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f786000848385611bb4565b505050565b60006001821460e11b9050919050565b828054611f9990612b28565b90600052602060002090601f016020900481019282611fbb5760008555612002565b82601f10611fd457805160ff1916838001178555612002565b82800160010185558215612002579182015b82811115612001578251825591602001919060010190611fe6565b5b50905061200f9190612013565b5090565b5b8082111561202c576000816000905550600101612014565b5090565b600061204361203e84612827565b612802565b90508281526020810184848401111561205f5761205e612c4c565b5b61206a848285612ae6565b509392505050565b600061208561208084612858565b612802565b9050828152602081018484840111156120a1576120a0612c4c565b5b6120ac848285612ae6565b509392505050565b6000813590506120c381612cbe565b92915050565b6000813590506120d881612cd5565b92915050565b6000815190506120ed81612cd5565b92915050565b60008135905061210281612cec565b92915050565b60008151905061211781612cec565b92915050565b600082601f83011261213257612131612c47565b5b8135612142848260208601612030565b91505092915050565b600082601f8301126121605761215f612c47565b5b8135612170848260208601612072565b91505092915050565b60008135905061218881612d03565b92915050565b60008135905061219d81612d1a565b92915050565b6000602082840312156121b9576121b8612c56565b5b60006121c7848285016120b4565b91505092915050565b600080604083850312156121e7576121e6612c56565b5b60006121f5858286016120b4565b9250506020612206858286016120b4565b9150509250929050565b60008060006060848603121561222957612228612c56565b5b6000612237868287016120b4565b9350506020612248868287016120b4565b92505060406122598682870161218e565b9150509250925092565b6000806000806080858703121561227d5761227c612c56565b5b600061228b878288016120b4565b945050602061229c878288016120b4565b93505060406122ad8782880161218e565b925050606085013567ffffffffffffffff8111156122ce576122cd612c51565b5b6122da8782880161211d565b91505092959194509250565b600080604083850312156122fd576122fc612c56565b5b600061230b858286016120b4565b925050602061231c858286016120c9565b9150509250929050565b6000806040838503121561233d5761233c612c56565b5b600061234b858286016120b4565b925050602061235c8582860161218e565b9150509250929050565b60006020828403121561237c5761237b612c56565b5b600061238a848285016120de565b91505092915050565b6000602082840312156123a9576123a8612c56565b5b60006123b7848285016120f3565b91505092915050565b6000602082840312156123d6576123d5612c56565b5b60006123e484828501612108565b91505092915050565b60006020828403121561240357612402612c56565b5b600082013567ffffffffffffffff81111561242157612420612c51565b5b61242d8482850161214b565b91505092915050565b6000806040838503121561244d5761244c612c56565b5b600061245b85828601612179565b925050602061246c858286016120b4565b9150509250929050565b60006020828403121561248c5761248b612c56565b5b600061249a8482850161218e565b91505092915050565b600080604083850312156124ba576124b9612c56565b5b60006124c88582860161218e565b92505060206124d98582860161218e565b9150509250929050565b6124ec81612a2e565b82525050565b6124fb81612a40565b82525050565b600061250c8261289e565b61251681856128b4565b9350612526818560208601612af5565b61252f81612c5b565b840191505092915050565b61254381612ab0565b82525050565b6000612554826128a9565b61255e81856128c5565b935061256e818560208601612af5565b61257781612c5b565b840191505092915050565b600061258d826128a9565b61259781856128d6565b93506125a7818560208601612af5565b80840191505092915050565b600081546125c081612b28565b6125ca81866128d6565b945060018216600081146125e557600181146125f657612629565b60ff19831686528186019350612629565b6125ff85612889565b60005b8381101561262157815481890152600182019150602081019050612602565b838801955050505b50505092915050565b600061263f6005836128d6565b915061264a82612c6c565b600582019050919050565b60006126626013836128c5565b915061266d82612c95565b602082019050919050565b61268181612aa6565b82525050565b600061269382856125b3565b915061269f8284612582565b91506126aa82612632565b91508190509392505050565b60006020820190506126cb60008301846124e3565b92915050565b60006040820190506126e660008301856124e3565b6126f360208301846124e3565b9392505050565b600060808201905061270f60008301876124e3565b61271c60208301866124e3565b6127296040830185612678565b818103606083015261273b8184612501565b905095945050505050565b600060408201905061275b60008301856124e3565b6127686020830184612678565b9392505050565b600060208201905061278460008301846124f2565b92915050565b600060208201905061279f600083018461253a565b92915050565b600060208201905081810360008301526127bf8184612549565b905092915050565b600060208201905081810360008301526127e081612655565b9050919050565b60006020820190506127fc6000830184612678565b92915050565b600061280c61281d565b90506128188282612b5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561284257612841612c18565b5b61284b82612c5b565b9050602081019050919050565b600067ffffffffffffffff82111561287357612872612c18565b5b61287c82612c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ec82612a78565b91506128f783612a78565b92508261ffff0382111561290e5761290d612b8b565b5b828201905092915050565b600061292482612aa6565b915061292f83612aa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296457612963612b8b565b5b828201905092915050565b600061297a82612aa6565b915061298583612aa6565b92508261299557612994612bba565b5b828204905092915050565b60006129ab82612aa6565b91506129b683612aa6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129ef576129ee612b8b565b5b828202905092915050565b6000612a0582612aa6565b9150612a1083612aa6565b925082821015612a2357612a22612b8b565b5b828203905092915050565b6000612a3982612a86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612abb82612ac2565b9050919050565b6000612acd82612ad4565b9050919050565b6000612adf82612a86565b9050919050565b82818337600083830152505050565b60005b83811015612b13578082015181840152602081019050612af8565b83811115612b22576000848401525b50505050565b60006002820490506001821680612b4057607f821691505b60208210811415612b5457612b53612be9565b5b50919050565b612b6382612c5b565b810181811067ffffffffffffffff82111715612b8257612b81612c18565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b612cc781612a2e565b8114612cd257600080fd5b50565b612cde81612a40565b8114612ce957600080fd5b50565b612cf581612a4c565b8114612d0057600080fd5b50565b612d0c81612a78565b8114612d1757600080fd5b50565b612d2381612aa6565b8114612d2e57600080fd5b5056fea264697066735822122024c1cc218ecfbcfed032dc6e35030c6925b99b1a933fa48c9c1848ce8a0f6fa564736f6c63430008070033

Deployed Bytecode Sourcemap

58683:3103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20283:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27676:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60999:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16936:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61172:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58956:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60300:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;60698:109;;;;;;;;;;;;;:::i;:::-;;56052:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61351:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22578:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18120:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21361:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59278:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58913:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59011:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60815:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61538:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60030:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60526:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58834:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28625:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58873:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20283:639;20368:4;20707:10;20692:25;;:11;:25;;;;:102;;;;20784:10;20769:25;;:11;:25;;;;20692:102;:179;;;;20861:10;20846:25;;:11;:25;;;;20692:179;20672:199;;20283:639;;;:::o;21185:100::-;21239:13;21272:5;21265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21185:100;:::o;27676:218::-;27752:7;27777:16;27785:7;27777;:16::i;:::-;27772:64;;27802:34;;;;;;;;;;;;;;27772:64;27856:15;:24;27872:7;27856:24;;;;;;;;;;;:30;;;;;;;;;;;;27849:37;;27676:218;;;:::o;60999:165::-;61103:8;58094:1;56152:42;58046:45;;;:49;58042:225;;;56152:42;58117;;;58168:4;58175:8;58117:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58112:144;;58231:8;58212:28;;;;;;;;;;;:::i;:::-;;;;;;;;58112:144;58042:225;61124:32:::1;61138:8;61148:7;61124:13;:32::i;:::-;60999:165:::0;;;:::o;16936:323::-;16997:7;17225:15;:13;:15::i;:::-;17210:12;;17194:13;;:28;:46;17187:53;;16936:323;:::o;61172:171::-;61281:4;57348:1;56152:42;57300:45;;;:49;57296:539;;;57589:10;57581:18;;:4;:18;;;57577:85;;;61298:37:::1;61317:4;61323:2;61327:7;61298:18;:37::i;:::-;57640:7:::0;;57577:85;56152:42;57681;;;57732:4;57739:10;57681:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57676:148;;57797:10;57778:30;;;;;;;;;;;:::i;:::-;;;;;;;;57676:148;57296:539;61298:37:::1;61317:4;61323:2;61327:7;61298:18;:37::i;:::-;61172:171:::0;;;;;:::o;58956:27::-;;;;:::o;60300:218::-;60388:7;60397;60417:21;60466:4;60455:7;;60442:10;:20;;;;:::i;:::-;60441:29;;;;:::i;:::-;60417:53;;60489:5;;;;;;;;;;;60496:13;60481:29;;;;;60300:218;;;;;:::o;60698:109::-;59437:10;59428:19;;:5;;;;;;;;;;;:19;;;59420:28;;;;;;60756:10:::1;60748:28;;:51;60777:21;60748:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60698:109::o:0;56052:143::-;56152:42;56052:143;:::o;61351:179::-;61464:4;57348:1;56152:42;57300:45;;;:49;57296:539;;;57589:10;57581:18;;:4;:18;;;57577:85;;;61481:41:::1;61504:4;61510:2;61514:7;61481:22;:41::i;:::-;57640:7:::0;;57577:85;56152:42;57681;;;57732:4;57739:10;57681:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57676:148;;57797:10;57778:30;;;;;;;;;;;:::i;:::-;;;;;;;;57676:148;57296:539;61481:41:::1;61504:4;61510:2;61514:7;61481:22;:41::i;:::-;61351:179:::0;;;;;:::o;22578:152::-;22650:7;22693:27;22712:7;22693:18;:27::i;:::-;22670:52;;22578:152;;;:::o;18120:233::-;18192:7;18233:1;18216:19;;:5;:19;;;18212:60;;;18244:28;;;;;;;;;;;;;;18212:60;12279:13;18290:18;:25;18309:5;18290:25;;;;;;;;;;;;;;;;:55;18283:62;;18120:233;;;:::o;21361:104::-;21417:13;21450:7;21443:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21361:104;:::o;59278:84::-;59437:10;59428:19;;:5;;;;;;;;;;;:19;;;59420:28;;;;;;59350:4:::1;59344:3;:10;;;;;;;;;;;;:::i;:::-;;59278:84:::0;:::o;58913:34::-;;;;:::o;59011:170::-;59101:9;;59091:6;59075:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59067:44;;;;;;59140:8;;59130:6;:18;;59122:27;;;;;;59160:13;59166:6;59160:5;:13::i;:::-;59011:170;:::o;60815:176::-;60919:8;58094:1;56152:42;58046:45;;;:49;58042:225;;;56152:42;58117;;;58168:4;58175:8;58117:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58112:144;;58231:8;58212:28;;;;;;;;;;;:::i;:::-;;;;;;;;58112:144;58042:225;60940:43:::1;60964:8;60974;60940:23;:43::i;:::-;60815:176:::0;;;:::o;61538:245::-;61706:4;57348:1;56152:42;57300:45;;;:49;57296:539;;;57589:10;57581:18;;:4;:18;;;57577:85;;;61728:47:::1;61751:4;61757:2;61761:7;61770:4;61728:22;:47::i;:::-;57640:7:::0;;57577:85;56152:42;57681;;;57732:4;57739:10;57681:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57676:148;;57797:10;57778:30;;;;;;;;;;;:::i;:::-;;;;;;;;57676:148;57296:539;61728:47:::1;61751:4;61757:2;61761:7;61770:4;61728:22;:47::i;:::-;61538:245:::0;;;;;;:::o;60030:262::-;59437:10;59428:19;;:5;;;;;;;;;;;:19;;;59420:28;;;;;;60116:18:::1;60144:13;:11;:13::i;:::-;60116:42;;60206:9;;60191:11;60177;:25;;;;:::i;:::-;:38;;;;60169:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;60250:34;60260:9;60272:11;60250:34;;:9;:34::i;:::-;60105:187;60030:262:::0;;:::o;60526:164::-;60591:13;60648:3;60653:18;60663:7;60653:9;:18::i;:::-;60631:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60617:65;;60526:164;;;:::o;58834:30::-;;;;:::o;28625:164::-;28722:4;28746:18;:25;28765:5;28746:25;;;;;;;;;;;;;;;:35;28772:8;28746:35;;;;;;;;;;;;;;;;;;;;;;;;;28739:42;;28625:164;;;;:::o;58873:27::-;;;;:::o;29047:282::-;29112:4;29168:7;29149:15;:13;:15::i;:::-;:26;;:66;;;;;29202:13;;29192:7;:23;29149:66;:153;;;;;29301:1;13055:8;29253:17;:26;29271:7;29253:26;;;;;;;;;;;;:44;:49;29149:153;29129:173;;29047:282;;;:::o;27109:408::-;27198:13;27214:16;27222:7;27214;:16::i;:::-;27198:32;;27270:5;27247:28;;:19;:17;:19::i;:::-;:28;;;27243:175;;27295:44;27312:5;27319:19;:17;:19::i;:::-;27295:16;:44::i;:::-;27290:128;;27367:35;;;;;;;;;;;;;;27290:128;27243:175;27463:2;27430:15;:24;27446:7;27430:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27501:7;27497:2;27481:28;;27490:5;27481:28;;;;;;;;;;;;27187:330;27109:408;;:::o;16452:92::-;16508:7;16452:92;:::o;31315:2825::-;31457:27;31487;31506:7;31487:18;:27::i;:::-;31457:57;;31572:4;31531:45;;31547:19;31531:45;;;31527:86;;31585:28;;;;;;;;;;;;;;31527:86;31627:27;31656:23;31683:35;31710:7;31683:26;:35::i;:::-;31626:92;;;;31818:68;31843:15;31860:4;31866:19;:17;:19::i;:::-;31818:24;:68::i;:::-;31813:180;;31906:43;31923:4;31929:19;:17;:19::i;:::-;31906:16;:43::i;:::-;31901:92;;31958:35;;;;;;;;;;;;;;31901:92;31813:180;32024:1;32010:16;;:2;:16;;;32006:52;;;32035:23;;;;;;;;;;;;;;32006:52;32071:43;32093:4;32099:2;32103:7;32112:1;32071:21;:43::i;:::-;32207:15;32204:160;;;32347:1;32326:19;32319:30;32204:160;32744:18;:24;32763:4;32744:24;;;;;;;;;;;;;;;;32742:26;;;;;;;;;;;;32813:18;:22;32832:2;32813:22;;;;;;;;;;;;;;;;32811:24;;;;;;;;;;;33135:146;33172:2;33221:45;33236:4;33242:2;33246:19;33221:14;:45::i;:::-;13335:8;33193:73;33135:18;:146::i;:::-;33106:17;:26;33124:7;33106:26;;;;;;;;;;;:175;;;;33452:1;13335:8;33401:19;:47;:52;33397:627;;;33474:19;33506:1;33496:7;:11;33474:33;;33663:1;33629:17;:30;33647:11;33629:30;;;;;;;;;;;;:35;33625:384;;;33767:13;;33752:11;:28;33748:242;;33947:19;33914:17;:30;33932:11;33914:30;;;;;;;;;;;:52;;;;33748:242;33625:384;33455:569;33397:627;34071:7;34067:2;34052:27;;34061:4;34052:27;;;;;;;;;;;;34090:42;34111:4;34117:2;34121:7;34130:1;34090:20;:42::i;:::-;31446:2694;;;31315:2825;;;:::o;34236:193::-;34382:39;34399:4;34405:2;34409:7;34382:39;;;;;;;;;;;;:16;:39::i;:::-;34236:193;;;:::o;23733:1275::-;23800:7;23820:12;23835:7;23820:22;;23903:4;23884:15;:13;:15::i;:::-;:23;23880:1061;;23937:13;;23930:4;:20;23926:1015;;;23975:14;23992:17;:23;24010:4;23992:23;;;;;;;;;;;;23975:40;;24109:1;13055:8;24081:6;:24;:29;24077:845;;;24746:113;24763:1;24753:6;:11;24746:113;;;24806:17;:25;24824:6;;;;;;;24806:25;;;;;;;;;;;;24797:34;;24746:113;;;24892:6;24885:13;;;;;;24077:845;23952:989;23926:1015;23880:1061;24969:31;;;;;;;;;;;;;;23733:1275;;;;:::o;59572:450::-;59645:9;59631:23;;:10;:23;;;59623:32;;;;;;59683:1;59670:9;:14;59666:262;;;59701:15;59749:2;59732:13;:11;:13::i;:::-;59720:9;;:25;;;;:::i;:::-;59719:32;;;;:::i;:::-;59701:50;;59805:7;59800:1;59774:9;:23;59784:12;59774:23;;;;;;;;;;;;:27;;;;:::i;:::-;:38;;59766:47;;;;;;59855:1;59828:9;:23;59838:12;59828:23;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;59871:24;59881:10;59893:1;59871:9;:24::i;:::-;59910:7;;;59666:262;59968:5;;59959:6;:14;;;;:::i;:::-;59946:9;:27;;59938:36;;;;;;59985:29;59995:10;60007:6;59985:9;:29::i;:::-;59572:450;;:::o;28234:234::-;28381:8;28329:18;:39;28348:19;:17;:19::i;:::-;28329:39;;;;;;;;;;;;;;;:49;28369:8;28329:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28441:8;28405:55;;28420:19;:17;:19::i;:::-;28405:55;;;28451:8;28405:55;;;;;;:::i;:::-;;;;;;;;28234:234;;:::o;35027:407::-;35202:31;35215:4;35221:2;35225:7;35202:12;:31::i;:::-;35266:1;35248:2;:14;;;:19;35244:183;;35287:56;35318:4;35324:2;35328:7;35337:5;35287:30;:56::i;:::-;35282:145;;35371:40;;;;;;;;;;;;;;35282:145;35244:183;35027:407;;;;:::o;45187:112::-;45264:27;45274:2;45278:8;45264:27;;;;;;;;;;;;:9;:27::i;:::-;45187:112;;:::o;51562:1745::-;51627:17;52061:4;52054;52048:11;52044:22;52153:1;52147:4;52140:15;52228:4;52225:1;52221:12;52214:19;;52310:1;52305:3;52298:14;52414:3;52653:5;52635:428;52661:1;52635:428;;;52701:1;52696:3;52692:11;52685:18;;52872:2;52866:4;52862:13;52858:2;52854:22;52849:3;52841:36;52966:2;52960:4;52956:13;52948:21;;53033:4;53023:25;;53041:5;;53023:25;52635:428;;;52639:21;53102:3;53097;53093:13;53217:4;53212:3;53208:14;53201:21;;53282:6;53277:3;53270:19;51666:1634;;;51562:1745;;;:::o;51355:105::-;51415:7;51442:10;51435:17;;51355:105;:::o;30210:485::-;30312:27;30341:23;30382:38;30423:15;:24;30439:7;30423:24;;;;;;;;;;;30382:65;;30600:18;30577:41;;30657:19;30651:26;30632:45;;30562:126;30210:485;;;:::o;29438:659::-;29587:11;29752:16;29745:5;29741:28;29732:37;;29912:16;29901:9;29897:32;29884:45;;30062:15;30051:9;30048:30;30040:5;30029:9;30026:20;30023:56;30013:66;;29438:659;;;;;:::o;36096:159::-;;;;;:::o;50664:311::-;50799:7;50819:16;13459:3;50845:19;:41;;50819:68;;13459:3;50913:31;50924:4;50930:2;50934:9;50913:10;:31::i;:::-;50905:40;;:62;;50898:69;;;50664:311;;;;;:::o;25556:450::-;25636:14;25804:16;25797:5;25793:28;25784:37;;25981:5;25967:11;25942:23;25938:41;25935:52;25928:5;25925:63;25915:73;;25556:450;;;;:::o;36920:158::-;;;;;:::o;37518:716::-;37681:4;37727:2;37702:45;;;37748:19;:17;:19::i;:::-;37769:4;37775:7;37784:5;37702:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37698:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38002:1;37985:6;:13;:18;37981:235;;;38031:40;;;;;;;;;;;;;;37981:235;38174:6;38168:13;38159:6;38155:2;38151:15;38144:38;37698:529;37871:54;;;37861:64;;;:6;:64;;;;37854:71;;;37518:716;;;;;;:::o;44414:689::-;44545:19;44551:2;44555:8;44545:5;:19::i;:::-;44624:1;44606:2;:14;;;:19;44602:483;;44646:11;44660:13;;44646:27;;44692:13;44714:8;44708:3;:14;44692:30;;44741:233;44772:62;44811:1;44815:2;44819:7;;;;;;44828:5;44772:30;:62::i;:::-;44767:167;;44870:40;;;;;;;;;;;;;;44767:167;44969:3;44961:5;:11;44741:233;;45056:3;45039:13;;:20;45035:34;;45061:8;;;45035:34;44627:458;;44602:483;44414:689;;;:::o;50365:147::-;50502:6;50365:147;;;;;:::o;38696:2966::-;38769:20;38792:13;;38769:36;;38832:1;38820:8;:13;38816:44;;;38842:18;;;;;;;;;;;;;;38816:44;38873:61;38903:1;38907:2;38911:12;38925:8;38873:21;:61::i;:::-;39417:1;12417:2;39387:1;:26;;39386:32;39374:8;:45;39348:18;:22;39367:2;39348:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39696:139;39733:2;39787:33;39810:1;39814:2;39818:1;39787:14;:33::i;:::-;39754:30;39775:8;39754:20;:30::i;:::-;:66;39696:18;:139::i;:::-;39662:17;:31;39680:12;39662:31;;;;;;;;;;;:173;;;;39852:16;39883:11;39912:8;39897:12;:23;39883:37;;40433:16;40429:2;40425:25;40413:37;;40805:12;40765:8;40724:1;40662:25;40603:1;40542;40515:335;41176:1;41162:12;41158:20;41116:346;41217:3;41208:7;41205:16;41116:346;;41435:7;41425:8;41422:1;41395:25;41392:1;41389;41384:59;41270:1;41261:7;41257:15;41246:26;;41116:346;;;41120:77;41507:1;41495:8;:13;41491:45;;;41517:19;;;;;;;;;;;;;;41491:45;41569:3;41553:13;:19;;;;39122:2462;;41594:60;41623:1;41627:2;41631:12;41645:8;41594:20;:60::i;:::-;38758:2904;38696:2966;;:::o;26108:324::-;26178:14;26411:1;26401:8;26398:15;26372:24;26368:46;26358:56;;26108: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:400::-;11347:3;11368:84;11450:1;11445:3;11368:84;:::i;:::-;11361:91;;11461:93;11550:3;11461:93;:::i;:::-;11579:1;11574:3;11570:11;11563:18;;11187:400;;;:::o;11593:366::-;11735:3;11756:67;11820:2;11815:3;11756:67;:::i;:::-;11749:74;;11832:93;11921:3;11832:93;:::i;:::-;11950:2;11945:3;11941:12;11934:19;;11593:366;;;:::o;11965:118::-;12052:24;12070:5;12052:24;:::i;:::-;12047:3;12040:37;11965:118;;:::o;12089:695::-;12367:3;12389:92;12477:3;12468:6;12389:92;:::i;:::-;12382:99;;12498:95;12589:3;12580:6;12498:95;:::i;:::-;12491:102;;12610:148;12754:3;12610:148;:::i;:::-;12603:155;;12775:3;12768:10;;12089:695;;;;;:::o;12790:222::-;12883:4;12921:2;12910:9;12906:18;12898:26;;12934:71;13002:1;12991:9;12987:17;12978:6;12934:71;:::i;:::-;12790:222;;;;:::o;13018:332::-;13139:4;13177:2;13166:9;13162:18;13154:26;;13190:71;13258:1;13247:9;13243:17;13234:6;13190:71;:::i;:::-;13271:72;13339:2;13328:9;13324:18;13315:6;13271:72;:::i;:::-;13018:332;;;;;:::o;13356:640::-;13551:4;13589:3;13578:9;13574:19;13566:27;;13603:71;13671:1;13660:9;13656:17;13647:6;13603:71;:::i;:::-;13684:72;13752:2;13741:9;13737:18;13728:6;13684:72;:::i;:::-;13766;13834:2;13823:9;13819:18;13810:6;13766:72;:::i;:::-;13885:9;13879:4;13875:20;13870:2;13859:9;13855:18;13848:48;13913:76;13984:4;13975:6;13913:76;:::i;:::-;13905:84;;13356:640;;;;;;;:::o;14002:332::-;14123:4;14161:2;14150:9;14146:18;14138:26;;14174:71;14242:1;14231:9;14227:17;14218:6;14174:71;:::i;:::-;14255:72;14323:2;14312:9;14308:18;14299:6;14255:72;:::i;:::-;14002:332;;;;;:::o;14340:210::-;14427:4;14465:2;14454:9;14450:18;14442:26;;14478:65;14540:1;14529:9;14525:17;14516:6;14478:65;:::i;:::-;14340:210;;;;:::o;14556:286::-;14681:4;14719:2;14708:9;14704:18;14696:26;;14732:103;14832:1;14821:9;14817:17;14808:6;14732:103;:::i;:::-;14556:286;;;;:::o;14848:313::-;14961:4;14999:2;14988:9;14984:18;14976:26;;15048:9;15042:4;15038:20;15034:1;15023:9;15019:17;15012:47;15076:78;15149:4;15140:6;15076:78;:::i;:::-;15068:86;;14848:313;;;;:::o;15167:419::-;15333:4;15371:2;15360:9;15356:18;15348:26;;15420:9;15414:4;15410:20;15406:1;15395:9;15391:17;15384:47;15448:131;15574:4;15448:131;:::i;:::-;15440:139;;15167:419;;;:::o;15592:222::-;15685:4;15723:2;15712:9;15708:18;15700:26;;15736:71;15804:1;15793:9;15789:17;15780:6;15736:71;:::i;:::-;15592:222;;;;:::o;15820:129::-;15854:6;15881:20;;:::i;:::-;15871:30;;15910:33;15938:4;15930:6;15910:33;:::i;:::-;15820:129;;;:::o;15955:75::-;15988:6;16021:2;16015:9;16005:19;;15955:75;:::o;16036:307::-;16097:4;16187:18;16179:6;16176:30;16173:56;;;16209:18;;:::i;:::-;16173:56;16247:29;16269:6;16247:29;:::i;:::-;16239:37;;16331:4;16325;16321:15;16313:23;;16036:307;;;:::o;16349:308::-;16411:4;16501:18;16493:6;16490:30;16487:56;;;16523:18;;:::i;:::-;16487:56;16561:29;16583:6;16561:29;:::i;:::-;16553:37;;16645:4;16639;16635:15;16627:23;;16349:308;;;:::o;16663:141::-;16712:4;16735:3;16727:11;;16758:3;16755:1;16748:14;16792:4;16789:1;16779:18;16771:26;;16663:141;;;:::o;16810:98::-;16861:6;16895:5;16889:12;16879:22;;16810:98;;;:::o;16914:99::-;16966:6;17000:5;16994:12;16984:22;;16914:99;;;:::o;17019:168::-;17102:11;17136:6;17131:3;17124:19;17176:4;17171:3;17167:14;17152:29;;17019:168;;;;:::o;17193:169::-;17277:11;17311:6;17306:3;17299:19;17351:4;17346:3;17342:14;17327:29;;17193:169;;;;:::o;17368:148::-;17470:11;17507:3;17492:18;;17368:148;;;;:::o;17522:242::-;17561:3;17580:19;17597:1;17580:19;:::i;:::-;17575:24;;17613:19;17630:1;17613:19;:::i;:::-;17608:24;;17706:1;17698:6;17694:14;17691:1;17688:21;17685:47;;;17712:18;;:::i;:::-;17685:47;17756:1;17753;17749:9;17742:16;;17522:242;;;;:::o;17770:305::-;17810:3;17829:20;17847:1;17829:20;:::i;:::-;17824:25;;17863:20;17881:1;17863:20;:::i;:::-;17858:25;;18017:1;17949:66;17945:74;17942:1;17939:81;17936:107;;;18023:18;;:::i;:::-;17936:107;18067:1;18064;18060:9;18053:16;;17770:305;;;;:::o;18081:185::-;18121:1;18138:20;18156:1;18138:20;:::i;:::-;18133:25;;18172:20;18190:1;18172:20;:::i;:::-;18167:25;;18211:1;18201:35;;18216:18;;:::i;:::-;18201:35;18258:1;18255;18251:9;18246:14;;18081:185;;;;:::o;18272:348::-;18312:7;18335:20;18353:1;18335:20;:::i;:::-;18330:25;;18369:20;18387:1;18369:20;:::i;:::-;18364:25;;18557:1;18489:66;18485:74;18482:1;18479:81;18474:1;18467:9;18460:17;18456:105;18453:131;;;18564:18;;:::i;:::-;18453:131;18612:1;18609;18605:9;18594:20;;18272:348;;;;:::o;18626:191::-;18666:4;18686:20;18704:1;18686:20;:::i;:::-;18681:25;;18720:20;18738:1;18720:20;:::i;:::-;18715:25;;18759:1;18756;18753:8;18750:34;;;18764:18;;:::i;:::-;18750:34;18809:1;18806;18802:9;18794:17;;18626:191;;;;:::o;18823:96::-;18860:7;18889:24;18907:5;18889:24;:::i;:::-;18878:35;;18823:96;;;:::o;18925:90::-;18959:7;19002:5;18995:13;18988:21;18977:32;;18925:90;;;:::o;19021:149::-;19057:7;19097:66;19090:5;19086:78;19075:89;;19021:149;;;:::o;19176:89::-;19212:7;19252:6;19245:5;19241:18;19230:29;;19176:89;;;:::o;19271:126::-;19308:7;19348:42;19341:5;19337:54;19326:65;;19271:126;;;:::o;19403:77::-;19440:7;19469:5;19458:16;;19403:77;;;:::o;19486:158::-;19568:9;19601:37;19632:5;19601:37;:::i;:::-;19588:50;;19486:158;;;:::o;19650:126::-;19700:9;19733:37;19764:5;19733:37;:::i;:::-;19720:50;;19650:126;;;:::o;19782:113::-;19832:9;19865:24;19883:5;19865:24;:::i;:::-;19852:37;;19782:113;;;:::o;19901:154::-;19985:6;19980:3;19975;19962:30;20047:1;20038:6;20033:3;20029:16;20022:27;19901:154;;;:::o;20061:307::-;20129:1;20139:113;20153:6;20150:1;20147:13;20139:113;;;20238:1;20233:3;20229:11;20223:18;20219:1;20214:3;20210:11;20203:39;20175:2;20172:1;20168:10;20163:15;;20139:113;;;20270:6;20267:1;20264:13;20261:101;;;20350:1;20341:6;20336:3;20332:16;20325:27;20261:101;20110:258;20061:307;;;:::o;20374:320::-;20418:6;20455:1;20449:4;20445:12;20435:22;;20502:1;20496:4;20492:12;20523:18;20513:81;;20579:4;20571:6;20567:17;20557:27;;20513:81;20641:2;20633:6;20630:14;20610:18;20607:38;20604:84;;;20660:18;;:::i;:::-;20604:84;20425:269;20374:320;;;:::o;20700:281::-;20783:27;20805:4;20783:27;:::i;:::-;20775:6;20771:40;20913:6;20901:10;20898:22;20877:18;20865:10;20862:34;20859:62;20856:88;;;20924:18;;:::i;:::-;20856:88;20964:10;20960:2;20953:22;20743:238;20700:281;;:::o;20987:180::-;21035:77;21032:1;21025:88;21132:4;21129:1;21122:15;21156:4;21153:1;21146:15;21173:180;21221:77;21218:1;21211:88;21318:4;21315:1;21308:15;21342:4;21339:1;21332:15;21359:180;21407:77;21404:1;21397:88;21504:4;21501:1;21494:15;21528:4;21525:1;21518:15;21545:180;21593:77;21590:1;21583:88;21690:4;21687:1;21680:15;21714:4;21711:1;21704:15;21731:117;21840:1;21837;21830:12;21854:117;21963:1;21960;21953:12;21977:117;22086:1;22083;22076:12;22100:117;22209:1;22206;22199:12;22223:102;22264:6;22315:2;22311:7;22306:2;22299:5;22295:14;22291:28;22281:38;;22223:102;;;:::o;22331:155::-;22471:7;22467:1;22459:6;22455:14;22448:31;22331:155;:::o;22492:169::-;22632:21;22628:1;22620:6;22616:14;22609:45;22492:169;:::o;22667:122::-;22740:24;22758:5;22740:24;:::i;:::-;22733:5;22730:35;22720:63;;22779:1;22776;22769:12;22720:63;22667:122;:::o;22795:116::-;22865:21;22880:5;22865:21;:::i;:::-;22858:5;22855:32;22845:60;;22901:1;22898;22891:12;22845:60;22795:116;:::o;22917:120::-;22989:23;23006:5;22989:23;:::i;:::-;22982:5;22979:34;22969:62;;23027:1;23024;23017:12;22969:62;22917:120;:::o;23043:::-;23115:23;23132:5;23115:23;:::i;:::-;23108:5;23105:34;23095:62;;23153:1;23150;23143:12;23095:62;23043:120;:::o;23169:122::-;23242:24;23260:5;23242:24;:::i;:::-;23235:5;23232:35;23222:63;;23281:1;23278;23271:12;23222:63;23169:122;:::o

Swarm Source

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