{
    "Function": "_update1",
    "File": "contracts/contracts/Pair.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_safeTransfer"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _update1(uint amount) internal {\n        _safeTransfer(token1, fees, amount);\n        uint256 _ratio = amount * 1e18 / totalSupply;\n        if (_ratio > 0) {\n            index1 += _ratio;\n        }\n        emit Fees(msg.sender, 0, amount);\n    }"
}