{
    "Function": "withdraw",
    "File": "contracts/MergeTgt.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/utils/ReentrancyGuard.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/interfaces/IMerge.sol"
    ],
    "High-Level Calls": [
        "SafeERC20"
    ],
    "Internal Calls": [
        "onlyOwner",
        "owner",
        "owner"
    ],
    "Library Calls": [
        "safeTransfer"
    ],
    "Low-Level Calls": [],
    "Code": "function withdraw(IERC20 token, uint256 amount) external onlyOwner {\n        token.safeTransfer(owner(), amount);\n        emit Withdraw(address(token), amount, owner());\n    }"
}