{
    "Function": "constructor",
    "File": "contracts/staking-rewards/Pausable.sol",
    "Parent Contracts": [
        "contracts/staking-rewards/Owned.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor() {\n        // This contract is abstract, and thus cannot be instantiated directly\n        require(owner != address(0), \"Owner must be set\");\n        // Paused will be false, and lastPauseTime will be 0 upon initialisation\n    }"
}