static L> ai_misrecognitionCandidates1() { LPair l = speechLogWithDates_pairs(); new L> out; for i over l: { Pair p = l.get(i); continue unless dm_isVoiceCommand(p.a); int j = i-1; while (j >= 0 && l.get(j).b >= l.get(j+1).b-10*1000) { out.add(WithTimestamp(l.get(j).b, pair(l.get(j).a, l.get(i).a))); --j; } } ret out; }