{
    "Function": "getMintedEUSDByShares",
    "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",
        "SafeMath"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "mul",
        "div"
    ],
    "Low-Level Calls": [],
    "Code": "function getMintedEUSDByShares(uint256 _sharesAmount) public view returns (uint256) {\n        if (_totalShares == 0) {\n            return 0;\n        } else {\n            return _sharesAmount.mul(_totalSupply).div(_totalShares);\n        }\n    }"
}