{
    "Function": "_totalVestedOf",
    "File": "contracts/AuraVestedEscrow.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-0.8/security/ReentrancyGuard.sol"
    ],
    "High-Level Calls": [
        "AuraMath"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "min"
    ],
    "Low-Level Calls": [],
    "Code": "function _totalVestedOf(address _recipient, uint256 _time) internal view returns (uint256 total) {\n        if (_time < startTime) {\n            return 0;\n        }\n        uint256 locked = totalLocked[_recipient];\n        uint256 elapsed = _time - startTime;\n        total = AuraMath.min((locked * elapsed) / totalTime, locked);\n    }"
}