{
    "Function": "resign",
    "File": "src/Fed.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function resign() public {\n        require(msg.sender == chair, \"ONLY CHAIR\");\n        chair = address(0);\n    }"
}