ETH Price: $3,388.18 (-1.56%)
Gas: 2 Gwei

Token

OnlyBearBot (BEARBOT)
 

Overview

Max Total Supply

1,000 BEARBOT

Holders

328

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BEARBOT
0x727c0bdfc0477ed6b3db75056d9725a61fe15dbc
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:
OnlyBearBot

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

/**
   __    ____  ____    _  _  _____  __  __    ____  _  _  ____  _  _      __      ____  ____    __    ____  ___ 
  /__\  (  _ \( ___)  ( \/ )(  _  )(  )(  )  ( ___)( \/ )( ___)( \( )    /__\    (  _ \( ___)  /__\  (  _ \(__ )
 /(__)\  )   / )__)    \  /  )(_)(  )(__)(    )__)  \  /  )__)  )  (    /(__)\    ) _ < )__)  /(__)\  )   / (_/ 
(__)(__)(_)\_)(____)   (__) (_____)(______)  (____)  \/  (____)(_)\_)  (__)(__)  (____/(____)(__)(__)(_)\_) (_) 
 */

// 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 {
        safeTransferFrom(from, to, tokenId, '');
    }

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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

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


contract OnlyBearBot is ERC721A, DefaultOperatorFilterer {
    string public baseURI = "ipfs://bafybeieswwbm6ae33jqma5s3c32sobroeg4jmu4wwzcv2jj2ssiltrbij4/";      
    uint256 public maxSupply = 1000; 
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 20;
    uint256 private _baseGasLimit = 80000;
    uint256 private _baseDifficulty = 10;
    uint256 private _difficultyBais = 120;

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

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }     

    function mint() public {
        require(gasleft() > _baseGasLimit);       
        if (!raffle()) return;
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) == 0);
        _safeMint(msg.sender, 1);
    }

    function raffle() public view returns(bool) {
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
        return num > difficulty();
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("OnlyBearBot", "BEARBOT") {
        owner = msg.sender;
    }
    
    function setPrice(uint256 newPrice, uint256 maxT) external onlyOwner {
        price = newPrice;
        maxPerTx = maxT;
    }

    // function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
    //     uint256 royaltyAmount = (_salePrice * 50) / 1000;
    //     return (owner, royaltyAmount);
    // }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

6080604052604051806080016040528060438152602001620032dd6043913960089080519060200190620000359291906200037b565b506103e860095566038d7ea4c68000600a556014600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f4f6e6c7942656172426f740000000000000000000000000000000000000000008152506040518060400160405280600781526020017f42454152424f54000000000000000000000000000000000000000000000000008152508160029080519060200190620001069291906200037b565b5080600390805190602001906200011f9291906200037b565b50620001306200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b992919062000459565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027392919062000459565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f691906200043c565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051f565b600090565b8280546200038990620004ba565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b620004368162000486565b82525050565b60006020820190506200045360008301846200042b565b92915050565b60006040820190506200047060008301856200042b565b6200047f60208301846200042b565b9392505050565b600062000493826200049a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e9620004f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612dae806200052f6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea2646970667358221220dc23e6048e9b492483b9352fbe50476a537b9665b4ca280d482547e286e5d17364736f6c63430008070033697066733a2f2f6261667962656965737777626d36616533336a716d61357333633332736f62726f6567346a6d753477777a6376326a6a327373696c747262696a342f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea2646970667358221220dc23e6048e9b492483b9352fbe50476a537b9665b4ca280d482547e286e5d17364736f6c63430008070033

Deployed Bytecode Sourcemap

57552:3301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19148:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20050:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26541:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60066:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58440:289;;;;;;;;;;;;;:::i;:::-;;15801:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58929:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60239:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58737:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59660:109;;;;;;;;;;;;;:::i;:::-;;54917:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60418:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58327:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21443:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57616:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16985:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59075:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20226:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57761:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57970:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59882:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60605:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20436:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57722:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27490:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59285:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57802:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19148:639;19233:4;19572:10;19557:25;;:11;:25;;;;:102;;;;19649:10;19634:25;;:11;:25;;;;19557:102;:179;;;;19726:10;19711:25;;:11;:25;;;;19557:179;19537:199;;19148:639;;;:::o;20050:100::-;20104:13;20137:5;20130:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20050:100;:::o;26541:218::-;26617:7;26642:16;26650:7;26642;:16::i;:::-;26637:64;;26667:34;;;;;;;;;;;;;;26637:64;26721:15;:24;26737:7;26721:24;;;;;;;;;;;:30;;;;;;;;;;;;26714:37;;26541:218;;;:::o;60066:165::-;60170:8;56959:1;55017:42;56911:45;;;:49;56907:225;;;55017:42;56982;;;57033:4;57040:8;56982:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56977:144;;57096:8;57077:28;;;;;;;;;;;:::i;:::-;;;;;;;;56977:144;56907:225;60191:32:::1;60205:8;60215:7;60191:13;:32::i;:::-;60066:165:::0;;;:::o;58440:289::-;58494:13;;58482:9;:25;58474:34;;;;;;58531:8;:6;:8::i;:::-;58526:22;;58541:7;;58526:22;58580:9;58566:23;;:10;:23;;;58558:32;;;;;;58630:9;;58625:1;58609:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;58601:39;;;;;;58684:1;58659:21;58669:10;58659:9;:21::i;:::-;:26;58651:35;;;;;;58697:24;58707:10;58719:1;58697:9;:24::i;:::-;58440:289;:::o;15801:323::-;15862:7;16090:15;:13;:15::i;:::-;16075:12;;16059:13;;:28;:46;16052:53;;15801:323;:::o;58929:138::-;58971:7;59050:9;;59032:15;;59016:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;58998:15;;:61;;;;:::i;:::-;58991:68;;58929:138;:::o;60239:171::-;60348:4;56213:1;55017:42;56165:45;;;:49;56161:539;;;56454:10;56446:18;;:4;:18;;;56442:85;;;60365:37:::1;60384:4;60390:2;60394:7;60365:18;:37::i;:::-;56505:7:::0;;56442:85;55017:42;56546;;;56597:4;56604:10;56546:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56541:148;;56662:10;56643:30;;;;;;;;;;;:::i;:::-;;;;;;;;56541:148;56161:539;60365:37:::1;60384:4;60390:2;60394:7;60365:18;:37::i;:::-;60239:171:::0;;;;;:::o;58737:184::-;58775:4;58792:11;58874:3;58841:15;58858:10;58824:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58814:56;;;;;;58806:65;;:71;;;;:::i;:::-;58792:85;;58901:12;:10;:12::i;:::-;58895:3;:18;58888:25;;;58737:184;:::o;59660:109::-;59149:10;59140:19;;:5;;;;;;;;;;;:19;;;59132:28;;;;;;59718:10:::1;59710:28;;:51;59739:21;59710:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59660:109::o:0;54917:143::-;55017:42;54917:143;:::o;60418:179::-;60531:4;56213:1;55017:42;56165:45;;;:49;56161:539;;;56454:10;56446:18;;:4;:18;;;56442:85;;;60548:41:::1;60571:4;60577:2;60581:7;60548:22;:41::i;:::-;56505:7:::0;;56442:85;55017:42;56546;;;56597:4;56604:10;56546:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56541:148;;56662:10;56643:30;;;;;;;;;;;:::i;:::-;;;;;;;;56541:148;56161:539;60548:41:::1;60571:4;60577:2;60581:7;60548:22;:41::i;:::-;60418:179:::0;;;;;:::o;58327:100::-;59149:10;59140:19;;:5;;;;;;;;;;;:19;;;59132:28;;;;;;58411:8:::1;58401:7;:18;;;;;;;;;;;;:::i;:::-;;58327:100:::0;:::o;21443:152::-;21515:7;21558:27;21577:7;21558:18;:27::i;:::-;21535:52;;21443:152;;;:::o;57616:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16985:233::-;17057:7;17098:1;17081:19;;:5;:19;;;17077:60;;;17109:28;;;;;;;;;;;;;;17077:60;11144:13;17155:18;:25;17174:5;17155:25;;;;;;;;;;;;;;;;:55;17148:62;;16985:233;;;:::o;59075:20::-;;;;;;;;;;;;;:::o;20226:104::-;20282:13;20315:7;20308:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20226:104;:::o;57761:34::-;;;;:::o;57970:233::-;58060:9;;58050:6;58034:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;58026:44;;;;;;58099:8;;58089:6;:18;;58081:27;;;;;;58149:5;;58140:6;:14;;;;:::i;:::-;58127:9;:27;;58119:36;;;;;;58166:29;58176:10;58188:6;58166:9;:29::i;:::-;57970:233;:::o;59882:176::-;59986:8;56959:1;55017:42;56911:45;;;:49;56907:225;;;55017:42;56982;;;57033:4;57040:8;56982:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56977:144;;57096:8;57077:28;;;;;;;;;;;:::i;:::-;;;;;;;;56977:144;56907:225;60007:43:::1;60031:8;60041;60007:23;:43::i;:::-;59882:176:::0;;;:::o;60605:245::-;60773:4;56213:1;55017:42;56165:45;;;:49;56161:539;;;56454:10;56446:18;;:4;:18;;;56442:85;;;60795:47:::1;60818:4;60824:2;60828:7;60837:4;60795:22;:47::i;:::-;56505:7:::0;;56442:85;55017:42;56546;;;56597:4;56604:10;56546:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56541:148;;56662:10;56643:30;;;;;;;;;;;:::i;:::-;;;;;;;;56541:148;56161:539;60795:47:::1;60818:4;60824:2;60828:7;60837:4;60795:22;:47::i;:::-;60605:245:::0;;;;;;:::o;20436:318::-;20509:13;20540:16;20548:7;20540;:16::i;:::-;20535:59;;20565:29;;;;;;;;;;;;;;20535:59;20607:21;20631:10;:8;:10::i;:::-;20607:34;;20684:1;20665:7;20659:21;:26;;:87;;;;;;;;;;;;;;;;;20712:7;20721:18;20731:7;20721:9;:18::i;:::-;20695:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20659:87;20652:94;;;20436:318;;;:::o;57722:31::-;;;;:::o;27490:164::-;27587:4;27611:18;:25;27630:5;27611:25;;;;;;;;;;;;;;;:35;27637:8;27611:35;;;;;;;;;;;;;;;;;;;;;;;;;27604:42;;27490:164;;;;:::o;59285:130::-;59149:10;59140:19;;:5;;;;;;;;;;;:19;;;59132:28;;;;;;59373:8:::1;59365:5;:16;;;;59403:4;59392:8;:15;;;;59285:130:::0;;:::o;57802:28::-;;;;:::o;27912:282::-;27977:4;28033:7;28014:15;:13;:15::i;:::-;:26;;:66;;;;;28067:13;;28057:7;:23;28014:66;:153;;;;;28166:1;11920:8;28118:17;:26;28136:7;28118:26;;;;;;;;;;;;:44;:49;28014:153;27994:173;;27912:282;;;:::o;25974:408::-;26063:13;26079:16;26087:7;26079;:16::i;:::-;26063:32;;26135:5;26112:28;;:19;:17;:19::i;:::-;:28;;;26108:175;;26160:44;26177:5;26184:19;:17;:19::i;:::-;26160:16;:44::i;:::-;26155:128;;26232:35;;;;;;;;;;;;;;26155:128;26108:175;26328:2;26295:15;:24;26311:7;26295:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26366:7;26362:2;26346:28;;26355:5;26346:28;;;;;;;;;;;;26052:330;25974:408;;:::o;44052:112::-;44129:27;44139:2;44143:8;44129:27;;;;;;;;;;;;:9;:27::i;:::-;44052:112;;:::o;15317:92::-;15373:7;15317:92;:::o;30180:2825::-;30322:27;30352;30371:7;30352:18;:27::i;:::-;30322:57;;30437:4;30396:45;;30412:19;30396:45;;;30392:86;;30450:28;;;;;;;;;;;;;;30392:86;30492:27;30521:23;30548:35;30575:7;30548:26;:35::i;:::-;30491:92;;;;30683:68;30708:15;30725:4;30731:19;:17;:19::i;:::-;30683:24;:68::i;:::-;30678:180;;30771:43;30788:4;30794:19;:17;:19::i;:::-;30771:16;:43::i;:::-;30766:92;;30823:35;;;;;;;;;;;;;;30766:92;30678:180;30889:1;30875:16;;:2;:16;;;30871:52;;;30900:23;;;;;;;;;;;;;;30871:52;30936:43;30958:4;30964:2;30968:7;30977:1;30936:21;:43::i;:::-;31072:15;31069:160;;;31212:1;31191:19;31184:30;31069:160;31609:18;:24;31628:4;31609:24;;;;;;;;;;;;;;;;31607:26;;;;;;;;;;;;31678:18;:22;31697:2;31678:22;;;;;;;;;;;;;;;;31676:24;;;;;;;;;;;32000:146;32037:2;32086:45;32101:4;32107:2;32111:19;32086:14;:45::i;:::-;12200:8;32058:73;32000:18;:146::i;:::-;31971:17;:26;31989:7;31971:26;;;;;;;;;;;:175;;;;32317:1;12200:8;32266:19;:47;:52;32262:627;;;32339:19;32371:1;32361:7;:11;32339:33;;32528:1;32494:17;:30;32512:11;32494:30;;;;;;;;;;;;:35;32490:384;;;32632:13;;32617:11;:28;32613:242;;32812:19;32779:17;:30;32797:11;32779:30;;;;;;;;;;;:52;;;;32613:242;32490:384;32320:569;32262:627;32936:7;32932:2;32917:27;;32926:4;32917:27;;;;;;;;;;;;32955:42;32976:4;32982:2;32986:7;32995:1;32955:20;:42::i;:::-;30311:2694;;;30180:2825;;;:::o;33101:193::-;33247:39;33264:4;33270:2;33274:7;33247:39;;;;;;;;;;;;:16;:39::i;:::-;33101:193;;;:::o;22598:1275::-;22665:7;22685:12;22700:7;22685:22;;22768:4;22749:15;:13;:15::i;:::-;:23;22745:1061;;22802:13;;22795:4;:20;22791:1015;;;22840:14;22857:17;:23;22875:4;22857:23;;;;;;;;;;;;22840:40;;22974:1;11920:8;22946:6;:24;:29;22942:845;;;23611:113;23628:1;23618:6;:11;23611:113;;;23671:17;:25;23689:6;;;;;;;23671:25;;;;;;;;;;;;23662:34;;23611:113;;;23757:6;23750:13;;;;;;22942:845;22817:989;22791:1015;22745:1061;23834:31;;;;;;;;;;;;;;22598:1275;;;;:::o;27099:234::-;27246:8;27194:18;:39;27213:19;:17;:19::i;:::-;27194:39;;;;;;;;;;;;;;;:49;27234:8;27194:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27306:8;27270:55;;27285:19;:17;:19::i;:::-;27270:55;;;27316:8;27270:55;;;;;;:::i;:::-;;;;;;;;27099:234;;:::o;33892:407::-;34067:31;34080:4;34086:2;34090:7;34067:12;:31::i;:::-;34131:1;34113:2;:14;;;:19;34109:183;;34152:56;34183:4;34189:2;34193:7;34202:5;34152:30;:56::i;:::-;34147:145;;34236:40;;;;;;;;;;;;;;34147:145;34109:183;33892:407;;;;:::o;58211:108::-;58271:13;58304:7;58297:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58211:108;:::o;50427:1745::-;50492:17;50926:4;50919;50913:11;50909:22;51018:1;51012:4;51005:15;51093:4;51090:1;51086:12;51079:19;;51175:1;51170:3;51163:14;51279:3;51518:5;51500:428;51526:1;51500:428;;;51566:1;51561:3;51557:11;51550:18;;51737:2;51731:4;51727:13;51723:2;51719:22;51714:3;51706:36;51831:2;51825:4;51821:13;51813:21;;51898:4;51888:25;;51906:5;;51888:25;51500:428;;;51504:21;51967:3;51962;51958:13;52082:4;52077:3;52073:14;52066:21;;52147:6;52142:3;52135:19;50531:1634;;;50427:1745;;;:::o;50220:105::-;50280:7;50307:10;50300:17;;50220:105;:::o;43279:689::-;43410:19;43416:2;43420:8;43410:5;:19::i;:::-;43489:1;43471:2;:14;;;:19;43467:483;;43511:11;43525:13;;43511:27;;43557:13;43579:8;43573:3;:14;43557:30;;43606:233;43637:62;43676:1;43680:2;43684:7;;;;;;43693:5;43637:30;:62::i;:::-;43632:167;;43735:40;;;;;;;;;;;;;;43632:167;43834:3;43826:5;:11;43606:233;;43921:3;43904:13;;:20;43900:34;;43926:8;;;43900:34;43492:458;;43467:483;43279:689;;;:::o;29075:485::-;29177:27;29206:23;29247:38;29288:15;:24;29304:7;29288:24;;;;;;;;;;;29247:65;;29465:18;29442:41;;29522:19;29516:26;29497:45;;29427:126;29075:485;;;:::o;28303:659::-;28452:11;28617:16;28610:5;28606:28;28597:37;;28777:16;28766:9;28762:32;28749:45;;28927:15;28916:9;28913:30;28905:5;28894:9;28891:20;28888:56;28878:66;;28303:659;;;;;:::o;34961:159::-;;;;;:::o;49529:311::-;49664:7;49684:16;12324:3;49710:19;:41;;49684:68;;12324:3;49778:31;49789:4;49795:2;49799:9;49778:10;:31::i;:::-;49770:40;;:62;;49763:69;;;49529:311;;;;;:::o;24421:450::-;24501:14;24669:16;24662:5;24658:28;24649:37;;24846:5;24832:11;24807:23;24803:41;24800:52;24793:5;24790:63;24780:73;;24421:450;;;;:::o;35785:158::-;;;;;:::o;36383:716::-;36546:4;36592:2;36567:45;;;36613:19;:17;:19::i;:::-;36634:4;36640:7;36649:5;36567:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36563:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36867:1;36850:6;:13;:18;36846:235;;;36896:40;;;;;;;;;;;;;;36846:235;37039:6;37033:13;37024:6;37020:2;37016:15;37009:38;36563:529;36736:54;;;36726:64;;;:6;:64;;;;36719:71;;;36383:716;;;;;;:::o;37561:2966::-;37634:20;37657:13;;37634:36;;37697:1;37685:8;:13;37681:44;;;37707:18;;;;;;;;;;;;;;37681:44;37738:61;37768:1;37772:2;37776:12;37790:8;37738:21;:61::i;:::-;38282:1;11282:2;38252:1;:26;;38251:32;38239:8;:45;38213:18;:22;38232:2;38213:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38561:139;38598:2;38652:33;38675:1;38679:2;38683:1;38652:14;:33::i;:::-;38619:30;38640:8;38619:20;:30::i;:::-;:66;38561:18;:139::i;:::-;38527:17;:31;38545:12;38527:31;;;;;;;;;;;:173;;;;38717:16;38748:11;38777:8;38762:12;:23;38748:37;;39298:16;39294:2;39290:25;39278:37;;39670:12;39630:8;39589:1;39527:25;39468:1;39407;39380:335;40041:1;40027:12;40023:20;39981:346;40082:3;40073:7;40070:16;39981:346;;40300:7;40290:8;40287:1;40260:25;40257:1;40254;40249:59;40135:1;40126:7;40122:15;40111:26;;39981:346;;;39985:77;40372:1;40360:8;:13;40356:45;;;40382:19;;;;;;;;;;;;;;40356:45;40434:3;40418:13;:19;;;;37987:2462;;40459:60;40488:1;40492:2;40496:12;40510:8;40459:20;:60::i;:::-;37623:2904;37561:2966;;:::o;49230:147::-;49367:6;49230:147;;;;;:::o;24973:324::-;25043:14;25276:1;25266:8;25263:15;25237:24;25233:46;25223:56;;24973:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:474::-;7720:6;7728;7777:2;7765:9;7756:7;7752:23;7748:32;7745:119;;;7783:79;;:::i;:::-;7745:119;7903:1;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7874:117;8030:2;8056:53;8101:7;8092:6;8081:9;8077:22;8056:53;:::i;:::-;8046:63;;8001:118;7652:474;;;;;:::o;8132:118::-;8219:24;8237:5;8219:24;:::i;:::-;8214:3;8207:37;8132:118;;:::o;8256:157::-;8361:45;8381:24;8399:5;8381:24;:::i;:::-;8361:45;:::i;:::-;8356:3;8349:58;8256:157;;:::o;8419:109::-;8500:21;8515:5;8500:21;:::i;:::-;8495:3;8488:34;8419:109;;:::o;8534:360::-;8620:3;8648:38;8680:5;8648:38;:::i;:::-;8702:70;8765:6;8760:3;8702:70;:::i;:::-;8695:77;;8781:52;8826:6;8821:3;8814:4;8807:5;8803:16;8781:52;:::i;:::-;8858:29;8880:6;8858:29;:::i;:::-;8853:3;8849:39;8842:46;;8624:270;8534:360;;;;:::o;8900:195::-;9019:69;9082:5;9019:69;:::i;:::-;9014:3;9007:82;8900:195;;:::o;9101:364::-;9189:3;9217:39;9250:5;9217:39;:::i;:::-;9272:71;9336:6;9331:3;9272:71;:::i;:::-;9265:78;;9352:52;9397:6;9392:3;9385:4;9378:5;9374:16;9352:52;:::i;:::-;9429:29;9451:6;9429:29;:::i;:::-;9424:3;9420:39;9413:46;;9193:272;9101:364;;;;:::o;9471:377::-;9577:3;9605:39;9638:5;9605:39;:::i;:::-;9660:89;9742:6;9737:3;9660:89;:::i;:::-;9653:96;;9758:52;9803:6;9798:3;9791:4;9784:5;9780:16;9758:52;:::i;:::-;9835:6;9830:3;9826:16;9819:23;;9581:267;9471:377;;;;:::o;9854:118::-;9941:24;9959:5;9941:24;:::i;:::-;9936:3;9929:37;9854:118;;:::o;9978:157::-;10083:45;10103:24;10121:5;10103:24;:::i;:::-;10083:45;:::i;:::-;10078:3;10071:58;9978:157;;:::o;10141:435::-;10321:3;10343:95;10434:3;10425:6;10343:95;:::i;:::-;10336:102;;10455:95;10546:3;10537:6;10455:95;:::i;:::-;10448:102;;10567:3;10560:10;;10141:435;;;;;:::o;10582:397::-;10722:3;10737:75;10808:3;10799:6;10737:75;:::i;:::-;10837:2;10832:3;10828:12;10821:19;;10850:75;10921:3;10912:6;10850:75;:::i;:::-;10950:2;10945:3;10941:12;10934:19;;10970:3;10963:10;;10582:397;;;;;:::o;10985:222::-;11078:4;11116:2;11105:9;11101:18;11093:26;;11129:71;11197:1;11186:9;11182:17;11173:6;11129:71;:::i;:::-;10985:222;;;;:::o;11213:332::-;11334:4;11372:2;11361:9;11357:18;11349:26;;11385:71;11453:1;11442:9;11438:17;11429:6;11385:71;:::i;:::-;11466:72;11534:2;11523:9;11519:18;11510:6;11466:72;:::i;:::-;11213:332;;;;;:::o;11551:640::-;11746:4;11784:3;11773:9;11769:19;11761:27;;11798:71;11866:1;11855:9;11851:17;11842:6;11798:71;:::i;:::-;11879:72;11947:2;11936:9;11932:18;11923:6;11879:72;:::i;:::-;11961;12029:2;12018:9;12014:18;12005:6;11961:72;:::i;:::-;12080:9;12074:4;12070:20;12065:2;12054:9;12050:18;12043:48;12108:76;12179:4;12170:6;12108:76;:::i;:::-;12100:84;;11551:640;;;;;;;:::o;12197:210::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12335:65;12397:1;12386:9;12382:17;12373:6;12335:65;:::i;:::-;12197:210;;;;:::o;12413:286::-;12538:4;12576:2;12565:9;12561:18;12553:26;;12589:103;12689:1;12678:9;12674:17;12665:6;12589:103;:::i;:::-;12413:286;;;;:::o;12705:313::-;12818:4;12856:2;12845:9;12841:18;12833:26;;12905:9;12899:4;12895:20;12891:1;12880:9;12876:17;12869:47;12933:78;13006:4;12997:6;12933:78;:::i;:::-;12925:86;;12705:313;;;;:::o;13024:222::-;13117:4;13155:2;13144:9;13140:18;13132:26;;13168:71;13236:1;13225:9;13221:17;13212:6;13168:71;:::i;:::-;13024:222;;;;:::o;13252:129::-;13286:6;13313:20;;:::i;:::-;13303:30;;13342:33;13370:4;13362:6;13342:33;:::i;:::-;13252:129;;;:::o;13387:75::-;13420:6;13453:2;13447:9;13437:19;;13387:75;:::o;13468:307::-;13529:4;13619:18;13611:6;13608:30;13605:56;;;13641:18;;:::i;:::-;13605:56;13679:29;13701:6;13679:29;:::i;:::-;13671:37;;13763:4;13757;13753:15;13745:23;;13468:307;;;:::o;13781:308::-;13843:4;13933:18;13925:6;13922:30;13919:56;;;13955:18;;:::i;:::-;13919:56;13993:29;14015:6;13993:29;:::i;:::-;13985:37;;14077:4;14071;14067:15;14059:23;;13781:308;;;:::o;14095:98::-;14146:6;14180:5;14174:12;14164:22;;14095:98;;;:::o;14199:99::-;14251:6;14285:5;14279:12;14269:22;;14199:99;;;:::o;14304:168::-;14387:11;14421:6;14416:3;14409:19;14461:4;14456:3;14452:14;14437:29;;14304:168;;;;:::o;14478:169::-;14562:11;14596:6;14591:3;14584:19;14636:4;14631:3;14627:14;14612:29;;14478:169;;;;:::o;14653:148::-;14755:11;14792:3;14777:18;;14653:148;;;;:::o;14807:305::-;14847:3;14866:20;14884:1;14866:20;:::i;:::-;14861:25;;14900:20;14918:1;14900:20;:::i;:::-;14895:25;;15054:1;14986:66;14982:74;14979:1;14976:81;14973:107;;;15060:18;;:::i;:::-;14973:107;15104:1;15101;15097:9;15090:16;;14807:305;;;;:::o;15118:185::-;15158:1;15175:20;15193:1;15175:20;:::i;:::-;15170:25;;15209:20;15227:1;15209:20;:::i;:::-;15204:25;;15248:1;15238:35;;15253:18;;:::i;:::-;15238:35;15295:1;15292;15288:9;15283:14;;15118:185;;;;:::o;15309:348::-;15349:7;15372:20;15390:1;15372:20;:::i;:::-;15367:25;;15406:20;15424:1;15406:20;:::i;:::-;15401:25;;15594:1;15526:66;15522:74;15519:1;15516:81;15511:1;15504:9;15497:17;15493:105;15490:131;;;15601:18;;:::i;:::-;15490:131;15649:1;15646;15642:9;15631:20;;15309:348;;;;:::o;15663:96::-;15700:7;15729:24;15747:5;15729:24;:::i;:::-;15718:35;;15663:96;;;:::o;15765:90::-;15799:7;15842:5;15835:13;15828:21;15817:32;;15765:90;;;:::o;15861:149::-;15897:7;15937:66;15930:5;15926:78;15915:89;;15861:149;;;:::o;16016:126::-;16053:7;16093:42;16086:5;16082:54;16071:65;;16016:126;;;:::o;16148:77::-;16185:7;16214:5;16203:16;;16148:77;;;:::o;16231:158::-;16313:9;16346:37;16377:5;16346:37;:::i;:::-;16333:50;;16231:158;;;:::o;16395:126::-;16445:9;16478:37;16509:5;16478:37;:::i;:::-;16465:50;;16395:126;;;:::o;16527:113::-;16577:9;16610:24;16628:5;16610:24;:::i;:::-;16597:37;;16527:113;;;:::o;16646:154::-;16730:6;16725:3;16720;16707:30;16792:1;16783:6;16778:3;16774:16;16767:27;16646:154;;;:::o;16806:307::-;16874:1;16884:113;16898:6;16895:1;16892:13;16884:113;;;16983:1;16978:3;16974:11;16968:18;16964:1;16959:3;16955:11;16948:39;16920:2;16917:1;16913:10;16908:15;;16884:113;;;17015:6;17012:1;17009:13;17006:101;;;17095:1;17086:6;17081:3;17077:16;17070:27;17006:101;16855:258;16806:307;;;:::o;17119:320::-;17163:6;17200:1;17194:4;17190:12;17180:22;;17247:1;17241:4;17237:12;17268:18;17258:81;;17324:4;17316:6;17312:17;17302:27;;17258:81;17386:2;17378:6;17375:14;17355:18;17352:38;17349:84;;;17405:18;;:::i;:::-;17349:84;17170:269;17119:320;;;:::o;17445:281::-;17528:27;17550:4;17528:27;:::i;:::-;17520:6;17516:40;17658:6;17646:10;17643:22;17622:18;17610:10;17607:34;17604:62;17601:88;;;17669:18;;:::i;:::-;17601:88;17709:10;17705:2;17698:22;17488:238;17445:281;;:::o;17732:100::-;17771:7;17800:26;17820:5;17800:26;:::i;:::-;17789:37;;17732:100;;;:::o;17838:94::-;17877:7;17906:20;17920:5;17906:20;:::i;:::-;17895:31;;17838:94;;;:::o;17938:79::-;17977:7;18006:5;17995:16;;17938:79;;;:::o;18023:176::-;18055:1;18072:20;18090:1;18072:20;:::i;:::-;18067:25;;18106:20;18124:1;18106:20;:::i;:::-;18101:25;;18145:1;18135:35;;18150:18;;:::i;:::-;18135:35;18191:1;18188;18184:9;18179:14;;18023:176;;;;:::o;18205:180::-;18253:77;18250:1;18243:88;18350:4;18347:1;18340:15;18374:4;18371:1;18364:15;18391:180;18439:77;18436:1;18429:88;18536:4;18533:1;18526:15;18560:4;18557:1;18550:15;18577:180;18625:77;18622:1;18615:88;18722:4;18719:1;18712:15;18746:4;18743:1;18736:15;18763:180;18811:77;18808:1;18801:88;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18949:117;19058:1;19055;19048:12;19072:117;19181:1;19178;19171:12;19195:117;19304:1;19301;19294:12;19318:117;19427:1;19424;19417:12;19441:102;19482:6;19533:2;19529:7;19524:2;19517:5;19513:14;19509:28;19499:38;;19441:102;;;:::o;19549:94::-;19582:8;19630:5;19626:2;19622:14;19601:35;;19549:94;;;:::o;19649:122::-;19722:24;19740:5;19722:24;:::i;:::-;19715:5;19712:35;19702:63;;19761:1;19758;19751:12;19702:63;19649:122;:::o;19777:116::-;19847:21;19862:5;19847:21;:::i;:::-;19840:5;19837:32;19827:60;;19883:1;19880;19873:12;19827:60;19777:116;:::o;19899:120::-;19971:23;19988:5;19971:23;:::i;:::-;19964:5;19961:34;19951:62;;20009:1;20006;19999:12;19951:62;19899:120;:::o;20025:122::-;20098:24;20116:5;20098:24;:::i;:::-;20091:5;20088:35;20078:63;;20137:1;20134;20127:12;20078:63;20025:122;:::o

Swarm Source

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