{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/basket/contracts/facets/shared/Reentry/LibReentryProtectionStorage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "library LibReentryProtectionStorage {\n    bytes32 constant REENTRY_STORAGE_POSITION =\n        keccak256(\"diamond.standard.reentry.storage\");\n\n    struct RPStorage {\n        uint256 lockCounter;\n    }\n\n    function rpStorage() internal pure returns (RPStorage storage bs) {\n        bytes32 position = REENTRY_STORAGE_POSITION;\n        assembly {\n            bs.slot := position\n        }\n    }\n}"
}