{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/gmp-sdk/util/Ownable.sol",
    "Parent Contracts": [
        "contracts/gmp-sdk/interfaces/IOwnable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract Ownable is IOwnable {\n    // keccak256('owner')\n    bytes32 internal constant _OWNER_SLOT = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0;\n    // keccak256('ownership-transfer')\n    bytes32 internal constant _OWNERSHIP_TRANSFER_SLOT = 0x9855384122b55936fbfb8ca5120e63c6537a1ac40caf6ae33502b3c5da8c87d1;\n\n    /**\n     * @notice Modifier that throws an error if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        if (owner() != msg.sender) revert NotOwner();\n\n        _;\n    }\n\n    /**\n     * @notice Returns the current owner of the contract.\n     * @return owner_ The current owner of the contract\n     */\n    function owner() public view returns (address owner_) {\n        assembly {\n            owner_ := sload(_OWNER_SLOT)\n        }\n    }\n\n    /**\n     * @notice Returns the pending owner of the contract.\n     * @return owner_ The pending owner of the contract\n     */\n    function pendingOwner() public view returns (address owner_) {\n        assembly {\n            owner_ := sload(_OWNERSHIP_TRANSFER_SLOT)\n        }\n    }\n\n    /**\n     * @notice Transfers ownership of the contract to a new account `newOwner`.\n     * @dev Can only be called by the current owner.\n     * @param newOwner The address to transfer ownership to\n     */\n    function transferOwnership(address newOwner) external virtual onlyOwner {\n        emit OwnershipTransferred(newOwner);\n\n        assembly {\n            sstore(_OWNER_SLOT, newOwner)\n            sstore(_OWNERSHIP_TRANSFER_SLOT, 0)\n        }\n    }\n\n    /**\n     * @notice Propose to transfer ownership of the contract to a new account `newOwner`.\n     * @dev Can only be called by the current owner. The ownership does not change\n     * until the new owner accepts the ownership transfer.\n     * @param newOwner The address to transfer ownership to\n     */\n    function proposeOwnership(address newOwner) external virtual onlyOwner {\n        emit OwnershipTransferStarted(newOwner);\n\n        assembly {\n            sstore(_OWNERSHIP_TRANSFER_SLOT, newOwner)\n        }\n    }\n\n    /**\n     * @notice Accepts ownership of the contract.\n     * @dev Can only be called by the pending owner\n     */\n    function acceptOwnership() external virtual {\n        address newOwner = pendingOwner();\n        if (newOwner != msg.sender) revert InvalidOwner();\n\n        emit OwnershipTransferred(newOwner);\n\n        assembly {\n            sstore(_OWNERSHIP_TRANSFER_SLOT, 0)\n            sstore(_OWNER_SLOT, newOwner)\n        }\n    }\n}"
}