check if the string is a valid ISO 3779-compliant Vehicle identification number (VIN)
bool isVIN(String str) { VIN vin = VIN(number: str); return vin.valid(); }