	Dim scp as SimpleCovidParser    ' <-- that's the parser class
	scp.Initialize


	If text.StartsWith("HC1:") Then   ' is an eu green pass
		Log("looking at an EU green pass")
		decodedText = govidpass.decodePass( text )
		Log(decodedText)

    	If decodedText <> Null Then
			Log("FYI: " & scp.GreenPassParse( decodedText ))
		End If
	else if Regex.Matcher("DC\d\d", text).Find Then   ' is french sanipasse
		Log("bonjour, french sanipasse")
		decodedText = scp.SanipassParse( text )
		Log(decodedText)
	End If
