-
Notifications
You must be signed in to change notification settings - Fork 0
/
flankerA-011-3-3.txt
6659 lines (6659 loc) · 287 KB
/
flankerA-011-3-3.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: 05-01-2019
SessionTime: 09:52:09
SessionStartDateTimeUtc: 5/1/2019 2:52:09 PM
Subject: 011
Session: 3
PrePost: 3
DataFile.Basename: flankerA-011-3
RandomSeed: 555586930
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">2019-05-01T14:52:09Z</DateUtc></StartTime><FrequencyChanges><FrequencyChange><Frequency dt:dt="r8">3215419</Frequency><Timestamp dt:dt="r8">1611167669298</Timestamp><Current dt:dt="r8">0</Current><DateUtc dt:dt="string">2019-05-01T14:52:09Z</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.124
*** 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: 9
preITI.OnsetTime: 46366
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 9
stimulus.OnsetTime: 47366
stimulus.DurationError: -9
stimulus.Duration: 200
stimulus.RTTime: 47805
stimulus.ACC: 1
stimulus.RT: 439
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 9
postITI.OnsetTime: 47566
postITI.DurationError: -9
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 439
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: 9
preITI.OnsetTime: 49566
preITI.DurationError: -9
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 999
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 50565
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 51141
stimulus.ACC: 1
stimulus.RT: 576
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 50765
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 576
CorrectACC: 1
*** 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: 8
preITI.OnsetTime: 52765
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 53765
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 54205
stimulus.ACC: 1
stimulus.RT: 440
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 53965
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 440
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: 8
preITI.OnsetTime: 55965
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 56965
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 57477
stimulus.ACC: 1
stimulus.RT: 512
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 57165
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 512
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: 8
preITI.OnsetTime: 59165
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 60165
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 60733
stimulus.ACC: 1
stimulus.RT: 568
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 60365
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 568
CorrectACC: 1
*** 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: 8
preITI.OnsetTime: 62365
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 8
postITI.OnsetTime: 63565
postITI.DurationError: -8
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: 8
preITI.OnsetTime: 71565
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 72565
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 72996
stimulus.ACC: 1
stimulus.RT: 431
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 72765
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 431
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: 8
preITI.OnsetTime: 74765
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 75765
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 76260
stimulus.ACC: 1
stimulus.RT: 495
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 75965
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 495
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: 8
preITI.OnsetTime: 77965
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 78965
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 79420
stimulus.ACC: 1
stimulus.RT: 455
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 79165
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 455
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: 8
preITI.OnsetTime: 81165
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 82165
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 82708
stimulus.ACC: 1
stimulus.RT: 543
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 8
postITI.OnsetTime: 82365
postITI.DurationError: -8
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 543
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: 8
preITI.OnsetTime: 84365
preITI.DurationError: -8
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 8
stimulus.OnsetTime: 85365
stimulus.DurationError: -8
stimulus.Duration: 200
stimulus.RTTime: 85756
stimulus.ACC: 1
stimulus.RT: 391
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 199
postITI.OnsetDelay: 7
postITI.OnsetTime: 85564
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 391
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: 7
preITI.OnsetTime: 87564
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 88564
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 89180
stimulus.ACC: 1
stimulus.RT: 616
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 88764
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 616
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: 7
preITI.OnsetTime: 90764
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 91764
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 92196
stimulus.ACC: 1
stimulus.RT: 432
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 91964
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 432
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: 7
preITI.OnsetTime: 93964
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 7
postITI.OnsetTime: 95164
postITI.DurationError: -7
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: 7
preITI.OnsetTime: 97164
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 98164
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 98636
stimulus.ACC: 1
stimulus.RT: 472
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 98364
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 472
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: 7
preITI.OnsetTime: 100364
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 101364
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 101867
stimulus.ACC: 1
stimulus.RT: 503
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 101564
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 503
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: 7
preITI.OnsetTime: 103564
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
postITI.OnsetDelay: 7
postITI.OnsetTime: 104764
postITI.DurationError: -7
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: 7
preITI.OnsetTime: 108764
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 109764
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 110187
stimulus.ACC: 1
stimulus.RT: 423
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 109964
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 423
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: 7
preITI.OnsetTime: 111964
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 112964
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 113571
stimulus.ACC: 1
stimulus.RT: 607
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 113164
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 607
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: 7
preITI.OnsetTime: 115164
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 116164
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 116683
stimulus.ACC: 1
stimulus.RT: 519
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 116364
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 519
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: 7
preITI.OnsetTime: 118364
preITI.DurationError: -7
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 7
stimulus.OnsetTime: 119364
stimulus.DurationError: -7
stimulus.Duration: 200
stimulus.RTTime: 119835
stimulus.ACC: 1
stimulus.RT: 471
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 7
postITI.OnsetTime: 119564
postITI.DurationError: -7
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 471
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: 6
preITI.OnsetTime: 121563
preITI.DurationError: -6
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 6
stimulus.OnsetTime: 122563
stimulus.DurationError: -6
stimulus.Duration: 200
stimulus.RTTime: 123019
stimulus.ACC: 1
stimulus.RT: 456
stimulus.RESP: z
stimulus.CRESP: z
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 6
postITI.OnsetTime: 122763
postITI.DurationError: -6
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0
postITI.RESP:
postITI.CRESP:
postITI.OnsetToOnsetTime: 0
CorrectRT: 456
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: 6
preITI.OnsetTime: 124763
preITI.DurationError: -6
preITI.RTTime: 0
preITI.ACC: 0
preITI.RT: 0
preITI.RESP:
preITI.CRESP:
preITI.OnsetToOnsetTime: 1000
stimulus.OnsetDelay: 6
stimulus.OnsetTime: 125763
stimulus.DurationError: -6
stimulus.Duration: 200
stimulus.RTTime: 126331
stimulus.ACC: 1
stimulus.RT: 568
stimulus.RESP: m
stimulus.CRESP: m
stimulus.OnsetToOnsetTime: 200
postITI.OnsetDelay: 6
postITI.OnsetTime: 125963
postITI.DurationError: -6
postITI.RTTime: 0
postITI.ACC: 0
postITI.RT: 0