ETH Price: $3,467.24 (+2.16%)
Gas: 14 Gwei

Token

o0_fish_0o (o0_fish_0o)
 

Overview

Max Total Supply

198 o0_fish_0o

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 o0_fish_0o
0x1922370a11d40572aa59c0ed7bc430fb87f3e35a
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:
fish

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

// SPDX-License-Identifier: MIT     

// ERC721A Contracts v3.3.0
//    _      _             _    
// _ / \   _|_ o  _ |_    / \ _ 
//(_)\_/___ |  | _> | |___\_/(_)

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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;

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

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

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;


contract fish is ERC721A, Ownable {

    using Strings for uint256;
    string private baseURI;
    uint256 public price = 0.003 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxFreePerWallet = 1;
    uint256 public totalFree = 4000;
    uint256 public maxSupply = 4000;

    bool public mintEnabled = false;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("o0_fish_0o", "o0_fish_0o") {
        _safeMint(msg.sender, 1);
        setBaseURI("ipfs://bafybeibbdnykwtvsrackepzlqoafsbsuh33gjr4wotg5g5w35ye6xhlyma/");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more left.");
        require(mintEnabled, "Mint is not live yet.");
        require(count < maxPerTx + 1, "Max per TX reached.");
        require(tx.origin == msg.sender, "Contracts not allowed to mint.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a55600a600b556001600c55610fa0600d55610fa0600e556000600f60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600a81526020017f6f305f666973685f306f000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f6f305f666973685f306f000000000000000000000000000000000000000000008152508160029081620000cb919062000a06565b508060039081620000dd919062000a06565b50620000ee6200015960201b60201c565b6000819055505050620001166200010a6200015e60201b60201c565b6200016660201b60201c565b620001293360016200022c60201b60201c565b620001536040518060800160405280604381526020016200409a604391396200025260201b60201c565b62000d48565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024e828260405180602001604052806000815250620002f660201b60201c565b5050565b620002626200015e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000288620005d960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d89062000b4e565b60405180910390fd5b8060099081620002f2919062000a06565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000363576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036200039e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003b360008583866200060360201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000420600185146200060960201b60201c565b901b60a042901b62000438866200061360201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000549575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620004f560008784806001019550876200061d60201b60201c565b6200052c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200047e5782600054146200054357600080fd5b620005b5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200054a575b816000819055505050620005d360008583866200077e60201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200064b6200078460201b60201c565b8786866040518563ffffffff1660e01b81526004016200066f949392919062000c60565b6020604051808303816000875af1925050508015620006ae57506040513d601f19601f82011682018060405250810190620006ab919062000d16565b60015b6200072b573d8060008114620006e1576040519150601f19603f3d011682016040523d82523d6000602084013e620006e6565b606091505b50600081510362000723576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080e57607f821691505b602082108103620008245762000823620007c6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200088e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200084f565b6200089a86836200084f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008e7620008e1620008db84620008b2565b620008bc565b620008b2565b9050919050565b6000819050919050565b6200090383620008c6565b6200091b6200091282620008ee565b8484546200085c565b825550505050565b600090565b6200093262000923565b6200093f818484620008f8565b505050565b5b8181101562000967576200095b60008262000928565b60018101905062000945565b5050565b601f821115620009b65762000980816200082a565b6200098b846200083f565b810160208510156200099b578190505b620009b3620009aa856200083f565b83018262000944565b50505b505050565b600082821c905092915050565b6000620009db60001984600802620009bb565b1980831691505092915050565b6000620009f68383620009c8565b9150826002028217905092915050565b62000a11826200078c565b67ffffffffffffffff81111562000a2d5762000a2c62000797565b5b62000a398254620007f5565b62000a468282856200096b565b600060209050601f83116001811462000a7e576000841562000a69578287015190505b62000a758582620009e8565b86555062000ae5565b601f19841662000a8e866200082a565b60005b8281101562000ab85784890151825560018201915060208501945060208101905062000a91565b8683101562000ad8578489015162000ad4601f891682620009c8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b3660208362000aed565b915062000b438262000afe565b602082019050919050565b6000602082019050818103600083015262000b698162000b27565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9d8262000b70565b9050919050565b62000baf8162000b90565b82525050565b62000bc081620008b2565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c0257808201518184015260208101905062000be5565b60008484015250505050565b6000601f19601f8301169050919050565b600062000c2c8262000bc6565b62000c38818562000bd1565b935062000c4a81856020860162000be2565b62000c558162000c0e565b840191505092915050565b600060808201905062000c77600083018762000ba4565b62000c86602083018662000ba4565b62000c95604083018562000bb5565b818103606083015262000ca9818462000c1f565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000cf08162000cb9565b811462000cfc57600080fd5b50565b60008151905062000d108162000ce5565b92915050565b60006020828403121562000d2f5762000d2e62000cb4565b5b600062000d3f8482850162000cff565b91505092915050565b6133428062000d586000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105c5578063e985e9c5146105f0578063f2fde38b1461062d578063f968adbe14610656576101b7565b8063b88d4fde14610534578063c87b56dd1461055d578063d12397301461059a576101b7565b8063a035b1fe116100c6578063a035b1fe14610499578063a0712d68146104c4578063a22cb465146104e0578063a702735714610509576101b7565b80638da5cb5b1461041a57806391b7f5ed1461044557806395d89b411461046e576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780637ba5e62114610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061219a565b610681565b6040516101f091906121e2565b60405180910390f35b34801561020557600080fd5b5061020e610713565b60405161021b919061228d565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906122e5565b6107a5565b6040516102589190612353565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061239a565b610821565b005b34801561029657600080fd5b5061029f6109c7565b6040516102ac91906123e9565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612404565b6109de565b005b3480156102ea57600080fd5b506102f36109ee565b60405161030091906123e9565b60405180910390f35b34801561031557600080fd5b5061031e6109f4565b005b34801561032c57600080fd5b5061034760048036038101906103429190612404565b610b1f565b005b34801561035557600080fd5b50610370600480360381019061036b919061258c565b610b3f565b005b34801561037e57600080fd5b50610399600480360381019061039491906122e5565b610bce565b6040516103a69190612353565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906125d5565b610be0565b6040516103e391906123e9565b60405180910390f35b3480156103f857600080fd5b50610401610c98565b005b34801561040f57600080fd5b50610418610d20565b005b34801561042657600080fd5b5061042f610dc8565b60405161043c9190612353565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906122e5565b610df2565b005b34801561047a57600080fd5b50610483610e78565b604051610490919061228d565b60405180910390f35b3480156104a557600080fd5b506104ae610f0a565b6040516104bb91906123e9565b60405180910390f35b6104de60048036038101906104d991906122e5565b610f10565b005b3480156104ec57600080fd5b506105076004803603810190610502919061262e565b6111ca565b005b34801561051557600080fd5b5061051e611341565b60405161052b91906123e9565b60405180910390f35b34801561054057600080fd5b5061055b6004803603810190610556919061270f565b611347565b005b34801561056957600080fd5b50610584600480360381019061057f91906122e5565b6113ba565b604051610591919061228d565b60405180910390f35b3480156105a657600080fd5b506105af611436565b6040516105bc91906121e2565b60405180910390f35b3480156105d157600080fd5b506105da611449565b6040516105e791906123e9565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612792565b61144f565b60405161062491906121e2565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906125d5565b6114e3565b005b34801561066257600080fd5b5061066b6115da565b60405161067891906123e9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106dc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461072290612801565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90612801565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b0826115e0565b6107e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082c8261163f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610893576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b261170b565b73ffffffffffffffffffffffffffffffffffffffff1614610915576108de816108d961170b565b61144f565b610914576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d1611713565b6001546000540303905090565b6109e9838383611718565b505050565b600d5481565b6109fc611abf565b73ffffffffffffffffffffffffffffffffffffffff16610a1a610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a679061287e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610a96906128cf565b60006040518083038185875af1925050503d8060008114610ad3576040519150601f19603f3d011682016040523d82523d6000602084013e610ad8565b606091505b5050905080610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390612930565b60405180910390fd5b50565b610b3a83838360405180602001604052806000815250611347565b505050565b610b47611abf565b73ffffffffffffffffffffffffffffffffffffffff16610b65610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb29061287e565b60405180910390fd5b8060099081610bca9190612afc565b5050565b6000610bd98261163f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ca0611abf565b73ffffffffffffffffffffffffffffffffffffffff16610cbe610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b9061287e565b60405180910390fd5b610d1e6000611ac7565b565b610d28611abf565b73ffffffffffffffffffffffffffffffffffffffff16610d46610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d939061287e565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dfa611abf565b73ffffffffffffffffffffffffffffffffffffffff16610e18610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061287e565b60405180910390fd5b80600a8190555050565b606060038054610e8790612801565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390612801565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610f289190612bfd565b83610f316109c7565b610f3b9190612bfd565b108015610f945750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f919190612bfd565b11155b90508015610fa157600091505b8183610fad9190612c31565b341015610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690612cbf565b60405180910390fd5b6001600e54610ffe9190612bfd565b836110076109c7565b6110119190612bfd565b10611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890612d2b565b60405180910390fd5b600f60009054906101000a900460ff166110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790612d97565b60405180910390fd5b6001600b546110af9190612bfd565b83106110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790612e03565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590612e6f565b60405180910390fd5b80156111bb5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b39190612bfd565b925050819055505b6111c53384611b8d565b505050565b6111d261170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611236576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061124361170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112f061170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133591906121e2565b60405180910390a35050565b600c5481565b611352848484611718565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113b45761137d84848484611bab565b6113b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113c5826115e0565b611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90612f01565b60405180910390fd5b600961140f83611cfb565b60405160200161142092919061302c565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114eb611abf565b73ffffffffffffffffffffffffffffffffffffffff16611509610dc8565b73ffffffffffffffffffffffffffffffffffffffff161461155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061287e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906130cd565b60405180910390fd5b6115d781611ac7565b50565b600b5481565b6000816115eb611713565b111580156115fa575060005482105b8015611638575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061164e611713565b116116d4576000548110156116d35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116d1575b600081036116c757600460008360019003935083815260200190815260200160002054905061169d565b8092505050611706565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117238261163f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461178a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117ab61170b565b73ffffffffffffffffffffffffffffffffffffffff1614806117da57506117d9856117d461170b565b61144f565b5b8061181f57506117e861170b565b73ffffffffffffffffffffffffffffffffffffffff16611807846107a5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611858576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118cb8585856001611e5b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6119c886611e61565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611a505760006001840190506000600460008381526020019081526020016000205403611a4e576000548114611a4d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab88585856001611e6b565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ba7828260405180602001604052806000815250611e71565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd161170b565b8786866040518563ffffffff1660e01b8152600401611bf39493929190613142565b6020604051808303816000875af1925050508015611c2f57506040513d601f19601f82011682018060405250810190611c2c91906131a3565b60015b611ca8573d8060008114611c5f576040519150601f19603f3d011682016040523d82523d6000602084013e611c64565b606091505b506000815103611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611d42576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e56565b600082905060005b60008214611d74578080611d5d906131d0565b915050600a82611d6d9190613247565b9150611d4a565b60008167ffffffffffffffff811115611d9057611d8f612461565b5b6040519080825280601f01601f191660200182016040528015611dc25781602001600182028036833780820191505090505b5090505b60008514611e4f57600182611ddb9190613278565b9150600a85611dea91906132ac565b6030611df69190612bfd565b60f81b818381518110611e0c57611e0b6132dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e489190613247565b9450611dc6565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611edd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611f17576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f246000858386611e5b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611f8960018514612124565b901b60a042901b611f9986611e61565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461209d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461204d6000878480600101955087611bab565b612083576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611fde57826000541461209857600080fd5b612108565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061209e575b81600081905550505061211e6000858386611e6b565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61217781612142565b811461218257600080fd5b50565b6000813590506121948161216e565b92915050565b6000602082840312156121b0576121af612138565b5b60006121be84828501612185565b91505092915050565b60008115159050919050565b6121dc816121c7565b82525050565b60006020820190506121f760008301846121d3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561223757808201518184015260208101905061221c565b60008484015250505050565b6000601f19601f8301169050919050565b600061225f826121fd565b6122698185612208565b9350612279818560208601612219565b61228281612243565b840191505092915050565b600060208201905081810360008301526122a78184612254565b905092915050565b6000819050919050565b6122c2816122af565b81146122cd57600080fd5b50565b6000813590506122df816122b9565b92915050565b6000602082840312156122fb576122fa612138565b5b6000612309848285016122d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061233d82612312565b9050919050565b61234d81612332565b82525050565b60006020820190506123686000830184612344565b92915050565b61237781612332565b811461238257600080fd5b50565b6000813590506123948161236e565b92915050565b600080604083850312156123b1576123b0612138565b5b60006123bf85828601612385565b92505060206123d0858286016122d0565b9150509250929050565b6123e3816122af565b82525050565b60006020820190506123fe60008301846123da565b92915050565b60008060006060848603121561241d5761241c612138565b5b600061242b86828701612385565b935050602061243c86828701612385565b925050604061244d868287016122d0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61249982612243565b810181811067ffffffffffffffff821117156124b8576124b7612461565b5b80604052505050565b60006124cb61212e565b90506124d78282612490565b919050565b600067ffffffffffffffff8211156124f7576124f6612461565b5b61250082612243565b9050602081019050919050565b82818337600083830152505050565b600061252f61252a846124dc565b6124c1565b90508281526020810184848401111561254b5761254a61245c565b5b61255684828561250d565b509392505050565b600082601f83011261257357612572612457565b5b813561258384826020860161251c565b91505092915050565b6000602082840312156125a2576125a1612138565b5b600082013567ffffffffffffffff8111156125c0576125bf61213d565b5b6125cc8482850161255e565b91505092915050565b6000602082840312156125eb576125ea612138565b5b60006125f984828501612385565b91505092915050565b61260b816121c7565b811461261657600080fd5b50565b60008135905061262881612602565b92915050565b6000806040838503121561264557612644612138565b5b600061265385828601612385565b925050602061266485828601612619565b9150509250929050565b600067ffffffffffffffff82111561268957612688612461565b5b61269282612243565b9050602081019050919050565b60006126b26126ad8461266e565b6124c1565b9050828152602081018484840111156126ce576126cd61245c565b5b6126d984828561250d565b509392505050565b600082601f8301126126f6576126f5612457565b5b813561270684826020860161269f565b91505092915050565b6000806000806080858703121561272957612728612138565b5b600061273787828801612385565b945050602061274887828801612385565b9350506040612759878288016122d0565b925050606085013567ffffffffffffffff81111561277a5761277961213d565b5b612786878288016126e1565b91505092959194509250565b600080604083850312156127a9576127a8612138565b5b60006127b785828601612385565b92505060206127c885828601612385565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061281957607f821691505b60208210810361282c5761282b6127d2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612868602083612208565b915061287382612832565b602082019050919050565b600060208201905081810360008301526128978161285b565b9050919050565b600081905092915050565b50565b60006128b960008361289e565b91506128c4826128a9565b600082019050919050565b60006128da826128ac565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061291a601083612208565b9150612925826128e4565b602082019050919050565b600060208201905081810360008301526129498161290d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612975565b6129bc8683612975565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129f96129f46129ef846122af565b6129d4565b6122af565b9050919050565b6000819050919050565b612a13836129de565b612a27612a1f82612a00565b848454612982565b825550505050565b600090565b612a3c612a2f565b612a47818484612a0a565b505050565b5b81811015612a6b57612a60600082612a34565b600181019050612a4d565b5050565b601f821115612ab057612a8181612950565b612a8a84612965565b81016020851015612a99578190505b612aad612aa585612965565b830182612a4c565b50505b505050565b600082821c905092915050565b6000612ad360001984600802612ab5565b1980831691505092915050565b6000612aec8383612ac2565b9150826002028217905092915050565b612b05826121fd565b67ffffffffffffffff811115612b1e57612b1d612461565b5b612b288254612801565b612b33828285612a6f565b600060209050601f831160018114612b665760008415612b54578287015190505b612b5e8582612ae0565b865550612bc6565b601f198416612b7486612950565b60005b82811015612b9c57848901518255600182019150602085019450602081019050612b77565b86831015612bb95784890151612bb5601f891682612ac2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c08826122af565b9150612c13836122af565b9250828201905080821115612c2b57612c2a612bce565b5b92915050565b6000612c3c826122af565b9150612c47836122af565b9250828202612c55816122af565b91508282048414831517612c6c57612c6b612bce565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612ca9601d83612208565b9150612cb482612c73565b602082019050919050565b60006020820190508181036000830152612cd881612c9c565b9050919050565b7f4e6f206d6f7265206c6566742e00000000000000000000000000000000000000600082015250565b6000612d15600d83612208565b9150612d2082612cdf565b602082019050919050565b60006020820190508181036000830152612d4481612d08565b9050919050565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b6000612d81601583612208565b9150612d8c82612d4b565b602082019050919050565b60006020820190508181036000830152612db081612d74565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ded601383612208565b9150612df882612db7565b602082019050919050565b60006020820190508181036000830152612e1c81612de0565b9050919050565b7f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e742e0000600082015250565b6000612e59601e83612208565b9150612e6482612e23565b602082019050919050565b60006020820190508181036000830152612e8881612e4c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612eeb602f83612208565b9150612ef682612e8f565b604082019050919050565b60006020820190508181036000830152612f1a81612ede565b9050919050565b600081905092915050565b60008154612f3981612801565b612f438186612f21565b94506001821660008114612f5e5760018114612f7357612fa6565b60ff1983168652811515820286019350612fa6565b612f7c85612950565b60005b83811015612f9e57815481890152600182019150602081019050612f7f565b838801955050505b50505092915050565b6000612fba826121fd565b612fc48185612f21565b9350612fd4818560208601612219565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613016600583612f21565b915061302182612fe0565b600582019050919050565b60006130388285612f2c565b91506130448284612faf565b915061304f82613009565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130b7602683612208565b91506130c28261305b565b604082019050919050565b600060208201905081810360008301526130e6816130aa565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613114826130ed565b61311e81856130f8565b935061312e818560208601612219565b61313781612243565b840191505092915050565b60006080820190506131576000830187612344565b6131646020830186612344565b61317160408301856123da565b81810360608301526131838184613109565b905095945050505050565b60008151905061319d8161216e565b92915050565b6000602082840312156131b9576131b8612138565b5b60006131c78482850161318e565b91505092915050565b60006131db826122af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361320d5761320c612bce565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613252826122af565b915061325d836122af565b92508261326d5761326c613218565b5b828204905092915050565b6000613283826122af565b915061328e836122af565b92508282039050818111156132a6576132a5612bce565b5b92915050565b60006132b7826122af565b91506132c2836122af565b9250826132d2576132d1613218565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a2231f5ecfd88474a870df0ca3603ea05540d4e176aa6bc319718743b3b0ec7c64736f6c63430008120033697066733a2f2f626166796265696262646e796b777476737261636b65707a6c716f616673627375683333676a7234776f746735673577333579653678686c796d612f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105c5578063e985e9c5146105f0578063f2fde38b1461062d578063f968adbe14610656576101b7565b8063b88d4fde14610534578063c87b56dd1461055d578063d12397301461059a576101b7565b8063a035b1fe116100c6578063a035b1fe14610499578063a0712d68146104c4578063a22cb465146104e0578063a702735714610509576101b7565b80638da5cb5b1461041a57806391b7f5ed1461044557806395d89b411461046e576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780637ba5e62114610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061219a565b610681565b6040516101f091906121e2565b60405180910390f35b34801561020557600080fd5b5061020e610713565b60405161021b919061228d565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906122e5565b6107a5565b6040516102589190612353565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061239a565b610821565b005b34801561029657600080fd5b5061029f6109c7565b6040516102ac91906123e9565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612404565b6109de565b005b3480156102ea57600080fd5b506102f36109ee565b60405161030091906123e9565b60405180910390f35b34801561031557600080fd5b5061031e6109f4565b005b34801561032c57600080fd5b5061034760048036038101906103429190612404565b610b1f565b005b34801561035557600080fd5b50610370600480360381019061036b919061258c565b610b3f565b005b34801561037e57600080fd5b50610399600480360381019061039491906122e5565b610bce565b6040516103a69190612353565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906125d5565b610be0565b6040516103e391906123e9565b60405180910390f35b3480156103f857600080fd5b50610401610c98565b005b34801561040f57600080fd5b50610418610d20565b005b34801561042657600080fd5b5061042f610dc8565b60405161043c9190612353565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906122e5565b610df2565b005b34801561047a57600080fd5b50610483610e78565b604051610490919061228d565b60405180910390f35b3480156104a557600080fd5b506104ae610f0a565b6040516104bb91906123e9565b60405180910390f35b6104de60048036038101906104d991906122e5565b610f10565b005b3480156104ec57600080fd5b506105076004803603810190610502919061262e565b6111ca565b005b34801561051557600080fd5b5061051e611341565b60405161052b91906123e9565b60405180910390f35b34801561054057600080fd5b5061055b6004803603810190610556919061270f565b611347565b005b34801561056957600080fd5b50610584600480360381019061057f91906122e5565b6113ba565b604051610591919061228d565b60405180910390f35b3480156105a657600080fd5b506105af611436565b6040516105bc91906121e2565b60405180910390f35b3480156105d157600080fd5b506105da611449565b6040516105e791906123e9565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612792565b61144f565b60405161062491906121e2565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906125d5565b6114e3565b005b34801561066257600080fd5b5061066b6115da565b60405161067891906123e9565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106dc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461072290612801565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90612801565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b0826115e0565b6107e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082c8261163f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610893576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108b261170b565b73ffffffffffffffffffffffffffffffffffffffff1614610915576108de816108d961170b565b61144f565b610914576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d1611713565b6001546000540303905090565b6109e9838383611718565b505050565b600d5481565b6109fc611abf565b73ffffffffffffffffffffffffffffffffffffffff16610a1a610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a679061287e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610a96906128cf565b60006040518083038185875af1925050503d8060008114610ad3576040519150601f19603f3d011682016040523d82523d6000602084013e610ad8565b606091505b5050905080610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390612930565b60405180910390fd5b50565b610b3a83838360405180602001604052806000815250611347565b505050565b610b47611abf565b73ffffffffffffffffffffffffffffffffffffffff16610b65610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb29061287e565b60405180910390fd5b8060099081610bca9190612afc565b5050565b6000610bd98261163f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ca0611abf565b73ffffffffffffffffffffffffffffffffffffffff16610cbe610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b9061287e565b60405180910390fd5b610d1e6000611ac7565b565b610d28611abf565b73ffffffffffffffffffffffffffffffffffffffff16610d46610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d939061287e565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dfa611abf565b73ffffffffffffffffffffffffffffffffffffffff16610e18610dc8565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061287e565b60405180910390fd5b80600a8190555050565b606060038054610e8790612801565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390612801565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610f289190612bfd565b83610f316109c7565b610f3b9190612bfd565b108015610f945750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f919190612bfd565b11155b90508015610fa157600091505b8183610fad9190612c31565b341015610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690612cbf565b60405180910390fd5b6001600e54610ffe9190612bfd565b836110076109c7565b6110119190612bfd565b10611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890612d2b565b60405180910390fd5b600f60009054906101000a900460ff166110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790612d97565b60405180910390fd5b6001600b546110af9190612bfd565b83106110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790612e03565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590612e6f565b60405180910390fd5b80156111bb5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111b39190612bfd565b925050819055505b6111c53384611b8d565b505050565b6111d261170b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611236576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061124361170b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112f061170b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133591906121e2565b60405180910390a35050565b600c5481565b611352848484611718565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113b45761137d84848484611bab565b6113b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113c5826115e0565b611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90612f01565b60405180910390fd5b600961140f83611cfb565b60405160200161142092919061302c565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114eb611abf565b73ffffffffffffffffffffffffffffffffffffffff16611509610dc8565b73ffffffffffffffffffffffffffffffffffffffff161461155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061287e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c5906130cd565b60405180910390fd5b6115d781611ac7565b50565b600b5481565b6000816115eb611713565b111580156115fa575060005482105b8015611638575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061164e611713565b116116d4576000548110156116d35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036116d1575b600081036116c757600460008360019003935083815260200190815260200160002054905061169d565b8092505050611706565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006117238261163f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461178a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117ab61170b565b73ffffffffffffffffffffffffffffffffffffffff1614806117da57506117d9856117d461170b565b61144f565b5b8061181f57506117e861170b565b73ffffffffffffffffffffffffffffffffffffffff16611807846107a5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611858576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118cb8585856001611e5b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6119c886611e61565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611a505760006001840190506000600460008381526020019081526020016000205403611a4e576000548114611a4d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ab88585856001611e6b565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ba7828260405180602001604052806000815250611e71565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd161170b565b8786866040518563ffffffff1660e01b8152600401611bf39493929190613142565b6020604051808303816000875af1925050508015611c2f57506040513d601f19601f82011682018060405250810190611c2c91906131a3565b60015b611ca8573d8060008114611c5f576040519150601f19603f3d011682016040523d82523d6000602084013e611c64565b606091505b506000815103611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611d42576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e56565b600082905060005b60008214611d74578080611d5d906131d0565b915050600a82611d6d9190613247565b9150611d4a565b60008167ffffffffffffffff811115611d9057611d8f612461565b5b6040519080825280601f01601f191660200182016040528015611dc25781602001600182028036833780820191505090505b5090505b60008514611e4f57600182611ddb9190613278565b9150600a85611dea91906132ac565b6030611df69190612bfd565b60f81b818381518110611e0c57611e0b6132dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e489190613247565b9450611dc6565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611edd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611f17576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f246000858386611e5b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611f8960018514612124565b901b60a042901b611f9986611e61565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461209d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461204d6000878480600101955087611bab565b612083576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611fde57826000541461209857600080fd5b612108565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061209e575b81600081905550505061211e6000858386611e6b565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61217781612142565b811461218257600080fd5b50565b6000813590506121948161216e565b92915050565b6000602082840312156121b0576121af612138565b5b60006121be84828501612185565b91505092915050565b60008115159050919050565b6121dc816121c7565b82525050565b60006020820190506121f760008301846121d3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561223757808201518184015260208101905061221c565b60008484015250505050565b6000601f19601f8301169050919050565b600061225f826121fd565b6122698185612208565b9350612279818560208601612219565b61228281612243565b840191505092915050565b600060208201905081810360008301526122a78184612254565b905092915050565b6000819050919050565b6122c2816122af565b81146122cd57600080fd5b50565b6000813590506122df816122b9565b92915050565b6000602082840312156122fb576122fa612138565b5b6000612309848285016122d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061233d82612312565b9050919050565b61234d81612332565b82525050565b60006020820190506123686000830184612344565b92915050565b61237781612332565b811461238257600080fd5b50565b6000813590506123948161236e565b92915050565b600080604083850312156123b1576123b0612138565b5b60006123bf85828601612385565b92505060206123d0858286016122d0565b9150509250929050565b6123e3816122af565b82525050565b60006020820190506123fe60008301846123da565b92915050565b60008060006060848603121561241d5761241c612138565b5b600061242b86828701612385565b935050602061243c86828701612385565b925050604061244d868287016122d0565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61249982612243565b810181811067ffffffffffffffff821117156124b8576124b7612461565b5b80604052505050565b60006124cb61212e565b90506124d78282612490565b919050565b600067ffffffffffffffff8211156124f7576124f6612461565b5b61250082612243565b9050602081019050919050565b82818337600083830152505050565b600061252f61252a846124dc565b6124c1565b90508281526020810184848401111561254b5761254a61245c565b5b61255684828561250d565b509392505050565b600082601f83011261257357612572612457565b5b813561258384826020860161251c565b91505092915050565b6000602082840312156125a2576125a1612138565b5b600082013567ffffffffffffffff8111156125c0576125bf61213d565b5b6125cc8482850161255e565b91505092915050565b6000602082840312156125eb576125ea612138565b5b60006125f984828501612385565b91505092915050565b61260b816121c7565b811461261657600080fd5b50565b60008135905061262881612602565b92915050565b6000806040838503121561264557612644612138565b5b600061265385828601612385565b925050602061266485828601612619565b9150509250929050565b600067ffffffffffffffff82111561268957612688612461565b5b61269282612243565b9050602081019050919050565b60006126b26126ad8461266e565b6124c1565b9050828152602081018484840111156126ce576126cd61245c565b5b6126d984828561250d565b509392505050565b600082601f8301126126f6576126f5612457565b5b813561270684826020860161269f565b91505092915050565b6000806000806080858703121561272957612728612138565b5b600061273787828801612385565b945050602061274887828801612385565b9350506040612759878288016122d0565b925050606085013567ffffffffffffffff81111561277a5761277961213d565b5b612786878288016126e1565b91505092959194509250565b600080604083850312156127a9576127a8612138565b5b60006127b785828601612385565b92505060206127c885828601612385565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061281957607f821691505b60208210810361282c5761282b6127d2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612868602083612208565b915061287382612832565b602082019050919050565b600060208201905081810360008301526128978161285b565b9050919050565b600081905092915050565b50565b60006128b960008361289e565b91506128c4826128a9565b600082019050919050565b60006128da826128ac565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061291a601083612208565b9150612925826128e4565b602082019050919050565b600060208201905081810360008301526129498161290d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612975565b6129bc8683612975565b95508019841693508086168417925050509392505050565b6000819050919050565b60006129f96129f46129ef846122af565b6129d4565b6122af565b9050919050565b6000819050919050565b612a13836129de565b612a27612a1f82612a00565b848454612982565b825550505050565b600090565b612a3c612a2f565b612a47818484612a0a565b505050565b5b81811015612a6b57612a60600082612a34565b600181019050612a4d565b5050565b601f821115612ab057612a8181612950565b612a8a84612965565b81016020851015612a99578190505b612aad612aa585612965565b830182612a4c565b50505b505050565b600082821c905092915050565b6000612ad360001984600802612ab5565b1980831691505092915050565b6000612aec8383612ac2565b9150826002028217905092915050565b612b05826121fd565b67ffffffffffffffff811115612b1e57612b1d612461565b5b612b288254612801565b612b33828285612a6f565b600060209050601f831160018114612b665760008415612b54578287015190505b612b5e8582612ae0565b865550612bc6565b601f198416612b7486612950565b60005b82811015612b9c57848901518255600182019150602085019450602081019050612b77565b86831015612bb95784890151612bb5601f891682612ac2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c08826122af565b9150612c13836122af565b9250828201905080821115612c2b57612c2a612bce565b5b92915050565b6000612c3c826122af565b9150612c47836122af565b9250828202612c55816122af565b91508282048414831517612c6c57612c6b612bce565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612ca9601d83612208565b9150612cb482612c73565b602082019050919050565b60006020820190508181036000830152612cd881612c9c565b9050919050565b7f4e6f206d6f7265206c6566742e00000000000000000000000000000000000000600082015250565b6000612d15600d83612208565b9150612d2082612cdf565b602082019050919050565b60006020820190508181036000830152612d4481612d08565b9050919050565b7f4d696e74206973206e6f74206c697665207965742e0000000000000000000000600082015250565b6000612d81601583612208565b9150612d8c82612d4b565b602082019050919050565b60006020820190508181036000830152612db081612d74565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ded601383612208565b9150612df882612db7565b602082019050919050565b60006020820190508181036000830152612e1c81612de0565b9050919050565b7f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e742e0000600082015250565b6000612e59601e83612208565b9150612e6482612e23565b602082019050919050565b60006020820190508181036000830152612e8881612e4c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612eeb602f83612208565b9150612ef682612e8f565b604082019050919050565b60006020820190508181036000830152612f1a81612ede565b9050919050565b600081905092915050565b60008154612f3981612801565b612f438186612f21565b94506001821660008114612f5e5760018114612f7357612fa6565b60ff1983168652811515820286019350612fa6565b612f7c85612950565b60005b83811015612f9e57815481890152600182019150602081019050612f7f565b838801955050505b50505092915050565b6000612fba826121fd565b612fc48185612f21565b9350612fd4818560208601612219565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613016600583612f21565b915061302182612fe0565b600582019050919050565b60006130388285612f2c565b91506130448284612faf565b915061304f82613009565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130b7602683612208565b91506130c28261305b565b604082019050919050565b600060208201905081810360008301526130e6816130aa565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613114826130ed565b61311e81856130f8565b935061312e818560208601612219565b61313781612243565b840191505092915050565b60006080820190506131576000830187612344565b6131646020830186612344565b61317160408301856123da565b81810360608301526131838184613109565b905095945050505050565b60008151905061319d8161216e565b92915050565b6000602082840312156131b9576131b8612138565b5b60006131c78482850161318e565b91505092915050565b60006131db826122af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361320d5761320c612bce565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613252826122af565b915061325d836122af565b92508261326d5761326c613218565b5b828204905092915050565b6000613283826122af565b915061328e836122af565b92508282039050818111156132a6576132a5612bce565b5b92915050565b60006132b7826122af565b91506132c2836122af565b9250826132d2576132d1613218565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a2231f5ecfd88474a870df0ca3603ea05540d4e176aa6bc319718743b3b0ec7c64736f6c63430008120033

Deployed Bytecode Sourcemap

76476:2338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13047:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18060:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20128:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19588:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12101:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21014:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76698:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78605:206;;;;;;;;;;;;;:::i;:::-;;21255:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78317:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17849:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13726:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43568:103;;;;;;;;;;;;;:::i;:::-;;78513:84;;;;;;;;;;;;;:::i;:::-;;42917:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78413:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18229:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76580:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77071:764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20404:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76656:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21511:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77959:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76776:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76736;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20783:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76621:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13047:615;13132:4;13447:10;13432:25;;:11;:25;;;;:102;;;;13524:10;13509:25;;:11;:25;;;;13432:102;:179;;;;13601:10;13586:25;;:11;:25;;;;13432:179;13412:199;;13047:615;;;:::o;18060:100::-;18114:13;18147:5;18140:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18060:100;:::o;20128:204::-;20196:7;20221:16;20229:7;20221;:16::i;:::-;20216:64;;20246:34;;;;;;;;;;;;;;20216:64;20300:15;:24;20316:7;20300:24;;;;;;;;;;;;;;;;;;;;;20293:31;;20128:204;;;:::o;19588:474::-;19661:13;19693:27;19712:7;19693:18;:27::i;:::-;19661:61;;19743:5;19737:11;;:2;:11;;;19733:48;;19757:24;;;;;;;;;;;;;;19733:48;19821:5;19798:28;;:19;:17;:19::i;:::-;:28;;;19794:175;;19846:44;19863:5;19870:19;:17;:19::i;:::-;19846:16;:44::i;:::-;19841:128;;19918:35;;;;;;;;;;;;;;19841:128;19794:175;20008:2;19981:15;:24;19997:7;19981:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20046:7;20042:2;20026:28;;20035:5;20026:28;;;;;;;;;;;;19650:412;19588:474;;:::o;12101:315::-;12154:7;12382:15;:13;:15::i;:::-;12367:12;;12351:13;;:28;:46;12344:53;;12101:315;:::o;21014:170::-;21148:28;21158:4;21164:2;21168:7;21148:9;:28::i;:::-;21014:170;;;:::o;76698:31::-;;;;:::o;78605:206::-;43148:12;:10;:12::i;:::-;43137:23;;:7;:5;:7::i;:::-;:23;;;43129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78656:12:::1;78682:10;78674:24;;78720:21;78674:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78655:101;;;78775:7;78767:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;78644:167;78605:206::o:0;21255:185::-;21393:39;21410:4;21416:2;21420:7;21393:39;;;;;;;;;;;;:16;:39::i;:::-;21255:185;;;:::o;78317:88::-;43148:12;:10;:12::i;:::-;43137:23;;:7;:5;:7::i;:::-;:23;;;43129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78394:3:::1;78384:7;:13;;;;;;:::i;:::-;;78317:88:::0;:::o;17849:144::-;17913:7;17956:27;17975:7;17956:18;:27::i;:::-;17933:52;;17849:144;;;:::o;13726:224::-;13790:7;13831:1;13814:19;;:5;:19;;;13810:60;;13842:28;;;;;;;;;;;;;;13810:60;9065:13;13888:18;:25;13907:5;13888:25;;;;;;;;;;;;;;;;:54;13881:61;;13726:224;;;:::o;43568:103::-;43148:12;:10;:12::i;:::-;43137:23;;:7;:5;:7::i;:::-;:23;;;43129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43633:30:::1;43660:1;43633:18;:30::i;:::-;43568:103::o:0;78513:84::-;43148:12;:10;:12::i;:::-;43137:23;;:7;:5;:7::i;:::-;:23;;;43129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78578:11:::1;;;;;;;;;;;78577:12;78563:11;;:26;;;;;;;;;;;;;;;;;;78513:84::o:0;42917:87::-;42963:7;42990:6;;;;;;;;;;;42983:13;;42917:87;:::o;78413:92::-;43148:12;:10;:12::i;:::-;43137:23;;:7;:5;:7::i;:::-;:23;;;43129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78488:9:::1;78480:5;:17;;;;78413:92:::0;:::o;18229:104::-;18285:13;18318:7;18311:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18229:104;:::o;76580:34::-;;;;:::o;77071:764::-;77128:12;77143:5;;77128:20;;77159:11;77211:1;77199:9;;:13;;;;:::i;:::-;77191:5;77175:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77174:115;;;;;77272:16;;77263:5;77231:17;:29;77249:10;77231:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;77174:115;77159:131;;77307:6;77303:47;;;77337:1;77330:8;;77303:47;77389:4;77381:5;:12;;;;:::i;:::-;77368:9;:25;;77360:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77482:1;77470:9;;:13;;;;:::i;:::-;77462:5;77446:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77438:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;77520:11;;;;;;;;;;;77512:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;77595:1;77584:8;;:12;;;;:::i;:::-;77576:5;:20;77568:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77652:10;77639:23;;:9;:23;;;77631:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;77714:6;77710:77;;;77770:5;77737:17;:29;77755:10;77737:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;77710:77;77799:28;77809:10;77821:5;77799:9;:28::i;:::-;77117:718;;77071:764;:::o;20404:308::-;20515:19;:17;:19::i;:::-;20503:31;;:8;:31;;;20499:61;;20543:17;;;;;;;;;;;;;;20499:61;20625:8;20573:18;:39;20592:19;:17;:19::i;:::-;20573:39;;;;;;;;;;;;;;;:49;20613:8;20573:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20685:8;20649:55;;20664:19;:17;:19::i;:::-;20649:55;;;20695:8;20649:55;;;;;;:::i;:::-;;;;;;;;20404:308;;:::o;76656:35::-;;;;:::o;21511:396::-;21678:28;21688:4;21694:2;21698:7;21678:9;:28::i;:::-;21739:1;21721:2;:14;;;:19;21717:183;;21760:56;21791:4;21797:2;21801:7;21810:5;21760:30;:56::i;:::-;21755:145;;21844:40;;;;;;;;;;;;;;21755:145;21717:183;21511:396;;;;:::o;77959:350::-;78077:13;78130:16;78138:7;78130;:16::i;:::-;78108:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78263:7;78272:18;:7;:16;:18::i;:::-;78246:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78232:69;;77959:350;;;:::o;76776:31::-;;;;;;;;;;;;;:::o;76736:::-;;;;:::o;20783:164::-;20880:4;20904:18;:25;20923:5;20904:25;;;;;;;;;;;;;;;:35;20930:8;20904:35;;;;;;;;;;;;;;;;;;;;;;;;;20897:42;;20783:164;;;;:::o;43826:201::-;43148:12;:10;:12::i;:::-;43137:23;;:7;:5;:7::i;:::-;:23;;;43129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43935:1:::1;43915:22;;:8;:22;;::::0;43907:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43991:28;44010:8;43991:18;:28::i;:::-;43826:201:::0;:::o;76621:28::-;;;;:::o;22162:273::-;22219:4;22275:7;22256:15;:13;:15::i;:::-;:26;;:66;;;;;22309:13;;22299:7;:23;22256:66;:152;;;;;22407:1;9835:8;22360:17;:26;22378:7;22360:26;;;;;;;;;;;;:43;:48;22256:152;22236:172;;22162:273;;;:::o;15364:1129::-;15431:7;15451:12;15466:7;15451:22;;15534:4;15515:15;:13;:15::i;:::-;:23;15511:915;;15568:13;;15561:4;:20;15557:869;;;15606:14;15623:17;:23;15641:4;15623:23;;;;;;;;;;;;15606:40;;15739:1;9835:8;15712:6;:23;:28;15708:699;;16231:113;16248:1;16238:6;:11;16231:113;;16291:17;:25;16309:6;;;;;;;16291:25;;;;;;;;;;;;16282:34;;16231:113;;;16377:6;16370:13;;;;;;15708:699;15583:843;15557:869;15511:915;16454:31;;;;;;;;;;;;;;15364:1129;;;;:::o;36144:105::-;36204:7;36231:10;36224:17;;36144:105;:::o;11624:92::-;11680:7;11624:92;:::o;27401:2515::-;27516:27;27546;27565:7;27546:18;:27::i;:::-;27516:57;;27631:4;27590:45;;27606:19;27590:45;;;27586:86;;27644:28;;;;;;;;;;;;;;27586:86;27685:22;27734:4;27711:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27755:43;27772:4;27778:19;:17;:19::i;:::-;27755:16;:43::i;:::-;27711:87;:147;;;;27839:19;:17;:19::i;:::-;27815:43;;:20;27827:7;27815:11;:20::i;:::-;:43;;;27711:147;27685:174;;27877:17;27872:66;;27903:35;;;;;;;;;;;;;;27872:66;27967:1;27953:16;;:2;:16;;;27949:52;;27978:23;;;;;;;;;;;;;;27949:52;28014:43;28036:4;28042:2;28046:7;28055:1;28014:21;:43::i;:::-;28130:15;:24;28146:7;28130:24;;;;;;;;;;;;28123:31;;;;;;;;;;;28522:18;:24;28541:4;28522:24;;;;;;;;;;;;;;;;28520:26;;;;;;;;;;;;28591:18;:22;28610:2;28591:22;;;;;;;;;;;;;;;;28589:24;;;;;;;;;;;10117:8;9719:3;28972:15;:41;;28930:21;28948:2;28930:17;:21::i;:::-;:84;:128;28884:17;:26;28902:7;28884:26;;;;;;;;;;;:174;;;;29228:1;10117:8;29178:19;:46;:51;29174:626;;29250:19;29282:1;29272:7;:11;29250:33;;29439:1;29405:17;:30;29423:11;29405:30;;;;;;;;;;;;:35;29401:384;;29543:13;;29528:11;:28;29524:242;;29723:19;29690:17;:30;29708:11;29690:30;;;;;;;;;;;:52;;;;29524:242;29401:384;29231:569;29174:626;29847:7;29843:2;29828:27;;29837:4;29828:27;;;;;;;;;;;;29866:42;29887:4;29893:2;29897:7;29906:1;29866:20;:42::i;:::-;27505:2411;;27401:2515;;;:::o;41588:98::-;41641:7;41668:10;41661:17;;41588:98;:::o;44187:191::-;44261:16;44280:6;;;;;;;;;;;44261:25;;44306:8;44297:6;;:17;;;;;;;;;;;;;;;;;;44361:8;44330:40;;44351:8;44330:40;;;;;;;;;;;;44250:128;44187:191;:::o;22519:104::-;22588:27;22598:2;22602:8;22588:27;;;;;;;;;;;;:9;:27::i;:::-;22519:104;;:::o;33613:716::-;33776:4;33822:2;33797:45;;;33843:19;:17;:19::i;:::-;33864:4;33870:7;33879:5;33797:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33793:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34097:1;34080:6;:13;:18;34076:235;;34126:40;;;;;;;;;;;;;;34076:235;34269:6;34263:13;34254:6;34250:2;34246:15;34239:38;33793:529;33966:54;;;33956:64;;;:6;:64;;;;33949:71;;;33613:716;;;;;;:::o;38789:723::-;38845:13;39075:1;39066:5;:10;39062:53;;39093:10;;;;;;;;;;;;;;;;;;;;;39062:53;39125:12;39140:5;39125:20;;39156:14;39181:78;39196:1;39188:4;:9;39181:78;;39214:8;;;;;:::i;:::-;;;;39245:2;39237:10;;;;;:::i;:::-;;;39181:78;;;39269:19;39301:6;39291:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39269:39;;39319:154;39335:1;39326:5;:10;39319:154;;39363:1;39353:11;;;;;:::i;:::-;;;39430:2;39422:5;:10;;;;:::i;:::-;39409:2;:24;;;;:::i;:::-;39396:39;;39379:6;39386;39379:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39459:2;39450:11;;;;;:::i;:::-;;;39319:154;;;39497:6;39483:21;;;;;38789:723;;;;:::o;34977:159::-;;;;;:::o;19149:148::-;19213:14;19274:5;19264:15;;19149:148;;;:::o;35795:158::-;;;;;:::o;22996:2236::-;23119:20;23142:13;;23119:36;;23184:1;23170:16;;:2;:16;;;23166:48;;23195:19;;;;;;;;;;;;;;23166:48;23241:1;23229:8;:13;23225:44;;23251:18;;;;;;;;;;;;;;23225:44;23282:61;23312:1;23316:2;23320:12;23334:8;23282:21;:61::i;:::-;23886:1;9202:2;23857:1;:25;;23856:31;23844:8;:44;23818:18;:22;23837:2;23818:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9982:3;24287:29;24314:1;24302:8;:13;24287:14;:29::i;:::-;:56;;9719:3;24224:15;:41;;24182:21;24200:2;24182:17;:21::i;:::-;:84;:162;24131:17;:31;24149:12;24131:31;;;;;;;;;;;:213;;;;24361:20;24384:12;24361:35;;24411:11;24440:8;24425:12;:23;24411:37;;24487:1;24469:2;:14;;;:19;24465:635;;24509:313;24565:12;24561:2;24540:38;;24557:1;24540:38;;;;;;;;;;;;24606:69;24645:1;24649:2;24653:14;;;;;;24669:5;24606:30;:69::i;:::-;24601:174;;24711:40;;;;;;;;;;;;;;24601:174;24817:3;24802:12;:18;24509:313;;24903:12;24886:13;;:29;24882:43;;24917:8;;;24882:43;24465:635;;;24966:119;25022:14;;;;;;25018:2;24997:40;;25014:1;24997:40;;;;;;;;;;;;25080:3;25065:12;:18;24966:119;;24465:635;25130:12;25114:13;:28;;;;23595:1559;;25164:60;25193:1;25197:2;25201:12;25215:8;25164:20;:60::i;:::-;23108:2124;22996:2236;;;:::o;19384:142::-;19442:14;19503:5;19493:15;;19384:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:182::-;12743:34;12739:1;12731:6;12727:14;12720:58;12603:182;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:147::-;13689:11;13726:3;13711:18;;13588:147;;;;:::o;13741:114::-;;:::o;13861:398::-;14020:3;14041:83;14122:1;14117:3;14041:83;:::i;:::-;14034:90;;14133:93;14222:3;14133:93;:::i;:::-;14251:1;14246:3;14242:11;14235:18;;13861:398;;;:::o;14265:379::-;14449:3;14471:147;14614:3;14471:147;:::i;:::-;14464:154;;14635:3;14628:10;;14265:379;;;:::o;14650:166::-;14790:18;14786:1;14778:6;14774:14;14767:42;14650:166;:::o;14822:366::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:419::-;15360:4;15398:2;15387:9;15383:18;15375:26;;15447:9;15441:4;15437:20;15433:1;15422:9;15418:17;15411:47;15475:131;15601:4;15475:131;:::i;:::-;15467:139;;15194:419;;;:::o;15619:141::-;15668:4;15691:3;15683:11;;15714:3;15711:1;15704:14;15748:4;15745:1;15735:18;15727:26;;15619:141;;;:::o;15766:93::-;15803:6;15850:2;15845;15838:5;15834:14;15830:23;15820:33;;15766:93;;;:::o;15865:107::-;15909:8;15959:5;15953:4;15949:16;15928:37;;15865:107;;;;:::o;15978:393::-;16047:6;16097:1;16085:10;16081:18;16120:97;16150:66;16139:9;16120:97;:::i;:::-;16238:39;16268:8;16257:9;16238:39;:::i;:::-;16226:51;;16310:4;16306:9;16299:5;16295:21;16286:30;;16359:4;16349:8;16345:19;16338:5;16335:30;16325:40;;16054:317;;15978:393;;;;;:::o;16377:60::-;16405:3;16426:5;16419:12;;16377:60;;;:::o;16443:142::-;16493:9;16526:53;16544:34;16553:24;16571:5;16553:24;:::i;:::-;16544:34;:::i;:::-;16526:53;:::i;:::-;16513:66;;16443:142;;;:::o;16591:75::-;16634:3;16655:5;16648:12;;16591:75;;;:::o;16672:269::-;16782:39;16813:7;16782:39;:::i;:::-;16843:91;16892:41;16916:16;16892:41;:::i;:::-;16884:6;16877:4;16871:11;16843:91;:::i;:::-;16837:4;16830:105;16748:193;16672:269;;;:::o;16947:73::-;16992:3;16947:73;:::o;17026:189::-;17103:32;;:::i;:::-;17144:65;17202:6;17194;17188:4;17144:65;:::i;:::-;17079:136;17026:189;;:::o;17221:186::-;17281:120;17298:3;17291:5;17288:14;17281:120;;;17352:39;17389:1;17382:5;17352:39;:::i;:::-;17325:1;17318:5;17314:13;17305:22;;17281:120;;;17221:186;;:::o;17413:543::-;17514:2;17509:3;17506:11;17503:446;;;17548:38;17580:5;17548:38;:::i;:::-;17632:29;17650:10;17632:29;:::i;:::-;17622:8;17618:44;17815:2;17803:10;17800:18;17797:49;;;17836:8;17821:23;;17797:49;17859:80;17915:22;17933:3;17915:22;:::i;:::-;17905:8;17901:37;17888:11;17859:80;:::i;:::-;17518:431;;17503:446;17413:543;;;:::o;17962:117::-;18016:8;18066:5;18060:4;18056:16;18035:37;;17962:117;;;;:::o;18085:169::-;18129:6;18162:51;18210:1;18206:6;18198:5;18195:1;18191:13;18162:51;:::i;:::-;18158:56;18243:4;18237;18233:15;18223:25;;18136:118;18085:169;;;;:::o;18259:295::-;18335:4;18481:29;18506:3;18500:4;18481:29;:::i;:::-;18473:37;;18543:3;18540:1;18536:11;18530:4;18527:21;18519:29;;18259:295;;;;:::o;18559:1395::-;18676:37;18709:3;18676:37;:::i;:::-;18778:18;18770:6;18767:30;18764:56;;;18800:18;;:::i;:::-;18764:56;18844:38;18876:4;18870:11;18844:38;:::i;:::-;18929:67;18989:6;18981;18975:4;18929:67;:::i;:::-;19023:1;19047:4;19034:17;;19079:2;19071:6;19068:14;19096:1;19091:618;;;;19753:1;19770:6;19767:77;;;19819:9;19814:3;19810:19;19804:26;19795:35;;19767:77;19870:67;19930:6;19923:5;19870:67;:::i;:::-;19864:4;19857:81;19726:222;19061:887;;19091:618;19143:4;19139:9;19131:6;19127:22;19177:37;19209:4;19177:37;:::i;:::-;19236:1;19250:208;19264:7;19261:1;19258:14;19250:208;;;19343:9;19338:3;19334:19;19328:26;19320:6;19313:42;19394:1;19386:6;19382:14;19372:24;;19441:2;19430:9;19426:18;19413:31;;19287:4;19284:1;19280:12;19275:17;;19250:208;;;19486:6;19477:7;19474:19;19471:179;;;19544:9;19539:3;19535:19;19529:26;19587:48;19629:4;19621:6;19617:17;19606:9;19587:48;:::i;:::-;19579:6;19572:64;19494:156;19471:179;19696:1;19692;19684:6;19680:14;19676:22;19670:4;19663:36;19098:611;;;19061:887;;18651:1303;;;18559:1395;;:::o;19960:180::-;20008:77;20005:1;19998:88;20105:4;20102:1;20095:15;20129:4;20126:1;20119:15;20146:191;20186:3;20205:20;20223:1;20205:20;:::i;:::-;20200:25;;20239:20;20257:1;20239:20;:::i;:::-;20234:25;;20282:1;20279;20275:9;20268:16;;20303:3;20300:1;20297:10;20294:36;;;20310:18;;:::i;:::-;20294:36;20146:191;;;;:::o;20343:410::-;20383:7;20406:20;20424:1;20406:20;:::i;:::-;20401:25;;20440:20;20458:1;20440:20;:::i;:::-;20435:25;;20495:1;20492;20488:9;20517:30;20535:11;20517:30;:::i;:::-;20506:41;;20696:1;20687:7;20683:15;20680:1;20677:22;20657:1;20650:9;20630:83;20607:139;;20726:18;;:::i;:::-;20607:139;20391:362;20343:410;;;;:::o;20759:179::-;20899:31;20895:1;20887:6;20883:14;20876:55;20759:179;:::o;20944:366::-;21086:3;21107:67;21171:2;21166:3;21107:67;:::i;:::-;21100:74;;21183:93;21272:3;21183:93;:::i;:::-;21301:2;21296:3;21292:12;21285:19;;20944:366;;;:::o;21316:419::-;21482:4;21520:2;21509:9;21505:18;21497:26;;21569:9;21563:4;21559:20;21555:1;21544:9;21540:17;21533:47;21597:131;21723:4;21597:131;:::i;:::-;21589:139;;21316:419;;;:::o;21741:163::-;21881:15;21877:1;21869:6;21865:14;21858:39;21741:163;:::o;21910:366::-;22052:3;22073:67;22137:2;22132:3;22073:67;:::i;:::-;22066:74;;22149:93;22238:3;22149:93;:::i;:::-;22267:2;22262:3;22258:12;22251:19;;21910:366;;;:::o;22282:419::-;22448:4;22486:2;22475:9;22471:18;22463:26;;22535:9;22529:4;22525:20;22521:1;22510:9;22506:17;22499:47;22563:131;22689:4;22563:131;:::i;:::-;22555:139;;22282:419;;;:::o;22707:171::-;22847:23;22843:1;22835:6;22831:14;22824:47;22707:171;:::o;22884:366::-;23026:3;23047:67;23111:2;23106:3;23047:67;:::i;:::-;23040:74;;23123:93;23212:3;23123:93;:::i;:::-;23241:2;23236:3;23232:12;23225:19;;22884:366;;;:::o;23256:419::-;23422:4;23460:2;23449:9;23445:18;23437:26;;23509:9;23503:4;23499:20;23495:1;23484:9;23480:17;23473:47;23537:131;23663:4;23537:131;:::i;:::-;23529:139;;23256:419;;;:::o;23681:169::-;23821:21;23817:1;23809:6;23805:14;23798:45;23681:169;:::o;23856:366::-;23998:3;24019:67;24083:2;24078:3;24019:67;:::i;:::-;24012:74;;24095:93;24184:3;24095:93;:::i;:::-;24213:2;24208:3;24204:12;24197:19;;23856:366;;;:::o;24228:419::-;24394:4;24432:2;24421:9;24417:18;24409:26;;24481:9;24475:4;24471:20;24467:1;24456:9;24452:17;24445:47;24509:131;24635:4;24509:131;:::i;:::-;24501:139;;24228:419;;;:::o;24653:180::-;24793:32;24789:1;24781:6;24777:14;24770:56;24653:180;:::o;24839:366::-;24981:3;25002:67;25066:2;25061:3;25002:67;:::i;:::-;24995:74;;25078:93;25167:3;25078:93;:::i;:::-;25196:2;25191:3;25187:12;25180:19;;24839:366;;;:::o;25211:419::-;25377:4;25415:2;25404:9;25400:18;25392:26;;25464:9;25458:4;25454:20;25450:1;25439:9;25435:17;25428:47;25492:131;25618:4;25492:131;:::i;:::-;25484:139;;25211:419;;;:::o;25636:234::-;25776:34;25772:1;25764:6;25760:14;25753:58;25845:17;25840:2;25832:6;25828:15;25821:42;25636:234;:::o;25876:366::-;26018:3;26039:67;26103:2;26098:3;26039:67;:::i;:::-;26032:74;;26115:93;26204:3;26115:93;:::i;:::-;26233:2;26228:3;26224:12;26217:19;;25876:366;;;:::o;26248:419::-;26414:4;26452:2;26441:9;26437:18;26429:26;;26501:9;26495:4;26491:20;26487:1;26476:9;26472:17;26465:47;26529:131;26655:4;26529:131;:::i;:::-;26521:139;;26248:419;;;:::o;26673:148::-;26775:11;26812:3;26797:18;;26673:148;;;;:::o;26851:874::-;26954:3;26991:5;26985:12;27020:36;27046:9;27020:36;:::i;:::-;27072:89;27154:6;27149:3;27072:89;:::i;:::-;27065:96;;27192:1;27181:9;27177:17;27208:1;27203:166;;;;27383:1;27378:341;;;;27170:549;;27203:166;27287:4;27283:9;27272;27268:25;27263:3;27256:38;27349:6;27342:14;27335:22;27327:6;27323:35;27318:3;27314:45;27307:52;;27203:166;;27378:341;27445:38;27477:5;27445:38;:::i;:::-;27505:1;27519:154;27533:6;27530:1;27527:13;27519:154;;;27607:7;27601:14;27597:1;27592:3;27588:11;27581:35;27657:1;27648:7;27644:15;27633:26;;27555:4;27552:1;27548:12;27543:17;;27519:154;;;27702:6;27697:3;27693:16;27686:23;;27385:334;;27170:549;;26958:767;;26851:874;;;;:::o;27731:390::-;27837:3;27865:39;27898:5;27865:39;:::i;:::-;27920:89;28002:6;27997:3;27920:89;:::i;:::-;27913:96;;28018:65;28076:6;28071:3;28064:4;28057:5;28053:16;28018:65;:::i;:::-;28108:6;28103:3;28099:16;28092:23;;27841:280;27731:390;;;;:::o;28127:155::-;28267:7;28263:1;28255:6;28251:14;28244:31;28127:155;:::o;28288:400::-;28448:3;28469:84;28551:1;28546:3;28469:84;:::i;:::-;28462:91;;28562:93;28651:3;28562:93;:::i;:::-;28680:1;28675:3;28671:11;28664:18;;28288:400;;;:::o;28694:695::-;28972:3;28994:92;29082:3;29073:6;28994:92;:::i;:::-;28987:99;;29103:95;29194:3;29185:6;29103:95;:::i;:::-;29096:102;;29215:148;29359:3;29215:148;:::i;:::-;29208:155;;29380:3;29373:10;;28694:695;;;;;:::o;29395:225::-;29535:34;29531:1;29523:6;29519:14;29512:58;29604:8;29599:2;29591:6;29587:15;29580:33;29395:225;:::o;29626:366::-;29768:3;29789:67;29853:2;29848:3;29789:67;:::i;:::-;29782:74;;29865:93;29954:3;29865:93;:::i;:::-;29983:2;29978:3;29974:12;29967:19;;29626:366;;;:::o;29998:419::-;30164:4;30202:2;30191:9;30187:18;30179:26;;30251:9;30245:4;30241:20;30237:1;30226:9;30222:17;30215:47;30279:131;30405:4;30279:131;:::i;:::-;30271:139;;29998:419;;;:::o;30423:98::-;30474:6;30508:5;30502:12;30492:22;;30423:98;;;:::o;30527:168::-;30610:11;30644:6;30639:3;30632:19;30684:4;30679:3;30675:14;30660:29;;30527:168;;;;:::o;30701:373::-;30787:3;30815:38;30847:5;30815:38;:::i;:::-;30869:70;30932:6;30927:3;30869:70;:::i;:::-;30862:77;;30948:65;31006:6;31001:3;30994:4;30987:5;30983:16;30948:65;:::i;:::-;31038:29;31060:6;31038:29;:::i;:::-;31033:3;31029:39;31022:46;;30791:283;30701:373;;;;:::o;31080:640::-;31275:4;31313:3;31302:9;31298:19;31290:27;;31327:71;31395:1;31384:9;31380:17;31371:6;31327:71;:::i;:::-;31408:72;31476:2;31465:9;31461:18;31452:6;31408:72;:::i;:::-;31490;31558:2;31547:9;31543:18;31534:6;31490:72;:::i;:::-;31609:9;31603:4;31599:20;31594:2;31583:9;31579:18;31572:48;31637:76;31708:4;31699:6;31637:76;:::i;:::-;31629:84;;31080:640;;;;;;;:::o;31726:141::-;31782:5;31813:6;31807:13;31798:22;;31829:32;31855:5;31829:32;:::i;:::-;31726:141;;;;:::o;31873:349::-;31942:6;31991:2;31979:9;31970:7;31966:23;31962:32;31959:119;;;31997:79;;:::i;:::-;31959:119;32117:1;32142:63;32197:7;32188:6;32177:9;32173:22;32142:63;:::i;:::-;32132:73;;32088:127;31873:349;;;;:::o;32228:233::-;32267:3;32290:24;32308:5;32290:24;:::i;:::-;32281:33;;32336:66;32329:5;32326:77;32323:103;;32406:18;;:::i;:::-;32323:103;32453:1;32446:5;32442:13;32435:20;;32228:233;;;:::o;32467:180::-;32515:77;32512:1;32505:88;32612:4;32609:1;32602:15;32636:4;32633:1;32626:15;32653:185;32693:1;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32744:20;32762:1;32744:20;:::i;:::-;32739:25;;32783:1;32773:35;;32788:18;;:::i;:::-;32773:35;32830:1;32827;32823:9;32818:14;;32653:185;;;;:::o;32844:194::-;32884:4;32904:20;32922:1;32904:20;:::i;:::-;32899:25;;32938:20;32956:1;32938:20;:::i;:::-;32933:25;;32982:1;32979;32975:9;32967:17;;33006:1;33000:4;32997:11;32994:37;;;33011:18;;:::i;:::-;32994:37;32844:194;;;;:::o;33044:176::-;33076:1;33093:20;33111:1;33093:20;:::i;:::-;33088:25;;33127:20;33145:1;33127:20;:::i;:::-;33122:25;;33166:1;33156:35;;33171:18;;:::i;:::-;33156:35;33212:1;33209;33205:9;33200:14;;33044:176;;;;:::o;33226:180::-;33274:77;33271:1;33264:88;33371:4;33368:1;33361:15;33395:4;33392:1;33385:15

Swarm Source

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