{
    "Function": "_burn",
    "File": "contracts/contracts/Pair.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_updateFor"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _burn(address dst, uint amount) internal {\n        _updateFor(dst);\n        totalSupply -= amount;\n        balanceOf[dst] -= amount;\n        emit Transfer(dst, address(0), amount);\n    }"
}