{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/gmp-sdk/upgradable/BaseProxy.sol",
    "Parent Contracts": [
        "contracts/gmp-sdk/interfaces/IProxy.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract BaseProxy is IProxy {\n    // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1)\n    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n    // keccak256('owner')\n    bytes32 internal constant _OWNER_SLOT = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0;\n\n    /**\n     * @dev Returns the current implementation address.\n     * @return implementation_ The address of the current implementation contract\n     */\n    function implementation() public view virtual returns (address implementation_) {\n        assembly {\n            implementation_ := sload(_IMPLEMENTATION_SLOT)\n        }\n    }\n\n    /**\n     * @dev Shadows the setup function of the implementation contract so it can't be called directly via the proxy.\n     * @param params The setup parameters for the implementation contract.\n     */\n    function setup(bytes calldata params) external {}\n\n    /**\n     * @dev Returns the contract ID. It can be used as a check during upgrades.\n     * Meant to be overridden in derived contracts.\n     * @return bytes32 The contract ID\n     */\n    function contractId() internal pure virtual returns (bytes32) {\n        return bytes32(0);\n    }\n\n    /**\n     * @dev Fallback function. Delegates the call to the current implementation contract.\n     */\n    fallback() external payable virtual {\n        address implementation_ = implementation();\n        assembly {\n            calldatacopy(0, 0, calldatasize())\n\n            let result := delegatecall(gas(), implementation_, 0, calldatasize(), 0, 0)\n            returndatacopy(0, 0, returndatasize())\n\n            switch result\n            case 0 {\n                revert(0, returndatasize())\n            }\n            default {\n                return(0, returndatasize())\n            }\n        }\n    }\n\n    /**\n     * @dev Payable fallback function. Can be overridden in derived contracts.\n     */\n    receive() external payable virtual {}\n}"
}