-
Notifications
You must be signed in to change notification settings - Fork 0
/
flankerA-003-2-2.txt
6659 lines (6659 loc) · 287 KB
/
flankerA-003-2-2.txt
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
*** Header Start ***
VersionPersist: 1
LevelName: Session
LevelName: Block
LevelName: Trial
LevelName: SubTrial
LevelName: LogLevel5
LevelName: LogLevel6
LevelName: LogLevel7
LevelName: LogLevel8
LevelName: LogLevel9
LevelName: LogLevel10
Experiment: flankerA
SessionDate: 10-03-2018
SessionTime: 13:50:18
SessionStartDateTimeUtc: 10/3/2018 6:50:18 PM
Subject: 003
Session: 2
PrePost: 2
DataFile.Basename: flankerA-003-2
RandomSeed: -217516273
Group: 1
Display.RefreshRate: 60.001
Clock.Information: <?xml version="1.0"?>\n<Clock xmlns:dt="urn:schemas-microsoft-com:datatypes"><Description dt:dt="string">E-Prime Primary Realtime Clock</Description><StartTime><Timestamp dt:dt="int">0</Timestamp><DateUtc dt:dt="string">2018-10-03T18:50:17Z</DateUtc></StartTime><FrequencyChanges><FrequencyChange><Frequency dt:dt="r8">3215380</Frequency><Timestamp dt:dt="r8">5677729039322</Timestamp><Current dt:dt="r8">0</Current><DateUtc dt:dt="string">2018-10-03T18:50:17Z</DateUtc></FrequencyChange></FrequencyChanges></Clock>\n
StudioVersion: 2.0.10.248
RuntimeVersion: 2.0.10.353
RuntimeVersionExpected: 2.0.10.353
RuntimeCapabilities: Professional
ExperimentVersion: 1.0.0.120
*** Header End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 1
stimuli: images/neuL.bmp
postITI: 2000
condition: neu
CR: z
SRCR: 7
StimulusCode: 21
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 1
preITI.OnsetDelay: 15
preITI.OnsetTime: 35504
preITI.DurationError: -15
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 15
stimulus.OnsetTime: 36504
stimulus.DurationError: -15
stimulus.Duration: 200
stimulus.RTTime: 37009
stimulus.ACC: 1
stimulus.RT: 505
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 15
postITI.OnsetTime: 36704
postITI.DurationError: -15
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 505
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 2
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 36
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 2
preITI.OnsetDelay: 14
preITI.OnsetTime: 38703
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 39703
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 40113
stimulus.ACC: 0
stimulus.RT: 410
stimulus.RESP: z
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 39903
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 410
CorrectACC: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 3
stimuli: images/conR.bmp
postITI: 2000
condition: con
CR: m
SRCR: 2
StimulusCode: 18
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 3
preITI.OnsetDelay: 14
preITI.OnsetTime: 41903
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 42903
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 43393
stimulus.ACC: 1
stimulus.RT: 490
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 43103
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 490
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 4
stimuli: images/incL.bmp
postITI: 2000
condition: inc
CR: z
SRCR: 7
StimulusCode: 33
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 4
preITI.OnsetDelay: 14
preITI.OnsetTime: 45103
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 46103
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 46705
stimulus.ACC: 1
stimulus.RT: 602
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 46303
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 602
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 5
stimuli: images/incL.bmp
postITI: 2000
condition: inc
CR: z
SRCR: 7
StimulusCode: 37
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 5
preITI.OnsetDelay: 14
preITI.OnsetTime: 48303
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 49303
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 49729
stimulus.ACC: 0
stimulus.RT: 426
stimulus.RESP: m
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 49503
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 426
CorrectACC: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: nullproc
TrialList: 6
stimuli: images/fix.bmp
postITI: 8000
condition: null
CR:
SRCR:
StimulusCode:
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 6
preITI.OnsetDelay: 14
preITI.OnsetTime: 51503
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 14
postITI.OnsetTime: 52703
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 7
stimuli: images/neuL.bmp
postITI: 2000
condition: neu
CR: z
SRCR: 7
StimulusCode: 27
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 7
preITI.OnsetDelay: 14
preITI.OnsetTime: 60703
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 61703
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 62137
stimulus.ACC: 1
stimulus.RT: 434
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 61903
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 434
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 8
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 8
preITI.OnsetDelay: 14
preITI.OnsetTime: 63903
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 64903
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 65425
stimulus.ACC: 1
stimulus.RT: 522
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 65103
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 522
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 9
stimuli: images/conR.bmp
postITI: 2000
condition: con
CR: m
SRCR: 2
StimulusCode: 14
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 9
preITI.OnsetDelay: 14
preITI.OnsetTime: 67103
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 68103
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 68593
stimulus.ACC: 1
stimulus.RT: 490
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 68303
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 490
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 10
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 24
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 10
preITI.OnsetDelay: 14
preITI.OnsetTime: 70303
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 71303
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 71744
stimulus.ACC: 1
stimulus.RT: 441
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 71503
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 441
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 11
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 11
preITI.OnsetDelay: 14
preITI.OnsetTime: 73503
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 74503
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 74936
stimulus.ACC: 1
stimulus.RT: 433
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 74703
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 433
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 12
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 34
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 12
preITI.OnsetDelay: 14
preITI.OnsetTime: 76703
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 77703
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 78296
stimulus.ACC: 1
stimulus.RT: 593
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 77903
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 593
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 13
stimuli: images/neuL.bmp
postITI: 2000
condition: neu
CR: z
SRCR: 7
StimulusCode: 27
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 13
preITI.OnsetDelay: 14
preITI.OnsetTime: 79903
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 80903
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 81360
stimulus.ACC: 1
stimulus.RT: 457
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 81103
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 457
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: nullproc
TrialList: 14
stimuli: images/fix.bmp
postITI: 2000
condition: null
CR:
SRCR:
StimulusCode:
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 14
preITI.OnsetDelay: 14
preITI.OnsetTime: 83103
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 14
postITI.OnsetTime: 84303
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 15
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 15
preITI.OnsetDelay: 14
preITI.OnsetTime: 86303
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 87303
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 87736
stimulus.ACC: 1
stimulus.RT: 433
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 87503
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 433
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 16
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 24
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 16
preITI.OnsetDelay: 14
preITI.OnsetTime: 89503
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 90503
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 91072
stimulus.ACC: 1
stimulus.RT: 569
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 90703
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 569
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: nullproc
TrialList: 17
stimuli: images/fix.bmp
postITI: 4000
condition: null
CR:
SRCR:
StimulusCode:
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 17
preITI.OnsetDelay: 14
preITI.OnsetTime: 92703
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 14
postITI.OnsetTime: 93903
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 18
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 26
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 18
preITI.OnsetDelay: 14
preITI.OnsetTime: 97903
preITI.DurationError: -14
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 14
stimulus.OnsetTime: 98903
stimulus.DurationError: -14
stimulus.Duration: 200
stimulus.RTTime: 99360
stimulus.ACC: 1
stimulus.RT: 457
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 14
postITI.OnsetTime: 99103
postITI.DurationError: -14
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 457
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 19
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 36
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 19
preITI.OnsetDelay: 13
preITI.OnsetTime: 101102
preITI.DurationError: -13
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 13
stimulus.OnsetTime: 102102
stimulus.DurationError: -13
stimulus.Duration: 200
stimulus.RTTime: 102648
stimulus.ACC: 1
stimulus.RT: 546
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 13
postITI.OnsetTime: 102302
postITI.DurationError: -13
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 546
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 20
stimuli: images/neuR.bmp
postITI: 2000
condition: neu
CR: m
SRCR: 2
StimulusCode: 28
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 20
preITI.OnsetDelay: 13
preITI.OnsetTime: 104302
preITI.DurationError: -13
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 13
stimulus.OnsetTime: 105302
stimulus.DurationError: -13
stimulus.Duration: 200
stimulus.RTTime: 105752
stimulus.ACC: 1
stimulus.RT: 450
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 13
postITI.OnsetTime: 105502
postITI.DurationError: -13
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 450
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 21
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 15
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 21
preITI.OnsetDelay: 13
preITI.OnsetTime: 107502
preITI.DurationError: -13
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 13
stimulus.OnsetTime: 108502
stimulus.DurationError: -13
stimulus.Duration: 200
stimulus.RTTime: 108896
stimulus.ACC: 1
stimulus.RT: 394
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 13
postITI.OnsetTime: 108702
postITI.DurationError: -13
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 394
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 22
stimuli: images/conL.bmp
postITI: 2000
condition: con
CR: z
SRCR: 7
StimulusCode: 13
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 22
preITI.OnsetDelay: 13
preITI.OnsetTime: 110702
preITI.DurationError: -13
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 13
stimulus.OnsetTime: 111702
stimulus.DurationError: -13
stimulus.Duration: 200
stimulus.RTTime: 112200
stimulus.ACC: 1
stimulus.RT: 498
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 13
postITI.OnsetTime: 111902
postITI.DurationError: -13
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 498
CorrectACC: 1
*** LogFrame End ***
Level: 3
*** LogFrame Start ***
Procedure: taskproc
TrialList: 23
stimuli: images/incR.bmp
postITI: 2000
condition: inc
CR: m
SRCR: 2
StimulusCode: 34
Running: TrialList
TrialList.Cycle: 1
TrialList.Sample: 23
preITI.OnsetDelay: 13
preITI.OnsetTime: 113902
preITI.DurationError: -13
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 13
stimulus.OnsetTime: 114902
stimulus.DurationError: -13
stimulus.Duration: 200
stimulus.RTTime: 115464
stimulus.ACC: 1
stimulus.RT: 562
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 13
postITI.OnsetTime: 115102
postITI.DurationError: -13
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0