public static TickIterator tickIteratorForStream(InputStream stream, Profile... profile) throws IOException {
return new TickIterator(demoInputStreamForStream(stream, profile));
}
public static TickIterator tickIteratorForFile(String fileName, Profile... profile) throws IOException {
return new TickIterator(demoInputStreamForStream(new FileInputStream(fileName), profile));
}