local isVehicleRegistered, formattedMessage = exports.stevo_dmv:IsVehicleRegistered(plate) --- IsVehicleRegistered = string or boolean--- formattedMessage = string or ifnot isVehicleRegistered then-- returns false if no vehicle data is availibleendif isVehicleRegistered =='valid' then-- returns 'valid' if the registration is valid-- formattedMessage will display Valid until %s of %s %dendif isVehicleRegistered =='expired' then-- returns 'expired' if the registration is expired-- formattedMessage will display Expired on %s of %s %dendif isVehicleRegistered =='notregistered' then-- returns 'notregistered' if the vehicle is not registered yet.end