{
    "Function": "increaseAllowance",
    "File": "contracts/lybra/token/EUSD.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol"
    ],
    "High-Level Calls": [
        "SafeMath"
    ],
    "Internal Calls": [
        "_msgSender",
        "_approve"
    ],
    "Library Calls": [
        "add"
    ],
    "Low-Level Calls": [],
    "Code": "function increaseAllowance(address _spender, uint256 _addedValue) public returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, _spender, allowances[owner][_spender].add(_addedValue));\n        return true;\n    }"
}