!7 sS snippetID = #1007208; p { S text = loadSnippet(snippetID); Concepts newConcepts = new Concepts(snippetID).safeLoad(text); print(n(list(newConcepts, "AIConcept"), "concept") + " loaded from " + snippetID); Concepts myConcepts = new Concepts(#1006463).load(); print("I have " + n(list(myConcepts, "AIConcept"), "concept"); Map myIDs = indexByField(list(myConcepts, AIConcept), "globalID"); for (Concept c : list(newConcepts, "AIConcept")) { S id = getString(c, "globalID"); bool has = myIDs.containsKey(id); print("ID: " + id + " - " + (has ? "I have it" : "I don't have it")); } }