This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
annotations.json
executable file
·2400 lines (2399 loc) · 63.3 KB
/
annotations.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "rec16qJ9xvKzZ30xr",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 191,
"episode": 0,
"instruction": "Press the green, cyan and pink buttons in that order.",
"time_start": "1653912935538",
"Last Modified": "2022-05-30T12:16:23.000Z"
}
},
{
"id": "rec5gb7wlzVBAUEbN",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 156,
"episode": 1,
"instruction": "Press the darker blue button, then the grey one and finally the lighter blue button.",
"time_start": "1653913190880",
"Last Modified": "2022-05-30T12:20:20.000Z"
}
},
{
"id": "rec01TRmhtjjIITUk",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 170,
"episode": 6,
"instruction": "Press the grey and then the green button ",
"time_start": "1653837442221",
"Last Modified": "2022-05-29T15:18:08.000Z"
}
},
{
"id": "rec01oQbJR7NJFcJ9",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 174,
"episode": 3,
"instruction": "Press the black button, and then do the same with the gray button and press the pink button.",
"time_start": "1653998152452",
"Last Modified": "2022-05-31T11:56:11.000Z"
}
},
{
"id": "rec06WM5uBREg9hFb",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 123,
"episode": 8,
"instruction": "Press the yellow button and the press the light blue button and finish with the green button",
"time_start": "1653986734637",
"Last Modified": "2022-05-31T08:46:04.000Z"
}
},
{
"id": "rec0xYmgku3NdeYUO",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 184,
"episode": 5,
"instruction": "Tap on the green button, then the grey button and end up pressing the pink button.",
"time_start": "1653912782735",
"Last Modified": "2022-05-30T12:13:35.000Z"
}
},
{
"id": "rec0ytACINB9OmfiW",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 164,
"episode": 7,
"instruction": "Press the green button. go the the blue button and press it. Finally press the cyan button",
"time_start": "1653912166372",
"Last Modified": "2022-05-31T12:05:51.000Z"
}
},
{
"id": "rec1LV212LmN8vOJM",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 185,
"episode": 8,
"instruction": "First push the orange button, then the purple one, finally press the white button",
"time_start": "1653840018602",
"Last Modified": "2022-05-29T16:00:58.000Z"
}
},
{
"id": "rec1MUxVeOwk8QNqf",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 143,
"episode": 3,
"instruction": "Press the while button and then you go to green button and press it and finally press the black button",
"time_start": "1653986881425",
"Last Modified": "2022-05-31T08:48:23.000Z"
}
},
{
"id": "rec1PHRoGGL7MfG8W",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 113,
"episode": 1,
"instruction": "Press cyan then the grey button and then dark green buttons",
"time_start": "1653839946432",
"Last Modified": "2022-05-31T11:59:45.000Z"
}
},
{
"id": "rec1XvMPMTSxPZDtw",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 170,
"episode": 4,
"instruction": "Press the gray button and then press the green button",
"time_start": "1653937855076",
"Last Modified": "2022-05-30T19:11:34.000Z"
}
},
{
"id": "rec2B0F7UbdkGrdA6",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 160,
"episode": 5,
"instruction": "Press the olive button, and push the navy button and press the yellow button.",
"time_start": "1653998251031",
"Last Modified": "2022-05-31T12:07:05.000Z"
}
},
{
"id": "rec2QcfDgizYt7Bvk",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 146,
"episode": 8,
"instruction": "press the red button and then the violet button and press the green button",
"time_start": "1653912111988",
"Last Modified": "2022-05-31T12:03:10.000Z"
}
},
{
"id": "rec2v9trrFnu6cYzq",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 161,
"episode": 9,
"instruction": "Press the olive button and then press the navy button and finally press the blue button",
"time_start": "1653998037334",
"Last Modified": "2022-05-31T11:54:15.000Z"
}
},
{
"id": "rec33Wy7LkM14a61L",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 118,
"episode": 5,
"instruction": "Press the blue button, then the dark red button, finish by pressing the orange button",
"time_start": "1653837801247",
"Last Modified": "2022-05-29T15:59:07.000Z"
}
},
{
"id": "rec3Nrg1ghEiOz9wB",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 135,
"episode": 0,
"instruction": "Press the black button and then push the pink button and then the blue button",
"time_start": "1653837605648",
"Last Modified": "2022-05-31T12:02:07.000Z"
}
},
{
"id": "rec3OKjQaJWsHkAt6",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 113,
"episode": 8,
"instruction": "press the cyan, then move to the gray one and finish with the green button",
"time_start": "1653912139529",
"Last Modified": "2022-05-30T12:02:46.000Z"
}
},
{
"id": "rec3VcckhYpqqdu5F",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 176,
"episode": 9,
"instruction": "Press the brown button and then press the pink button and finally press the pink button",
"time_start": "1653998008981",
"Last Modified": "2022-05-31T11:53:57.000Z"
}
},
{
"id": "rec3YhcFbWViiHni1",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 181,
"episode": 9,
"instruction": "Press the black button and then press the violet button and finish with the pink one",
"time_start": "1653998090567",
"Last Modified": "2022-05-31T11:55:11.000Z"
}
},
{
"id": "rec3i9JiJ2jRiDCh8",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 153,
"episode": 4,
"instruction": "Press the brown button and then press the navy button and push the blue button",
"time_start": "1653986826279",
"Last Modified": "2022-05-31T12:04:11.000Z"
}
},
{
"id": "rec3qAfISCifcDvlV",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 118,
"episode": 9,
"instruction": "Press the blue button and then push the purple and finally the orange one",
"time_start": "1653986690864",
"Last Modified": "2022-05-31T08:45:16.000Z"
}
},
{
"id": "rec3vFcEb70T1K0BU",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 106,
"episode": 5,
"instruction": "Press the grey button, then the dark one and finally the pink lid.",
"time_start": "1653912815864",
"Last Modified": "2022-05-30T12:14:12.000Z"
}
},
{
"id": "rec4MmQkBZHIov4CC",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 137,
"episode": 7,
"instruction": "Press the grey button before the white one and stop the task.",
"time_start": "1653912852855",
"Last Modified": "2022-05-30T12:14:49.000Z"
}
},
{
"id": "rec4PbXhZL4ibkznl",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 163,
"episode": 4,
"instruction": "In that order, press the red, white and finally purple buttons.",
"time_start": "1653912574121",
"Last Modified": "2022-05-30T12:11:35.000Z"
}
},
{
"id": "rec4QQfviI03bmnJW",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 102,
"episode": 5,
"instruction": "Press the purple button and then press with the orange button and finally press the pink one",
"time_start": "1653986717223",
"Last Modified": "2022-05-31T11:59:25.000Z"
}
},
{
"id": "rec4XyrhjEyRwej8r",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 174,
"episode": 2,
"instruction": "Press the black button and then press the gray button and push the pink one.",
"time_start": "1653998229329",
"Last Modified": "2022-05-31T11:57:30.000Z"
}
},
{
"id": "rec5eYLbgPfHiSmtr",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 131,
"episode": 9,
"instruction": "Press the pink button, and then go to the purple button. Then press the green button.",
"time_start": "1653986570528",
"Last Modified": "2022-05-31T12:01:22.000Z"
}
},
{
"id": "rec5iuitjpAnNh8rW",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 171,
"episode": 2,
"instruction": "Press the white button, continue by pressing the grey button, finish by pressing the pink button",
"time_start": "1653837557094",
"Last Modified": "2022-05-29T15:20:07.000Z"
}
},
{
"id": "rec60omUas8yaeUGr",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 159,
"episode": 1,
"instruction": "Push the dark red, the black and the purple buttons in a sequence",
"time_start": "1653837697169",
"Last Modified": "2022-05-29T15:22:33.000Z"
}
},
{
"id": "rec6FybYU93l5dvTP",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 141,
"episode": 2,
"instruction": "Push the olive button and then the blue one and finally the green one.",
"time_start": "1653913075670",
"Last Modified": "2022-05-31T12:02:38.000Z"
}
},
{
"id": "rec6QoHWSxHwV45Fe",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 194,
"episode": 7,
"instruction": "You have to tap on the blue button, and after that press the orange one, and end up pressing down on the yellow button.",
"time_start": "1653912889656",
"Last Modified": "2022-05-30T12:15:35.000Z"
}
},
{
"id": "rec6RKrPThYrSUAmx",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 165,
"episode": 2,
"instruction": "Press the olive, pink and grey buttons following that exact order.",
"time_start": "1653913164696",
"Last Modified": "2022-05-30T12:19:50.000Z"
}
},
{
"id": "rec6UCKhOsprcQfw9",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 111,
"episode": 6,
"instruction": "Press the orange button and switch to the green button and finish with the black button",
"time_start": "1653986667976",
"Last Modified": "2022-05-31T08:44:46.000Z"
}
},
{
"id": "rec6by3ME4f9O7gQe",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 152,
"episode": 3,
"instruction": "Push the purple button and then press the the yellow button and finally press the gray button",
"time_start": "1653998055471",
"Last Modified": "2022-05-31T11:54:50.000Z"
}
},
{
"id": "rec6vjM86kJutuIjC",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 168,
"episode": 8,
"instruction": "First press the blue button, then press the purple one, finish by pressing the white button",
"time_start": "1653837486445",
"Last Modified": "2022-05-29T15:19:19.000Z"
}
},
{
"id": "rec70RNgyhGg3dYDF",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 119,
"episode": 2,
"instruction": "Press the green button and then you press the brown button and you finish with the yellow button",
"time_start": "1653986903222",
"Last Modified": "2022-05-31T08:48:46.000Z"
}
},
{
"id": "rec70ia6qXs0n4hgZ",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 162,
"episode": 1,
"instruction": "Press the gray button, and then press the green and press the blue button",
"time_start": "1653914323941",
"Last Modified": "2022-05-30T19:08:57.000Z"
}
},
{
"id": "rec71IjztfR53n9bE",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 141,
"episode": 9,
"instruction": "Press the olive button and then press the cyan button and finally press the green button",
"time_start": "1653937781062",
"Last Modified": "2022-05-30T19:10:35.000Z"
}
},
{
"id": "rec7CaaXngRn0Bww1",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 168,
"episode": 3,
"instruction": "Tap on the blue button before the purple one and finish with the white one.",
"time_start": "1653912695854",
"Last Modified": "2022-05-30T12:13:02.000Z"
}
},
{
"id": "rec7STmAZddm0cIy6",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 178,
"episode": 1,
"instruction": "Press the yellow button, continue by pressing the purple and then pink buttons",
"time_start": "1653837248170",
"Last Modified": "2022-05-29T15:17:23.000Z"
}
},
{
"id": "rec7Ug10DwT3koANp",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 110,
"episode": 5,
"instruction": "Press the pink button and then the purple one.",
"time_start": "1653912230813",
"Last Modified": "2022-05-30T12:09:33.000Z"
}
},
{
"id": "rec7e5FlpbgDlR6dz",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 101,
"episode": 3,
"instruction": "Press the cyan button, then the black button and finally press the dark blue button",
"time_start": "1653837642624",
"Last Modified": "2022-05-29T15:21:39.000Z"
}
},
{
"id": "rec7pvskuX8JV6Uof",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 121,
"episode": 9,
"instruction": "Press the gray button and then do the same with the white button and finish with the black button",
"time_start": "1653986594046",
"Last Modified": "2022-05-31T08:43:57.000Z"
}
},
{
"id": "rec7vj9zPQQF8uud8",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 158,
"episode": 5,
"instruction": "Push the cyan button, then press the grey button and press the green button",
"time_start": "1653837751010",
"Last Modified": "2022-05-31T12:04:58.000Z"
}
},
{
"id": "rec871nxwzTw1oItI",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 117,
"episode": 5,
"instruction": "push the purple button and then push the blue button and push the navy one",
"time_start": "1653986474799",
"Last Modified": "2022-05-31T12:00:24.000Z"
}
},
{
"id": "rec8CLfx4axegdr11",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 136,
"episode": 1,
"instruction": "Press the while button, then press the olive button and finally press the gray button",
"time_start": "1653937835663",
"Last Modified": "2022-05-30T19:10:54.000Z"
}
},
{
"id": "rec8MSpbGRMgCYeVt",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 134,
"episode": 8,
"instruction": "Press the green button and then press the pink and press the cyan one",
"time_start": "1653998111833",
"Last Modified": "2022-05-31T11:55:32.000Z"
}
},
{
"id": "rec8N0M3WOkuKsmzh",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 148,
"episode": 4,
"instruction": "Press the purple button and then press the blue button and then press the gray button",
"time_start": "1653937740617",
"Last Modified": "2022-05-30T19:09:21.000Z"
}
},
{
"id": "rec8NXgtHvj2IyZSt",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 189,
"episode": 5,
"instruction": "Press the gray button and then press the blue button and then press the yellow button.",
"time_start": "1653937761416",
"Last Modified": "2022-05-30T19:09:40.000Z"
}
},
{
"id": "rec8lqsHPCK3SAI9O",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 159,
"episode": 0,
"instruction": "The sequence of colors of buttons that you should push is purple, black and violet.",
"time_start": "1653912983627",
"Last Modified": "2022-05-30T12:17:55.000Z"
}
},
{
"id": "rec8oP7wdnNZikAQK",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 135,
"episode": 6,
"instruction": "Press the black button and then press the pink button and finally press the blue button",
"time_start": "1653986637599",
"Last Modified": "2022-05-31T08:44:20.000Z"
}
},
{
"id": "rec99yP4JhUJuh5G8",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 103,
"episode": 5,
"instruction": "Press the yellow button and then press the black button and press the white button",
"time_start": "1653998172034",
"Last Modified": "2022-05-31T11:56:30.000Z"
}
},
{
"id": "rec9jYI7Ln5zK86PX",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 149,
"episode": 3,
"instruction": "Press the orange button, before you press the blue button and you push the pink one",
"time_start": "1653986764563",
"Last Modified": "2022-05-31T12:03:37.000Z"
}
},
{
"id": "rec9kHcgLxrZhWNtZ",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 108,
"episode": 7,
"instruction": "Press the olive button and press the orange one and press the pink one",
"time_start": "1653998212047",
"Last Modified": "2022-05-31T11:57:09.000Z"
}
},
{
"id": "rec9oO1GM1fXLEDUs",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 125,
"episode": 5,
"instruction": "Press the navy button and then press the pink button and finish with the gray one",
"time_start": "1653986853350",
"Last Modified": "2022-05-31T08:47:58.000Z"
}
},
{
"id": "recA9Vl1CqZMeQh7W",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 175,
"episode": 8,
"instruction": "Press the light blue button and then press the black and push the blue button.",
"time_start": "1653998190905",
"Last Modified": "2022-05-31T11:56:51.000Z"
}
},
{
"id": "recAObOlh4YS2NJt6",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 127,
"episode": 6,
"instruction": "Push the gray button and then press the cyan button and push the white button.",
"time_start": "1653998132470",
"Last Modified": "2022-05-31T11:55:52.000Z"
}
},
{
"id": "recPEENsPTOy8cw9Z",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 143,
"episode": 8,
"instruction": "press the white button, then the green button and finish with the brown button",
"Last Modified": "2022-05-29T13:59:16.000Z"
}
},
{
"id": "recfxyw9uYDMEU5nk",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 165,
"episode": 4,
"instruction": "please push the green button and after you press the pink button and finally the gray button.",
"Last Modified": "2022-05-29T13:59:38.000Z"
}
},
{
"id": "recgluI9RAnQ50r6E",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 191,
"episode": 7,
"instruction": "push the green button and then the cyan button and then the pink one.",
"Last Modified": "2022-05-29T13:59:54.000Z"
}
},
{
"id": "recr9f4lBgyQHuIHI",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 112,
"episode": 5,
"instruction": "Press the yellow button, and then the black button, and finally the gray button.",
"Last Modified": "2022-05-29T13:58:39.000Z"
}
},
{
"id": "recybtCCpa2Mew9Tg",
"createdTime": "2022-05-29T13:58:00.000Z",
"fields": {
"task": "push_buttons3",
"variation": 128,
"episode": 6,
"instruction": "push the yellow button, then go to the brown button and finish with the purple button",
"Last Modified": "2022-05-29T13:58:58.000Z"
}
},
{
"id": "streamlit-tower3-65",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 147,
"colors": [
"azure",
"white",
"red"
],
"episode": 0,
"instruction": "Take the light blue cube and put it as a base. Then take the white cube and put it on top of the red one.",
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-67",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 100,
"colors": [
"lime",
"rose"
],
"episode": 0,
"instruction": "First green then pink on top of green.",
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-68",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 101,
"colors": [
"white",
"violet",
"navy"
],
"episode": 0,
"instruction": "Start with the white block. Put the violet block on top of the white block. Next add the blue one on top of the violet block."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-69",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 102,
"colors": [
"orange",
"maroon",
"black"
],
"episode": 0,
"instruction": "Place the orange block. Place the brown block on top of it. Place the black block on top of the others."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-70",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 103,
"colors": [
"cyan",
"yellow",
"teal"
],
"episode": 0,
"instruction": "Stack the blue block. Then place the yellow block on top of the blue block. Then place the green block on top of the yellow block."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-71",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 104,
"colors": [
"cyan",
"orange",
"navy"
],
"episode": 0,
"instruction": "Move the light blue cube. Then place the orange cube on top of it. Take the dark blue cube and top them off.",
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-72",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 105,
"colors": [
"cyan",
"teal"
],
"episode": 0,
"instruction": "Place the blue block. Place the green block on top of it."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-73",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 106,
"colors": [
"navy",
"white",
"lime"
],
"episode": 0,
"instruction": "Put the blue cube as a base. Then place the white cube on top of the blue cube. Finally, place the green cube on top of the blue cube."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-74",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 107,
"colors": [
"orange",
"green",
"azure"
],
"episode": 0,
"instruction": "Pick up the orange cube and set it down. Then pick up the green cube and put it on top of the blue cube."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-75",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 108,
"colors": [
"blue",
"purple",
"magenta"
],
"episode": 0,
"instruction": "Place the blue cube. Place the purple cube on top of the blue cube. Place the remaining cube on the stack of cubes."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-76",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 109,
"colors": [
"red",
"blue"
],
"episode": 0,
"instruction": "Step 1, move red cube. Step 2, move blue cube, and put it on top of red."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-77",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 110,
"colors": [
"maroon",
"violet"
],
"episode": 0,
"instruction": "Place the brown cube as a base. Then place the violet cube on top of it."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-78",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 111,
"colors": [
"maroon",
"lime",
"white"
],
"episode": 0,
"instruction": "Place the marron block. Then place the green block on top of the marron block. Next place the white block on top of the green block."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-79",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 112,
"colors": [
"violet",
"rose",
"yellow"
],
"episode": 0,
"instruction": "Start with the violet cube for the bottom. Stack the pink cube ontop of the violet cube. Then stack the yellow cube ontop of the pink cube to finish the tower."
,
"time_start": "",
"Last Modified": ""
}
},
{
"id": "streamlit-tower3-80",
"createdTime": "2020-01-01T00:00:00.000Z",
"fields": {
"task": "tower3",
"variation": 113,
"colors": [
"azure",
"teal",
"black"
],
"episode": 0,
"instruction": "Place the blue cube. Place green cube on top of blue cube\nPlace black cube on top of green cube."
,