@prefix cn: <http://opencyc.sourceforge.net/daml/cyc.daml#>.
@prefix : <pathCrossQ#>.

@forSome :who, :whoElse, :where, :when.

  :who cn:acquaintedWith :whoElse.
  :where a cn:City.

  [ cn:actors :who;
    cn:inRegion :where;
    cn:temporalBoundsIntersect :when
  ].

  [ cn:actors :whoElse;
    cn:inRegion :where;
    cn:temporalBoundsIntersect :when
  ].

