{
    "Function": "calculateIncreasedAmount",
    "File": "src/libraries/DelegateTokenRegistryHelpers.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "RegistryHashes",
        "IDelegateRegistry"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "location"
    ],
    "Low-Level Calls": [],
    "Code": "function calculateIncreasedAmount(address delegateRegistry, bytes32 registryHash, uint256 increaseAmount) internal view returns (uint256) {\n        unchecked {\n            return\n                uint256(IDelegateRegistry(delegateRegistry).readSlot(bytes32(uint256(RegistryHashes.location(registryHash)) + RegistryStorage.POSITIONS_AMOUNT))) + increaseAmount;\n        }\n    }"
}