static L assertProperStreaks(L l) { int n = l(l); for (int i = 0; i+1 < n; i++) if (l.get(i+1).start <= l.get(i).end) fail("assertProperStreaks", str(l)); ret l; }