static L web_dropConfirmedPossibles(L l) { if (empty(l)) ret l; new HashSet> index; for (WebRelation r : l) index.add(tripleToLower(web_relationToTriple(r))); new Matches m; L out = emptyListWithCapacity(l); for (WebRelation r : l) if (!(swic(web_text(r), "possibly ", m) && index.contains( tripleToLower(t3(web_text(r.a), m.rest(), web_text(r.b)))))) out.add(r); ret out; }