-
Notifications
You must be signed in to change notification settings - Fork 1
/
experiment.psyexp
executable file
·935 lines (935 loc) · 190 KB
/
experiment.psyexp
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
<PsychoPy2experiment version="1.82.01" encoding="utf-8">
<Settings>
<Param name="Show mouse" val="False" valType="bool" updates="None"/>
<Param name="Data filename" val="'data/%s_%s_%s' %(expInfo['participant'], expName, expInfo['date'])" valType="code" updates="None"/>
<Param name="Monitor" val="testMonitor" valType="str" updates="None"/>
<Param name="Enable Escape" val="True" valType="bool" updates="None"/>
<Param name="color" val="black" valType="str" updates="None"/>
<Param name="Window size (pixels)" val="[1440, 900]" valType="code" updates="None"/>
<Param name="Full-screen window" val="True" valType="bool" updates="None"/>
<Param name="colorSpace" val="rgb" valType="str" updates="None"/>
<Param name="Experiment info" val="{u'participant': u''}" valType="code" updates="None"/>
<Param name="Save csv file" val="False" valType="bool" updates="None"/>
<Param name="Show info dlg" val="True" valType="bool" updates="None"/>
<Param name="Save wide csv file" val="True" valType="bool" updates="None"/>
<Param name="Save psydat file" val="True" valType="bool" updates="None"/>
<Param name="expName" val="CFEEEG_experiment" valType="str" updates="None"/>
<Param name="logging level" val="exp" valType="code" updates="None"/>
<Param name="blendMode" val="avg" valType="str" updates="None"/>
<Param name="Save excel file" val="False" valType="bool" updates="None"/>
<Param name="Units" val="use prefs" valType="str" updates="None"/>
<Param name="Save log file" val="True" valType="bool" updates="None"/>
<Param name="Screen" val="1" valType="num" updates="None"/>
</Settings>
<Routines>
<Routine name="face_instructions">
<TextComponent name="faceInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="faceInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$face_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="faceInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="faceInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="sequence">
<CodeComponent name="sequence_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="sequence_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "sequence" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<TextComponent name="sequence_text1">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="sequence_text1" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="#" valType="str" updates="constant"/>
<Param name="stopVal" val="4" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="0.3" valType="code" updates="constant"/>
</TextComponent>
<TextComponent name="sequence_text2">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="sequence_text2" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="A" valType="str" updates="constant"/>
<Param name="stopVal" val="3" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="4" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="0.3" valType="code" updates="constant"/>
</TextComponent>
<TextComponent name="sequence_text3">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="sequence_text3" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val=":)" valType="str" updates="constant"/>
<Param name="stopVal" val="3" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="7" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="0.3" valType="code" updates="constant"/>
</TextComponent>
</Routine>
<Routine name="sequence_instructions">
<TextComponent name="sequenceInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="sequenceInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$sequence_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="sequenceInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="sequenceInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="listentone_instructions">
<TextComponent name="listentoneInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="listentoneInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$listentone_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="listentoneInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="listentoneInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="listennoise">
<CodeComponent name="listennoise_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="listennoise_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "listennoise" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="listennoise_noise">
<Param name="sound" val="stimuli/ASSR_20sec.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="listennoise_noise" valType="code" updates="None"/>
<Param name="stopVal" val="$task_length" valType="code" updates="constant"/>
<Param name="durationEstim" val="10" valType="code" updates="None"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="breathe_o_instructions">
<TextComponent name="breathe_oInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="breathe_oInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$breathe_o_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="breathe_oInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="breathe_oInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="sport">
<CodeComponent name="sport_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="sport_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "sport" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="sport_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="sport_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="end">
<TextComponent name="end_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="end_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="That is the end of the experiment. Thank you for participating! Press the space bar to close." valType="str" updates="constant"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="3" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="end_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="end_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="3" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="False" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space'" valType="code" updates="constant"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="song">
<CodeComponent name="song_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="song_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "song" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="song_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="song_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="song_instructions">
<TextComponent name="songInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="songInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$song_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="songInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="songInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="listen_tone"/>
<Routine name="speech_instructions">
<TextComponent name="speechInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="speechInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$speech_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="speechInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="speechInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="speech">
<CodeComponent name="speech_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="speech_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "speech" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="speech_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="speech_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="breathe_instructions">
<TextComponent name="breatheInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="breatheInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$breathe_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="breatheInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="breatheInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="breathe_o">
<CodeComponent name="breathe_o_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="breathe_o_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "breathe_o" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<TextComponent name="breathe_o_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="breathe_o_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="+" valType="str" updates="constant"/>
<Param name="stopVal" val="$task_length" valType="code" updates="constant"/>
<Param name="durationEstim" val="10" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="0.3" valType="code" updates="constant"/>
</TextComponent>
<SoundComponent name="breathe_o_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="breathe_o_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="breathe">
<CodeComponent name="breathe_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="breathe_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "breathe" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="breathe_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="breathe_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="listentone">
<CodeComponent name="listentone_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="listentone_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "listentone" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="listentone_tone">
<Param name="sound" val="stimuli/40hz.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="listentone_tone" valType="code" updates="None"/>
<Param name="stopVal" val="$task_length" valType="code" updates="constant"/>
<Param name="durationEstim" val="10" valType="code" updates="None"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="welcome">
<CodeComponent name="welc_code">
<Param name="Begin Experiment" val="import urllib import urllib2 import json url = "http://localhost:3000" headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} task_length = 10 font_size = 0.065" valType="extendedCode" updates="constant"/>
<Param name="name" val="welc_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<TextComponent name="welc_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="welc_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="Welcome! We will begin the experiment shortly. I will ask you to perform a sequence of ten different tasks while you are in this sitting, stationary position wearing the EEG device. Please find a comfortable posture now and try to stay still during the experiment. I will explain each task before it begins. Each task will be repeated ten times total, in two groups of five each. If you need to pause at any time, just let me know. To advance to the next screen please press the bottom button on the clicker. Please try not to press this button until you’re instructed to in the future. Press the button on the clicker when you're ready to begin." valType="str" updates="constant"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="welc_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="welc_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="sport_instructions">
<TextComponent name="sportInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="sportInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$sport_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="sportInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="sportInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="False" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="song_o_instructions">
<TextComponent name="song_oInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="song_oInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$song_o_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="song_oInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="song_oInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
<Routine name="song_o">
<CodeComponent name="song_o_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="song_o_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "song_o" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<TextComponent name="song_o_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="song_o_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="+" valType="str" updates="constant"/>
<Param name="stopVal" val="$task_length" valType="code" updates="constant"/>
<Param name="durationEstim" val="10" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="0.3" valType="code" updates="constant"/>
</TextComponent>
<SoundComponent name="song_o_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="song_o_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="face">
<CodeComponent name="face_code">
<Param name="Begin Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="name" val="face_code" valType="code" updates="None"/>
<Param name="Begin Routine" val="tag = "face" # tag - probably task name sid = expInfo['participant'] # subject ID dur = task_length # duration of recording, in seconds start_record_message = { "type": "start-recording", "tag": tag, "duration": dur, "sid": sid, } tryrequest = urllib2.Request(url, data=json.dumps(start_record_message), headers=headers) nowgo = urllib2.urlopen(tryrequest)" valType="extendedCode" updates="constant"/>
<Param name="End Routine" val="" valType="extendedCode" updates="constant"/>
<Param name="End Experiment" val="" valType="extendedCode" updates="constant"/>
<Param name="Each Frame" val="" valType="extendedCode" updates="constant"/>
</CodeComponent>
<SoundComponent name="face_stop">
<Param name="sound" val="stimuli/01.wav" valType="str" updates="constant"/>
<Param name="volume" val="1" valType="code" updates="constant"/>
<Param name="name" val="face_stop" valType="code" updates="None"/>
<Param name="stopVal" val="0.5" valType="code" updates="constant"/>
<Param name="durationEstim" val="" valType="code" updates="None"/>
<Param name="startEstim" val="10" valType="code" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="stopType" val="duration (s)" valType="str" updates="None"/>
<Param name="startVal" val="$task_length" valType="code" updates="None"/>
</SoundComponent>
</Routine>
<Routine name="trial"/>
<Routine name="listennoise_instructions">
<TextComponent name="listennoiseInstr_text">
<Param name="opacity" val="1" valType="code" updates="constant"/>
<Param name="colorSpace" val="rgb" valType="str" updates="constant"/>
<Param name="name" val="listennoiseInstr_text" valType="code" updates="None"/>
<Param name="wrapWidth" val="" valType="code" updates="constant"/>
<Param name="color" val="white" valType="str" updates="constant"/>
<Param name="text" val="$listennoise_instructions_text" valType="str" updates="set every repeat"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="pos" val="[0, 0]" valType="code" updates="constant"/>
<Param name="flip" val="" valType="str" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="units" val="from exp settings" valType="str" updates="None"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="ori" val="0" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="font" val="Arial" valType="str" updates="constant"/>
<Param name="letterHeight" val="$font_size" valType="code" updates="constant"/>
</TextComponent>
<KeyboardComponent name="listennoiseInstr_resp">
<Param name="correctAns" val="" valType="str" updates="constant"/>
<Param name="storeCorrect" val="False" valType="bool" updates="constant"/>
<Param name="name" val="listennoiseInstr_resp" valType="code" updates="None"/>
<Param name="stopVal" val="" valType="code" updates="constant"/>
<Param name="durationEstim" val="5" valType="code" updates="None"/>
<Param name="forceEndRoutine" val="True" valType="bool" updates="constant"/>
<Param name="startEstim" val="" valType="code" updates="None"/>
<Param name="discard previous" val="True" valType="bool" updates="constant"/>
<Param name="startType" val="time (s)" valType="str" updates="None"/>
<Param name="allowedKeys" val="'space','b'" valType="code" updates="constant"/>
<Param name="stopType" val="condition" valType="str" updates="None"/>
<Param name="startVal" val="0.0" valType="code" updates="None"/>
<Param name="store" val="nothing" valType="str" updates="constant"/>
</KeyboardComponent>
</Routine>
</Routines>
<Flow>
<Routine name="welcome"/>
<LoopInitiator loopType="TrialHandler" name="experiment_runs">
<Param name="conditionsFile" val="" valType="str" updates="None"/>
<Param name="name" val="experiment_runs" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="2" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="None" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<LoopInitiator loopType="TrialHandler" name="breathe_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="breathe_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="breathe_instructions"/>
<Routine name="breathe"/>
<LoopTerminator name="breathe_loop"/>
<LoopInitiator loopType="TrialHandler" name="song_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="song_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="song_instructions"/>
<Routine name="song"/>
<LoopTerminator name="song_loop"/>
<LoopInitiator loopType="TrialHandler" name="song_o_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="song_o_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="song_o_instructions"/>
<Routine name="song_o"/>
<LoopTerminator name="song_o_loop"/>
<LoopInitiator loopType="TrialHandler" name="listentone_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="listentone_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="listentone_instructions"/>
<Routine name="listentone"/>
<LoopTerminator name="listentone_loop"/>
<LoopInitiator loopType="TrialHandler" name="sport_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="sport_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="sport_instructions"/>
<Routine name="sport"/>
<LoopTerminator name="sport_loop"/>
<LoopInitiator loopType="TrialHandler" name="breathe_o_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="breathe_o_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="breathe_o_instructions"/>
<Routine name="breathe_o"/>
<LoopTerminator name="breathe_o_loop"/>
<LoopInitiator loopType="TrialHandler" name="speech_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="speech_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="speech_instructions"/>
<Routine name="speech"/>
<LoopTerminator name="speech_loop"/>
<LoopInitiator loopType="TrialHandler" name="listennoise_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="listennoise_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="listennoise_instructions"/>
<Routine name="listennoise"/>
<LoopTerminator name="listennoise_loop"/>
<LoopInitiator loopType="TrialHandler" name="face_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="face_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="face_instructions"/>
<Routine name="face"/>
<LoopTerminator name="face_loop"/>
<LoopInitiator loopType="TrialHandler" name="sequence_loop">
<Param name="conditionsFile" val="task_instructions.xlsx" valType="str" updates="None"/>
<Param name="name" val="sequence_loop" valType="code" updates="None"/>
<Param name="isTrials" val="True" valType="bool" updates="None"/>
<Param name="random seed" val="" valType="code" updates="None"/>
<Param name="loopType" val="sequential" valType="str" updates="None"/>
<Param name="nReps" val="1" valType="code" updates="None"/>
<Param name="endPoints" val="[0, 1]" valType="num" updates="None"/>
<Param name="conditions" val="[{u'song_o_instructions_text': u"Next, please do the same as you were during the previous song task, except this time keep your eyes open. There will be a cross displayed on the screen you should look at during the task. Again, during this time, try not to make any movements or sounds, including moving your lips.\n\nThe task will last 10 seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u'For this task you will be imagining a face, a word, and a number following a sequence of cues that will be displayed on the screen. Take a moment now to choose a face (it can be the same as the previous task), a number, and a word. Please tell these to the experimenter each of these choices when you\'re ready.\n\nWhen you see a ":)" symbol imagine the face of the person you chose.\n\nWhen you see a "#" symbol, imagine the number you chose.\n\nWhen you see a "A" symbol, imagine the word you chose.\n\nThe whole sequence will last 10 seconds.\n\nPress the button on the clicker when you\'re ready to begin.', u'listennoise_instructions_text': u"In the next task, you will be listening to continuous noise with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the noise. During this time try not to make any movements or sounds. After 10 seconds, the noise will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"In the next task, you will be singing a song in your mind with your eyes closed. You will not be actually singing the song or reciting the passage out loud, but just doing so in your head.\n\nTake a few moments to choose a song that you are familiar with. Choose a particular section of the song, since you will be repeating this task more than once. Please tell the experimenter which song you've chosen.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and start singing the song in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"In the next task, you will be listening to a continuous low tone with your eyes closed for 10 seconds.\n\nOnce you begin, close your eyes and focus on the tone. During this time try not to make any movements or sounds. After 10 seconds, the tone will stop and you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u'For the first task, please close your eyes and focus on your breathing. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and breathe, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nWhen you feel ready to perform the real task, press the button on the clicker to begin.', u'breathe_o_instructions_text': u"For this task, please keep your eyes open, look at the cross on the screen, and focus on your breathing. You may blink normally. Breathe at a speed that is comfortable for you, and try to relax as best you can.\n\nThe task will last 10 seconds.\n\nBefore you start, do a short practice now. Breathe with your eyes open, relaxing your mind as you do. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"In the next task, you will be picturing a face of a person in your mind with your eyes closed.\n\nTake a few moments now to choose the person who's face you will imagine in your head. Please explain to the experimenter in a few words (e.g. their relationship to you or their name) whose face you have chosen.\n\nOnce you begin, close your eyes and imagine this person's face in your mind. During this time, try not to make any movements or sounds, simply focus on the face. You may stop and open your eyes when you hear the tone.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"In the next task, you will be imagining hearing a spoken phrase in your mind with your eyes closed. \n\nTake a few moments to choose a phrase. The phrase shouldn't take longer than a few seconds to say out loud. Please tell the experimenter which phrase you've chosen when you're ready.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nTry a short practice now. Close your eyes and imagine hearing the phrase in your mind. During this time, try not to make any movements or sounds, including moving your lips.\n\n\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"For this task, please choose a physical activity or motion you can imagine yourself doing. You will close your eyes and imagine attempting this activity repeatedly.\n\nPlease briefly describe to the experimenter what the activity you chose is.\n\nThe task will last 10 seconds, after 10 seconds you will hear a tone indicating you may open your eyes.\n\nBefore you start, do a short practice now. Close your eyes and imagine attempting the activity. Do this for a few seconds.\n\n\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}, {u'song_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sequence_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listennoise_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'song_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'listentone_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'breathe_o_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'face_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'speech_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin.", u'sport_instructions_text': u"Next, please repeat this task. The instructions are the same.\n\nPress the button on the clicker when you're ready to begin."}]" valType="str" updates="None"/>
<Param name="Selected rows" val="" valType="str" updates="None"/>
</LoopInitiator>
<Routine name="sequence_instructions"/>
<Routine name="sequence"/>
<LoopTerminator name="sequence_loop"/>
<LoopTerminator name="experiment_runs"/>
<Routine name="end"/>
</Flow>
</PsychoPy2experiment>