{
    "Function": "_mint",
    "File": "contracts/contracts/Velo.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _mint(address _to, uint _amount) internal returns (bool) {\n        balanceOf[_to] += _amount;\n        totalSupply += _amount;\n        emit Transfer(address(0x0), _to, _amount);\n        return true;\n    }"
}