-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.krf
3836 lines (3470 loc) · 292 KB
/
events.krf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-22-FreePrintingatNorris))
(isa NUEvent-2019-Mar-22-FreePrintingatNorris NUEvent)
(dateOfEvent NUEvent-2019-Mar-22-FreePrintingatNorris (DayFn 22 (MonthFn March (YearFn 2019))))
(durationOfEvent NUEvent-2019-Mar-22-FreePrintingatNorris (DaysDuration 1))
(eventName NUEvent-2019-Mar-22-FreePrintingatNorris "Free Printing at Norris")
(eventLocale NUEvent-2019-Mar-22-FreePrintingatNorris "Norris University Center, 1999 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-22-FreePrintingatNorris "Norris University Center")
(eventHost NUEvent-2019-Mar-22-FreePrintingatNorris "Debra Ann Blade")
(eventHost NUEvent-2019-Mar-22-FreePrintingatNorris "847.491.2307")
(eventHost NUEvent-2019-Mar-22-FreePrintingatNorris "[email protected]")
(eventAudience NUEvent-2019-Mar-22-FreePrintingatNorris NUPerson)
(eventAudience NUEvent-2019-Mar-22-FreePrintingatNorris NUStudent)
(eventAudience NUEvent-2019-Mar-22-FreePrintingatNorris NUUndergraduate)
(eventCategory NUEvent-2019-Mar-22-FreePrintingatNorris "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu))
(isa NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUEvent)
(dateOfEvent NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu (MinuteFn 00 (HourFn 16 (DayFn 22 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu 60)
(eventName NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "Department of Chemistry Colloquium, Graduate Recruiting Weekend")
(eventLocale NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "Technological Institute, TBD, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "Department of Chemistry")
(eventHost NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "Sophie Tidd")
(eventHost NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "847.491.5371")
(eventHost NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "[email protected]")
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUPerson)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUFaculty)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUStaff)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUStudent)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUUndergraduate)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUVisitor)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUPhDStudent)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUMastersStudent)
(eventAudience NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu NUGraduateStudent)
(eventCategory NUEvent-2019-Mar-22-DepartmentofChemistryColloquiu "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi))
(isa NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUEvent)
(dateOfEvent NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi (MinuteFn 00 (HourFn 16 (DayFn 25 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi 60)
(eventName NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "David J. Mooney, PhD, Harvard University \"Building Immunity with Biomaterials\"")
(eventLocale NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "Pancoe-NSUHS Life Sciences Pavilion, Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "Chemistry of Life Processes Institute")
(eventHost NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "Penelope Johnson")
(eventHost NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "847.467.7464")
(eventHost NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "[email protected]")
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUPerson)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUFaculty)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUStaff)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUStudent)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUUndergraduate)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUPhDStudent)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUMastersStudent)
(eventAudience NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi NUGraduateStudent)
(eventReoccurring NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi t)
(eventCost NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "Free")
(eventCategory NUEvent-2019-Mar-25-DavidJMooneyPhDHarvardUniversi "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston))
(isa NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUEvent)
(dateOfEvent NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston (MinuteFn 00 (HourFn 12 (DayFn 26 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston 60)
(eventName NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "Biophysics Journal Club (Evanston)")
(eventLocale NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "Cook Hall, 3118, 2220 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "Molecular Biophysics Training Program")
(eventHost NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "Abby Mattson")
(eventHost NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "847.491.7078")
(eventHost NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "[email protected]")
(eventAudience NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUPerson)
(eventAudience NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUStudent)
(eventAudience NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUUndergraduate)
(eventAudience NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUPhDStudent)
(eventAudience NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUMastersStudent)
(eventAudience NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston NUGraduateStudent)
(eventReoccurring NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston t)
(eventCategory NUEvent-2019-Mar-26-BiophysicsJournalClubEvanston "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT))
(isa NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUEvent)
(dateOfEvent NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT (MinuteFn 00 (HourFn 12 (DayFn 26 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT 45)
(eventName NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "Caravans of Gold, Fragments in Time: Tuesday Exhibition Tours")
(eventLocale NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "Block Museum of Art, Mary and Leigh, 40 Arts Circle Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "Block Museum of Art")
(eventHost NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "Block Museum of Art")
(eventHost NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "847.491.4000")
(eventHost NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "[email protected]")
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUPerson)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUFaculty)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUStaff)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUStudent)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUUndergraduate)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUVisitor)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUPhDStudent)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUMastersStudent)
(eventAudience NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT NUGraduateStudent)
(eventCost NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "Free and open to all")
(eventCategory NUEvent-2019-Mar-26-CaravansofGoldFragmentsinTimeT "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin))
(isa NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUEvent)
(dateOfEvent NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin (MinuteFn 00 (HourFn 12 (DayFn 27 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin 60)
(eventName NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "Frontiers in Nanotechnology Seminar - Mohamed Eddaoudi")
(eventLocale NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "Pancoe-NSUHS Life Sciences Pavilion, Abbott Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "International Institute for Nanotechnology")
(eventHost NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "Lindsay Haukebo")
(eventHost NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "[email protected]")
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUPerson)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUFaculty)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUStaff)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUStudent)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUUndergraduate)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUVisitor)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUPhDStudent)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUMastersStudent)
(eventAudience NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin NUGraduateStudent)
(eventReoccurring NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin t)
(eventCost NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "Free!")
(eventCategory NUEvent-2019-Mar-27-FrontiersinNanotechnologySemin "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive))
(isa NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUEvent)
(dateOfEvent NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive (MinuteFn 30 (HourFn 12 (DayFn 28 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive 60)
(eventName NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "MBS Department Seminar: Rui Yi, University of Colorado Boulder. Title: TBD")
(eventLocale NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "Pancoe-NSUHS Life Sciences Pavilion, Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "Molecular Biosciences")
(eventHost NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "Molecular Biosciences")
(eventHost NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "847.491.5061")
(eventHost NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "[email protected]")
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUPerson)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUFaculty)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUStaff)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUStudent)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUUndergraduate)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUPhDStudent)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUMastersStudent)
(eventAudience NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive NUGraduateStudent)
(eventReoccurring NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive t)
(eventCategory NUEvent-2019-Mar-28-MBSDepartmentSeminarRuiYiUnive "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB))
(isa NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUEvent)
(dateOfEvent NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB (MinuteFn 00 (HourFn 12 (DayFn 29 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB 60)
(eventName NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "Special Seminar: Sebastian Perez: TBA")
(eventLocale NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "Technological Institute, F160, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "CIERA - Special Seminars")
(eventHost NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "CIERA Astrophysics")
(eventHost NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "847.491.8646")
(eventHost NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "[email protected]")
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUPerson)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUFaculty)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUStaff)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUStudent)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUUndergraduate)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUPhDStudent)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUMastersStudent)
(eventAudience NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB NUGraduateStudent)
(eventReoccurring NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB t)
(eventCost NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "Free")
(eventCategory NUEvent-2019-Mar-29-SpecialSeminarSebastianPerezTB "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu))
(isa NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUEvent)
(dateOfEvent NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu (MinuteFn 00 (HourFn 16 (DayFn 29 (MonthFn March (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu 60)
(eventName NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "Department of Chemistry Colloquium, TBD")
(eventLocale NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "Technological Institute, TBD, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "Department of Chemistry")
(eventHost NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "Sophie Tidd")
(eventHost NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "847.491.5371")
(eventHost NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "[email protected]")
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUPerson)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUFaculty)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUStaff)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUStudent)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUUndergraduate)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUVisitor)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUPhDStudent)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUMastersStudent)
(eventAudience NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu NUGraduateStudent)
(eventCategory NUEvent-2019-Mar-29-DepartmentofChemistryColloquiu "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui))
(isa NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui (MinuteFn 00 (HourFn 11 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui 60)
(eventName NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "CIERA Interdisciplinary Colloquium, Joint w/ EPS: Sean Raymond: \"Solar System formation in the context of extra-solar planets\"")
(eventLocale NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "Technological Institute, F160, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "CIERA - Interdisciplinary Colloquia")
(eventHost NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "CIERA Astrophysics")
(eventHost NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "847.491.8646")
(eventHost NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "[email protected]")
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUPerson)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUFaculty)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUStaff)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUStudent)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUUndergraduate)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUVisitor)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui t)
(eventCost NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "Free and open to the public. No registration or ticket required.")
(eventCategory NUEvent-2019-Apr-1-CIERAInterdisciplinaryColloqui "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-Economics501GraduateStudentSem))
(isa NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-Economics501GraduateStudentSem (MinuteFn 00 (HourFn 11 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-Economics501GraduateStudentSem 60)
(eventName NUEvent-2019-Apr-1-Economics501GraduateStudentSem "Economics 501: Graduate Student Seminar")
(eventLocale NUEvent-2019-Apr-1-Economics501GraduateStudentSem "Kellogg Global Hub, 1410, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-Economics501GraduateStudentSem "Department of Economics: Graduate Student Seminar")
(eventHost NUEvent-2019-Apr-1-Economics501GraduateStudentSem "Alessandro Pavan")
(eventHost NUEvent-2019-Apr-1-Economics501GraduateStudentSem "847.491.8266")
(eventHost NUEvent-2019-Apr-1-Economics501GraduateStudentSem "[email protected]")
(eventAudience NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUPerson)
(eventAudience NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUFaculty)
(eventAudience NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUStaff)
(eventAudience NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-Economics501GraduateStudentSem NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-Economics501GraduateStudentSem t)
(eventCategory NUEvent-2019-Apr-1-Economics501GraduateStudentSem "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-SeminarinMacroeconomics))
(isa NUEvent-2019-Apr-1-SeminarinMacroeconomics NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-SeminarinMacroeconomics (MinuteFn 00 (HourFn 12 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-SeminarinMacroeconomics 90)
(eventName NUEvent-2019-Apr-1-SeminarinMacroeconomics "Seminar in Macroeconomics")
(eventLocale NUEvent-2019-Apr-1-SeminarinMacroeconomics "Kellogg Global Hub, 1410, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-SeminarinMacroeconomics "Department of Economics: Seminar in Macroeconomics")
(eventHost NUEvent-2019-Apr-1-SeminarinMacroeconomics "Cindy Pingry")
(eventHost NUEvent-2019-Apr-1-SeminarinMacroeconomics "847.467.7263")
(eventHost NUEvent-2019-Apr-1-SeminarinMacroeconomics "[email protected]")
(eventAudience NUEvent-2019-Apr-1-SeminarinMacroeconomics NUPerson)
(eventAudience NUEvent-2019-Apr-1-SeminarinMacroeconomics NUFaculty)
(eventAudience NUEvent-2019-Apr-1-SeminarinMacroeconomics NUStaff)
(eventAudience NUEvent-2019-Apr-1-SeminarinMacroeconomics NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-SeminarinMacroeconomics NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-SeminarinMacroeconomics NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-SeminarinMacroeconomics t)
(eventCategory NUEvent-2019-Apr-1-SeminarinMacroeconomics "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT))
(isa NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT (MinuteFn 15 (HourFn 12 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT 60)
(eventName NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "Invenergy - Renewable Development Trends in the Energy Industry (Kellogg)")
(eventLocale NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "Kellogg Global Hub, Room L070, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "ISEN")
(eventHost NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "Eithan Graber")
(eventHost NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "[email protected]")
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUPerson)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUFaculty)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUStaff)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUStudent)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUUndergraduate)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT t)
(eventCost NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "Free")
(eventCategory NUEvent-2019-Apr-1-InvenergyRenewableDevelopmentT "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb))
(isa NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb (MinuteFn 00 (HourFn 13 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb 90)
(eventName NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "Psychology Colloquium Series: I am because we are: Exploring the Mechanisms of Dyadic Social Interactions")
(eventLocale NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "Norris University Center, 202 Northwestern Room, 1999 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "Department of Psychology")
(eventHost NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "Tomeka Bolar")
(eventHost NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "847.491.4994")
(eventHost NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "[email protected]")
(eventAudience NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb NUPerson)
(eventAudience NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb NUVisitor)
(eventReoccurring NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb t)
(eventCategory NUEvent-2019-Apr-1-PsychologyColloquiumSeriesIamb "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio))
(isa NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio (MinuteFn 30 (HourFn 15 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio 90)
(eventName NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "Seminar in Industrial Organization")
(eventLocale NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "Kellogg Global Hub, 1410, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "Department of Economics: Seminar in Industrial Organization")
(eventHost NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "Cindy Pingry")
(eventHost NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "847.467.7263")
(eventHost NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "[email protected]")
(eventAudience NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUPerson)
(eventAudience NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUFaculty)
(eventAudience NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUStaff)
(eventAudience NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio t)
(eventCategory NUEvent-2019-Apr-1-SeminarinIndustrialOrganizatio "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm))
(isa NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm (MinuteFn 00 (HourFn 16 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm 60)
(eventName NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "CLP Seminar: Dennis Dougherty, Beckman Institute, Caltech")
(eventLocale NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "Pancoe-NSUHS Life Sciences Pavilion, Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "Chemistry of Life Processes Institute")
(eventHost NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "Penelope Johnson")
(eventHost NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "847.467.7464")
(eventHost NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "[email protected]")
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUPerson)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUFaculty)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUStaff)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUStudent)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUUndergraduate)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm t)
(eventCost NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "Free")
(eventCategory NUEvent-2019-Apr-1-CLPSeminarDennisDoughertyBeckm "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo))
(isa NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo (MinuteFn 00 (HourFn 16 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo 60)
(eventName NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "HEP Seminar: Luigi Marchese: Higgs boson width at the LHC")
(eventLocale NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "Technological Institute, F160, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "Physics and Astronomy High Energy Physics Seminars")
(eventHost NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "Pamela Villalovoz")
(eventHost NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "847.491.3644")
(eventHost NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "[email protected]")
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUPerson)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUFaculty)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUStaff)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUStudent)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUUndergraduate)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUVisitor)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUPhDStudent)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUMastersStudent)
(eventAudience NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo t)
(eventCategory NUEvent-2019-Apr-1-HEPSeminarLuigiMarcheseHiggsbo "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram))
(isa NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram NUEvent)
(dateOfEvent NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram (MinuteFn 00 (HourFn 17 (DayFn 1 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram 60)
(eventName NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram "Knight-Hennessey Scholars Program Information Session")
(eventLocale NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram "John Evans Center, 1800 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram "Office of Fellowships Information Sessions")
(eventHost NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram "Amy Kehoe")
(eventHost NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram "[email protected]")
(eventAudience NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram NUPerson)
(eventAudience NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram NUVisitor)
(eventReoccurring NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram t)
(eventCategory NUEvent-2019-Apr-1-KnightHennesseyScholarsProgram "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr))
(isa NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr (MinuteFn 00 (HourFn 10 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr 60)
(eventName NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "Special Complex Systems Seminar: Dr. Cynthia Reichhardt: Jamming and Clogging of Passive and Active Particles in Disordered Media ")
(eventLocale NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "Technological Institute, F160, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "Physics and Astronomy Complex Systems Seminars")
(eventHost NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "Cristian Pennington")
(eventHost NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "847.491.3645")
(eventHost NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "[email protected]")
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUPerson)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUFaculty)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUStaff)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUStudent)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUVisitor)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr t)
(eventCategory NUEvent-2019-Apr-2-SpecialComplexSystemsSeminarDr "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos))
(isa NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos (MinuteFn 00 (HourFn 11 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos 60)
(eventName NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "The traveling salesman problem: postcards from the edge of impossibility")
(eventLocale NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "Ford Motor Company Engineering Design Center, ITW 1.350, 2133 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "Department of Industrial Engineering and Management Sciences")
(eventHost NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "Agnes Kaminski")
(eventHost NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "847.491.3576")
(eventHost NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "[email protected]")
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUPerson)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUFaculty)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUStaff)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUStudent)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos t)
(eventCategory NUEvent-2019-Apr-2-Thetravelingsalesmanproblempos "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch))
(isa NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch (MinuteFn 00 (HourFn 12 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch 60)
(eventName NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "Applied Microeconomics Lunch")
(eventLocale NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "Kellogg Global Hub, 3301, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "Department of Economics: Applied Microeconomics Lunch")
(eventHost NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "Michelle Obuhanich")
(eventHost NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "847.491.5697")
(eventHost NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "[email protected]")
(eventAudience NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUPerson)
(eventAudience NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUFaculty)
(eventAudience NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUStaff)
(eventAudience NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch t)
(eventCategory NUEvent-2019-Apr-2-AppliedMicroeconomicsLunch "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT))
(isa NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT (MinuteFn 00 (HourFn 12 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT 45)
(eventName NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "Caravans of Gold, Fragments in Time: Tuesday Exhibition Tours")
(eventLocale NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "Block Museum of Art, Mary and Leigh, 40 Arts Circle Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "Block Museum of Art")
(eventHost NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "Block Museum of Art")
(eventHost NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "847.491.4000")
(eventHost NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "[email protected]")
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUPerson)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUFaculty)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUStaff)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUStudent)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUVisitor)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT NUGraduateStudent)
(eventCost NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "Free and open to all")
(eventCategory NUEvent-2019-Apr-2-CaravansofGoldFragmentsinTimeT "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri))
(isa NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri (MinuteFn 00 (HourFn 12 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri 60)
(eventName NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri "EDGS Graduate Student Lecture Series")
(eventLocale NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri "1800 Sherman Avenue, Suite 1-200, Rm124, Evanston, IL 60201")
(eventHost NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri "Equality Development and Globalization Studies (EDGS) ")
(eventHost NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri "Elizabeth Morrissey")
(eventHost NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri "[email protected]")
(eventAudience NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri NUPerson)
(eventAudience NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri t)
(eventCategory NUEvent-2019-Apr-2-EDGSGraduateStudentLectureSeri "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn))
(isa NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn (MinuteFn 00 (HourFn 12 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn 60)
(eventName NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "Fulbright Study/Research Awards Information Session")
(eventLocale NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "1940 Sheridan Road, Conference Room, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "Office of Fellowships Information Sessions")
(eventHost NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "Stephen Hill")
(eventHost NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "847.491.2617")
(eventHost NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "[email protected]")
(eventAudience NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn NUPerson)
(eventAudience NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn NUVisitor)
(eventReoccurring NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn t)
(eventCategory NUEvent-2019-Apr-2-FulbrightStudyResearchAwardsIn "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat))
(isa NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat (MinuteFn 45 (HourFn 12 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat 60)
(eventName NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "Neurobiology Seminar Series | Jonathan Demb, PhD | Yale University")
(eventLocale NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "Pancoe-NSUHS Life Sciences Pavilion, Pancoe Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "Neurobiology")
(eventHost NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "Department of Neurobiology")
(eventHost NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "847.491.5521")
(eventHost NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "[email protected]")
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUPerson)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUFaculty)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUStaff)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUStudent)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUVisitor)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat t)
(eventCategory NUEvent-2019-Apr-2-NeurobiologySeminarSeriesJonat "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw))
(isa NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw (MinuteFn 00 (HourFn 14 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw 60)
(eventName NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "Heilborn Lectures: Gravitational waves: astrophysics, technical challenges and prospects for the future")
(eventLocale NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "Technological Institute, L211, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "Physics and Astronomy Special Events and Invited Talks")
(eventHost NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "Pamela Villalovoz")
(eventHost NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "847.491.3644")
(eventHost NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "[email protected]")
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUPerson)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUFaculty)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUStaff)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUStudent)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUVisitor)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw t)
(eventCategory NUEvent-2019-Apr-2-HeilbornLecturesGravitationalw "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-SeminarinEconometrics))
(isa NUEvent-2019-Apr-2-SeminarinEconometrics NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-SeminarinEconometrics (MinuteFn 30 (HourFn 15 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-SeminarinEconometrics 90)
(eventName NUEvent-2019-Apr-2-SeminarinEconometrics "Seminar in Econometrics")
(eventLocale NUEvent-2019-Apr-2-SeminarinEconometrics "Kellogg Global Hub, 1410, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-SeminarinEconometrics "Department of Economics: Seminar in Econometrics")
(eventHost NUEvent-2019-Apr-2-SeminarinEconometrics "Cindy Pingry")
(eventHost NUEvent-2019-Apr-2-SeminarinEconometrics "847.467.7263")
(eventHost NUEvent-2019-Apr-2-SeminarinEconometrics "[email protected]")
(eventAudience NUEvent-2019-Apr-2-SeminarinEconometrics NUPerson)
(eventAudience NUEvent-2019-Apr-2-SeminarinEconometrics NUFaculty)
(eventAudience NUEvent-2019-Apr-2-SeminarinEconometrics NUStaff)
(eventAudience NUEvent-2019-Apr-2-SeminarinEconometrics NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-SeminarinEconometrics NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-SeminarinEconometrics NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-SeminarinEconometrics t)
(eventCategory NUEvent-2019-Apr-2-SeminarinEconometrics "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-CarrieNiziolek))
(isa NUEvent-2019-Apr-2-CarrieNiziolek NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-CarrieNiziolek (MinuteFn 00 (HourFn 16 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-CarrieNiziolek 90)
(eventName NUEvent-2019-Apr-2-CarrieNiziolek "Carrie Niziolek")
(eventLocale NUEvent-2019-Apr-2-CarrieNiziolek "Swift Hall, 107, 2029 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-CarrieNiziolek "Cognitive Science Program")
(eventHost NUEvent-2019-Apr-2-CarrieNiziolek "Benjamin Dionysus")
(eventHost NUEvent-2019-Apr-2-CarrieNiziolek "847.467.2035")
(eventHost NUEvent-2019-Apr-2-CarrieNiziolek "[email protected]")
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUPerson)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUFaculty)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUStaff)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUStudent)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUVisitor)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-CarrieNiziolek NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-CarrieNiziolek t)
(eventCategory NUEvent-2019-Apr-2-CarrieNiziolek "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-LightsCameraWildcats))
(isa NUEvent-2019-Apr-2-LightsCameraWildcats NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-LightsCameraWildcats (MinuteFn 00 (HourFn 16 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-LightsCameraWildcats 60)
(eventName NUEvent-2019-Apr-2-LightsCameraWildcats "Lights, Camera, Wildcats!")
(eventLocale NUEvent-2019-Apr-2-LightsCameraWildcats "University Library, Book Nook, 1970 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-LightsCameraWildcats "University Libraries")
(eventHost NUEvent-2019-Apr-2-LightsCameraWildcats "Clare Roccaforte")
(eventHost NUEvent-2019-Apr-2-LightsCameraWildcats "847.467.5918")
(eventHost NUEvent-2019-Apr-2-LightsCameraWildcats "[email protected]")
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUPerson)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUFaculty)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUStaff)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUStudent)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUVisitor)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-LightsCameraWildcats NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-LightsCameraWildcats t)
(eventCategory NUEvent-2019-Apr-2-LightsCameraWildcats "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti))
(isa NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti (MinuteFn 00 (HourFn 16 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti 60)
(eventName NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti "MSE Spring Colloquia: Enrique Martinez")
(eventLocale NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti "Technological Institute, Tech L361, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti "Department of Materials Science and Engineering")
(eventHost NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti "Kristina Lugo")
(eventHost NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti "[email protected]")
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUPerson)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUFaculty)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUStaff)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUStudent)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti t)
(eventCategory NUEvent-2019-Apr-2-MSESpringColloquiaEnriqueMarti "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-MSHENewStudentOrientation))
(isa NUEvent-2019-Apr-2-MSHENewStudentOrientation NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-MSHENewStudentOrientation (MinuteFn 30 (HourFn 16 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-MSHENewStudentOrientation 90)
(eventName NUEvent-2019-Apr-2-MSHENewStudentOrientation "MSHE New Student Orientation")
(eventLocale NUEvent-2019-Apr-2-MSHENewStudentOrientation "Annenberg Hall, Room 132, 2120 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-MSHENewStudentOrientation "MS in Higher Education Administration & Policy")
(eventHost NUEvent-2019-Apr-2-MSHENewStudentOrientation "Jeanine Breen")
(eventHost NUEvent-2019-Apr-2-MSHENewStudentOrientation "847.467.2656")
(eventHost NUEvent-2019-Apr-2-MSHENewStudentOrientation "[email protected]")
(eventAudience NUEvent-2019-Apr-2-MSHENewStudentOrientation NUPerson)
(eventAudience NUEvent-2019-Apr-2-MSHENewStudentOrientation NUStudent)
(eventAudience NUEvent-2019-Apr-2-MSHENewStudentOrientation NUUndergraduate)
(eventReoccurring NUEvent-2019-Apr-2-MSHENewStudentOrientation t)
(eventCategory NUEvent-2019-Apr-2-MSHENewStudentOrientation "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-DepartmentofSociologySocialMov))
(isa NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-DepartmentofSociologySocialMov (MinuteFn 00 (HourFn 17 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-DepartmentofSociologySocialMov 90)
(eventName NUEvent-2019-Apr-2-DepartmentofSociologySocialMov "Department of Sociology Social Movement Workshop: Lisa Buchter, Northwestern University")
(eventLocale NUEvent-2019-Apr-2-DepartmentofSociologySocialMov "Kellogg Global Hub, Room 5201, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-DepartmentofSociologySocialMov "Sociology Department")
(eventHost NUEvent-2019-Apr-2-DepartmentofSociologySocialMov "Josh Basseches")
(eventHost NUEvent-2019-Apr-2-DepartmentofSociologySocialMov "[email protected]")
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUPerson)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUFaculty)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUStaff)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUStudent)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUUndergraduate)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUPhDStudent)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUMastersStudent)
(eventAudience NUEvent-2019-Apr-2-DepartmentofSociologySocialMov NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-2-DepartmentofSociologySocialMov t)
(eventCategory NUEvent-2019-Apr-2-DepartmentofSociologySocialMov "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS))
(isa NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS NUEvent)
(dateOfEvent NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS (MinuteFn 00 (HourFn 17 (DayFn 2 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS 60)
(eventName NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS "Schwarzman Scholars Information Session")
(eventLocale NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS "1940 Sheridan Road, Conference Room, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS "Office of Fellowships Information Sessions")
(eventHost NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS "Amy Kehoe")
(eventHost NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS "[email protected]")
(eventAudience NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS NUPerson)
(eventAudience NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS NUVisitor)
(eventReoccurring NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS t)
(eventCategory NUEvent-2019-Apr-2-SchwarzmanScholarsInformationS "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-Economics501GraduateStudentSem))
(isa NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-Economics501GraduateStudentSem (MinuteFn 00 (HourFn 11 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-Economics501GraduateStudentSem 60)
(eventName NUEvent-2019-Apr-3-Economics501GraduateStudentSem "Economics 501: Graduate Student Seminar")
(eventLocale NUEvent-2019-Apr-3-Economics501GraduateStudentSem "Kellogg Global Hub, 1410, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-Economics501GraduateStudentSem "Department of Economics: Graduate Student Seminar")
(eventHost NUEvent-2019-Apr-3-Economics501GraduateStudentSem "Alessandro Pavan")
(eventHost NUEvent-2019-Apr-3-Economics501GraduateStudentSem "847.491.8266")
(eventHost NUEvent-2019-Apr-3-Economics501GraduateStudentSem "[email protected]")
(eventAudience NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUPerson)
(eventAudience NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUFaculty)
(eventAudience NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUStaff)
(eventAudience NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUPhDStudent)
(eventAudience NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUMastersStudent)
(eventAudience NUEvent-2019-Apr-3-Economics501GraduateStudentSem NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-3-Economics501GraduateStudentSem t)
(eventCategory NUEvent-2019-Apr-3-Economics501GraduateStudentSem "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge))
(isa NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge (MinuteFn 00 (HourFn 11 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge 60)
(eventName NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "SPREE Seminar: Alexander Handwerger")
(eventLocale NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "Technological Institute, A230, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "McCormick - Civil and Environmental Engineering")
(eventHost NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "Tierney Acott")
(eventHost NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "847.491.3257")
(eventHost NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "[email protected]")
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUPerson)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUFaculty)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUStaff)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUStudent)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUUndergraduate)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUVisitor)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUPhDStudent)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUMastersStudent)
(eventAudience NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge t)
(eventCategory NUEvent-2019-Apr-3-SPREESeminarAlexanderHandwerge "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin))
(isa NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin (MinuteFn 00 (HourFn 12 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin 75)
(eventName NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "Development Economics Lunch Seminar")
(eventLocale NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "Kellogg Global Hub, 1410, 2211 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "Department of Economics: Development Economics Lunch Seminar")
(eventHost NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "Economics")
(eventHost NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "847.491.8200")
(eventHost NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "[email protected]")
(eventAudience NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUPerson)
(eventAudience NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUFaculty)
(eventAudience NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUStaff)
(eventAudience NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUPhDStudent)
(eventAudience NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUMastersStudent)
(eventAudience NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin t)
(eventCategory NUEvent-2019-Apr-3-DevelopmentEconomicsLunchSemin "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf))
(isa NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf (MinuteFn 00 (HourFn 16 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf 60)
(eventName NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "Chicago Field Studies In-person Info Session at 1819 Hinman - No registration needed ")
(eventLocale NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "1819 Hinman Avenue, 303, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "Chicago Field Studies")
(eventHost NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "Chicago Field Studies")
(eventHost NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "847.467.0605")
(eventHost NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "[email protected]")
(eventAudience NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf NUPerson)
(eventAudience NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf NUFaculty)
(eventAudience NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf NUStaff)
(eventAudience NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf NUStudent)
(eventAudience NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf NUUndergraduate)
(eventReoccurring NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf t)
(eventCategory NUEvent-2019-Apr-3-ChicagoFieldStudiesInpersonInf "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken))
(isa NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken (MinuteFn 00 (HourFn 16 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken 60)
(eventName NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "Heilborn Lectures: The Gamble taken by the NSF with LIGO")
(eventLocale NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "Technological Institute, LR3, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "Physics and Astronomy Special Events and Invited Talks")
(eventHost NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "Pamela Villalovoz")
(eventHost NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "847.491.3644")
(eventHost NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "[email protected]")
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUPerson)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUFaculty)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUStaff)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUStudent)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUUndergraduate)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUVisitor)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUPhDStudent)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUMastersStudent)
(eventAudience NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken t)
(eventCategory NUEvent-2019-Apr-3-HeilbornLecturesTheGambletaken "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv))
(isa NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv (MinuteFn 00 (HourFn 16 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv 60)
(eventName NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "Seminar: Peter Caravan (Harvard University)")
(eventLocale NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "Pancoe-NSUHS Life Sciences Pavilion, Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "Chemistry of Life Processes Institute")
(eventHost NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "Penelope Johnson")
(eventHost NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "847.467.7464")
(eventHost NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "[email protected]")
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUPerson)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUFaculty)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUStaff)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUStudent)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUUndergraduate)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUPhDStudent)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUMastersStudent)
(eventAudience NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv t)
(eventCost NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "Free")
(eventCategory NUEvent-2019-Apr-3-SeminarPeterCaravanHarvardUniv "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu))
(isa NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUEvent)
(dateOfEvent NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu (MinuteFn 00 (HourFn 16 (DayFn 3 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu 60)
(eventName NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "Truth in Our Times: David McCraw, Deputy General Counsel of The New York Times")
(eventLocale NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "Fisk Hall, 311, 1845 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "Medill Events - All")
(eventHost NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "Stacy Simpson")
(eventHost NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "847.467.2961")
(eventHost NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "[email protected]")
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUPerson)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUFaculty)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUStaff)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUStudent)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUUndergraduate)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUVisitor)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUPhDStudent)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUMastersStudent)
(eventAudience NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu t)
(eventCost NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "Free")
(eventCategory NUEvent-2019-Apr-3-TruthinOurTimesDavidMcCrawDepu "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast))
(isa NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast (DayFn 4 (MonthFn April (YearFn 2019))))
(durationOfEvent NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast (DaysDuration 1))
(eventName NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast "Water in Israel and the Middle East")
(eventLocale NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast "Technological Institute, M128, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast "McCormick - Civil and Environmental Engineering")
(eventHost NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast "Department of CEE")
(eventHost NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast "[email protected]")
(eventAudience NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast NUPerson)
(eventAudience NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast NUStudent)
(eventAudience NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast NUUndergraduate)
(eventReoccurring NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast t)
(eventCategory NUEvent-2019-Apr-4-WaterinIsraelandtheMiddleEast "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting))
(isa NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting (MinuteFn 00 (HourFn 12 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting 60)
(eventName NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "AHEAD@Northwestern Annual Meeting")
(eventLocale NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "Parkes Hall, Room 120, 1870 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "AHEAD@NU")
(eventHost NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "Jennifer Ward and Julie Cowan")
(eventHost NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "847.467.0537")
(eventHost NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "[email protected]")
(eventAudience NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting NUPerson)
(eventAudience NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting NUFaculty)
(eventAudience NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting NUStaff)
(eventReoccurring NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting t)
(eventCategory NUEvent-2019-Apr-4-AHEADNorthwesternAnnualMeeting "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT))
(isa NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT (MinuteFn 30 (HourFn 12 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT 60)
(eventName NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "MBS Department Seminar: Demet Arac, The University of Chicago. Title: \"Cellular Communication via Adhesion\"")
(eventLocale NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "Pancoe-NSUHS Life Sciences Pavilion, Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "Molecular Biosciences")
(eventHost NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "Molecular Biosciences")
(eventHost NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "847.491.5061")
(eventHost NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "[email protected]")
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUPerson)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUFaculty)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUStaff)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUStudent)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUUndergraduate)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUPhDStudent)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUMastersStudent)
(eventAudience NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT t)
(eventCategory NUEvent-2019-Apr-4-MBSDepartmentSeminarDemetAracT "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa))
(isa NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa (MinuteFn 00 (HourFn 13 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa 60)
(eventName NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "ABAQUS and its Market: Evolution of an Engineering Simulation Software Venture")
(eventLocale NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "Technological Institute, L211, 2145 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "McCormick - Mechanical Engineering")
(eventHost NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "Alison Rodriguez")
(eventHost NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "847.467.2673")
(eventHost NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "[email protected]")
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUPerson)
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUFaculty)
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUStaff)
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUVisitor)
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUPhDStudent)
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUMastersStudent)
(eventAudience NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa t)
(eventCost NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "FREE")
(eventCategory NUEvent-2019-Apr-4-ABAQUSanditsMarketEvolutionofa "Academic")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-DepartmentofSociologyCulturean))
(isa NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-DepartmentofSociologyCulturean (MinuteFn 30 (HourFn 15 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-DepartmentofSociologyCulturean 120)
(eventName NUEvent-2019-Apr-4-DepartmentofSociologyCulturean "Department of Sociology Culture and Society Workshop: Jean Beaman, Purdue University")
(eventLocale NUEvent-2019-Apr-4-DepartmentofSociologyCulturean "Parkes Hall, Room 222, 1870 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-DepartmentofSociologyCulturean "Sociology Department")
(eventHost NUEvent-2019-Apr-4-DepartmentofSociologyCulturean "Morgan Clark")
(eventHost NUEvent-2019-Apr-4-DepartmentofSociologyCulturean "[email protected]")
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUPerson)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUFaculty)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUStaff)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUStudent)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUUndergraduate)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUPhDStudent)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUMastersStudent)
(eventAudience NUEvent-2019-Apr-4-DepartmentofSociologyCulturean NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-4-DepartmentofSociologyCulturean t)
(eventCategory NUEvent-2019-Apr-4-DepartmentofSociologyCulturean "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo))
(isa NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo (MinuteFn 00 (HourFn 16 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo 60)
(eventName NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "Department of Chemistry Special Colloquium Presented by Professor Zhihao Zhuang, University of Delaware")
(eventLocale NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "Ryan Hall, 4003, 2190 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "Department of Chemistry")
(eventHost NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "Sophie Tidd")
(eventHost NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "847.491.5371")
(eventHost NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "[email protected]")
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUPerson)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUFaculty)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUStaff)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUStudent)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUUndergraduate)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUVisitor)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUPhDStudent)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUMastersStudent)
(eventAudience NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo t)
(eventCategory NUEvent-2019-Apr-4-DepartmentofChemistrySpecialCo "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter))
(isa NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter (MinuteFn 00 (HourFn 16 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter 60)
(eventName NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "Neurobiology Seminar Series | Peter L. Strick, PhD | University of Pittsburgh")
(eventLocale NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "Pancoe-NSUHS Life Sciences Pavilion, Pancoe Auditorium, 2200 Campus Drive, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "Neurobiology")
(eventHost NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "Department of Neurobiology")
(eventHost NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "847.491.5521")
(eventHost NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "[email protected]")
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUPerson)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUFaculty)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUStaff)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUStudent)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUUndergraduate)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUVisitor)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUPhDStudent)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUMastersStudent)
(eventAudience NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter t)
(eventCategory NUEvent-2019-Apr-4-NeurobiologySeminarSeriesPeter "Lectures & Meetings")
(in-microtheory (NUEventMtFn NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC))
(isa NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUEvent)
(dateOfEvent NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC (MinuteFn 30 (HourFn 16 (DayFn 4 (MonthFn April (YearFn 2019))))))
(durationOfEvent NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC 90)
(eventName NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "Lecture on the History of the Book (CCHS/Northwestern University Libraries)")
(eventLocale NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "Harris Hall, Leopold Room (108), 1881 Sheridan Road, Evanston, IL 60208")
(eventHost NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "Center for Historical Studies")
(eventHost NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "Elzbieta Foeller-Pituch")
(eventHost NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "847.467.0885")
(eventHost NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "[email protected]")
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUPerson)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUFaculty)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUStaff)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUStudent)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUUndergraduate)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUVisitor)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUPhDStudent)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUMastersStudent)
(eventAudience NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC NUGraduateStudent)
(eventReoccurring NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC t)
(eventCategory NUEvent-2019-Apr-4-LectureontheHistoryoftheBookCC "Academic")