Datasets:
File size: 241,178 Bytes
788990f | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 | {"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the blue cube"], "init_state_path": ["images/09/StackGreenCubeOnYellowCubeBakedTexInScene_099bc920.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the green cube"], "init_state_path": ["images/0b/StackGreenCubeOnYellowCubeBakedTexInScene_0b025eb4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the 2 red cubes"], "init_state_path": ["images/0b/StackGreenCubeOnYellowCubeBakedTexInScene_0b1a7148.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the red cube"], "init_state_path": ["images/0c/StackGreenCubeOnYellowCubeBakedTexInScene_0c9e7c76.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the red cube and put it on top of the yellow cube"], "init_state_path": ["images/0d/StackGreenCubeOnYellowCubeBakedTexInScene_0d297f2e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of green cube"], "init_state_path": ["images/0d/StackGreenCubeOnYellowCubeBakedTexInScene_0dc982da.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of white cube"], "init_state_path": ["images/0d/StackGreenCubeOnYellowCubeBakedTexInScene_0ddad17a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the yellow cube"], "init_state_path": ["images/0e/StackGreenCubeOnYellowCubeBakedTexInScene_0e3523aa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the blue block"], "init_state_path": ["images/0e/StackGreenCubeOnYellowCubeBakedTexInScene_0ebc7b98.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the red block"], "init_state_path": ["images/0f/StackGreenCubeOnYellowCubeBakedTexInScene_0f5d0c34.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put yellow block on top of red block"], "init_state_path": ["images/0f/StackGreenCubeOnYellowCubeBakedTexInScene_0f663516.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put yellow cube on top of of blue cube"], "init_state_path": ["images/0f/StackGreenCubeOnYellowCubeBakedTexInScene_0ff1e0e8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube ontop of the white cube"], "init_state_path": ["images/10/StackGreenCubeOnYellowCubeBakedTexInScene_10c505f4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the top of the blue block"], "init_state_path": ["images/11/StackGreenCubeOnYellowCubeBakedTexInScene_11607fde.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red block"], "init_state_path": ["images/12/StackGreenCubeOnYellowCubeBakedTexInScene_1299a8b2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red cube"], "init_state_path": ["images/12/StackGreenCubeOnYellowCubeBakedTexInScene_12c01e20.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the blue cube"], "init_state_path": ["images/14/StackGreenCubeOnYellowCubeBakedTexInScene_14169d08.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red cube"], "init_state_path": ["images/14/StackGreenCubeOnYellowCubeBakedTexInScene_14ffd414.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the brown roller on top the cube"], "init_state_path": ["images/16/StackGreenCubeOnYellowCubeBakedTexInScene_162c58ee.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the green cube"], "init_state_path": ["images/17/StackGreenCubeOnYellowCubeBakedTexInScene_170e4dee.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube on top of the wood cube"], "init_state_path": ["images/17/StackGreenCubeOnYellowCubeBakedTexInScene_17686202.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube block on top of the blue cube"], "init_state_path": ["images/18/StackGreenCubeOnYellowCubeBakedTexInScene_18b70794.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the yellow cube"], "init_state_path": ["images/19/StackGreenCubeOnYellowCubeBakedTexInScene_19ce1078.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red cube"], "init_state_path": ["images/1c/StackGreenCubeOnYellowCubeBakedTexInScene_1cd0e282.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of yellow block"], "init_state_path": ["images/1f/StackGreenCubeOnYellowCubeBakedTexInScene_1f94cd26.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the green cube"], "init_state_path": ["images/22/StackGreenCubeOnYellowCubeBakedTexInScene_22e178da.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the blue cube"], "init_state_path": ["images/23/StackGreenCubeOnYellowCubeBakedTexInScene_2371dc18.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the green block on top of the yellow block"], "init_state_path": ["images/23/StackGreenCubeOnYellowCubeBakedTexInScene_23f09bac.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["putting the yellow cube on top of green and red cube"], "init_state_path": ["images/24/StackGreenCubeOnYellowCubeBakedTexInScene_24417590.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the blue block"], "init_state_path": ["images/25/StackGreenCubeOnYellowCubeBakedTexInScene_254dfca6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the blue block on top of the red block"], "init_state_path": ["images/28/StackGreenCubeOnYellowCubeBakedTexInScene_2804a846.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the block"], "init_state_path": ["images/28/StackGreenCubeOnYellowCubeBakedTexInScene_287633e4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue cube on top of yellow cube"], "init_state_path": ["images/2a/StackGreenCubeOnYellowCubeBakedTexInScene_2aeb1ffe.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the brown cube"], "init_state_path": ["images/2b/StackGreenCubeOnYellowCubeBakedTexInScene_2bace828.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the white block on top of the yellow block"], "init_state_path": ["images/2c/StackGreenCubeOnYellowCubeBakedTexInScene_2c1dbaf8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the red cube"], "init_state_path": ["images/2d/StackGreenCubeOnYellowCubeBakedTexInScene_2df6e25a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of blue block"], "init_state_path": ["images/34/StackGreenCubeOnYellowCubeBakedTexInScene_347c1244.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take red block and put top of red block"], "init_state_path": ["images/37/StackGreenCubeOnYellowCubeBakedTexInScene_37c8c744.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the thin block on top of the yellow block"], "init_state_path": ["images/37/StackGreenCubeOnYellowCubeBakedTexInScene_37ecabd2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the block"], "init_state_path": ["images/37/StackGreenCubeOnYellowCubeBakedTexInScene_37f2a8c0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the blue block"], "init_state_path": ["images/38/StackGreenCubeOnYellowCubeBakedTexInScene_3812201a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the yellow block"], "init_state_path": ["images/38/StackGreenCubeOnYellowCubeBakedTexInScene_38ab97c2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the yellow block"], "init_state_path": ["images/39/StackGreenCubeOnYellowCubeBakedTexInScene_39ea1f6e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["placed the green cube to the top of the yellow cube"], "init_state_path": ["images/3a/StackGreenCubeOnYellowCubeBakedTexInScene_3a3d27fe.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the red block to put it on top of the yellow cube"], "init_state_path": ["images/3e/StackGreenCubeOnYellowCubeBakedTexInScene_3e848a14.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the red cube"], "init_state_path": ["images/3f/StackGreenCubeOnYellowCubeBakedTexInScene_3f15973e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the yellow cube and put it on top of the red cube"], "init_state_path": ["images/40/StackGreenCubeOnYellowCubeBakedTexInScene_40687c50.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put one yellow cube on top the yellow block"], "init_state_path": ["images/44/StackGreenCubeOnYellowCubeBakedTexInScene_44b1c654.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the green cube on the top of yellow cube"], "init_state_path": ["images/45/StackGreenCubeOnYellowCubeBakedTexInScene_455da730.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube block on top of the red cube"], "init_state_path": ["images/46/StackGreenCubeOnYellowCubeBakedTexInScene_46004576.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the red block and put on top of the yellow cube"], "init_state_path": ["images/46/StackGreenCubeOnYellowCubeBakedTexInScene_46238b3a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the brown block on top of the yellow cube"], "init_state_path": ["images/46/StackGreenCubeOnYellowCubeBakedTexInScene_466703b0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the yellow cube"], "init_state_path": ["images/47/StackGreenCubeOnYellowCubeBakedTexInScene_471b4e1a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white cube on top of the red cube"], "init_state_path": ["images/4c/StackGreenCubeOnYellowCubeBakedTexInScene_4c378b7a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on the top of red cube"], "init_state_path": ["images/4c/StackGreenCubeOnYellowCubeBakedTexInScene_4c797238.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the yellow block"], "init_state_path": ["images/4c/StackGreenCubeOnYellowCubeBakedTexInScene_4cac275a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the blue block"], "init_state_path": ["images/4d/StackGreenCubeOnYellowCubeBakedTexInScene_4d078d5c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the blue cube"], "init_state_path": ["images/4d/StackGreenCubeOnYellowCubeBakedTexInScene_4dde2a92.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the red cube on top of the yellow block"], "init_state_path": ["images/50/StackGreenCubeOnYellowCubeBakedTexInScene_50835f4c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the green cube on top of the blue cube"], "init_state_path": ["images/50/StackGreenCubeOnYellowCubeBakedTexInScene_50b2f05e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of green cube"], "init_state_path": ["images/51/StackGreenCubeOnYellowCubeBakedTexInScene_51d9c318.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the red block"], "init_state_path": ["images/52/StackGreenCubeOnYellowCubeBakedTexInScene_52ef86de.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the blue block"], "init_state_path": ["images/53/StackGreenCubeOnYellowCubeBakedTexInScene_5312ab46.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the yellow cube"], "init_state_path": ["images/53/StackGreenCubeOnYellowCubeBakedTexInScene_5395cc7e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on the red block"], "init_state_path": ["images/55/StackGreenCubeOnYellowCubeBakedTexInScene_5533f60a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the green cube"], "init_state_path": ["images/55/StackGreenCubeOnYellowCubeBakedTexInScene_559eedd4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the red cube"], "init_state_path": ["images/5a/StackGreenCubeOnYellowCubeBakedTexInScene_5aee4154.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube to the top of the white cube"], "init_state_path": ["images/5b/StackGreenCubeOnYellowCubeBakedTexInScene_5b5eb934.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the yellow cube"], "init_state_path": ["images/5c/StackGreenCubeOnYellowCubeBakedTexInScene_5cff00fa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the yellow cube"], "init_state_path": ["images/5d/StackGreenCubeOnYellowCubeBakedTexInScene_5d24856e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the blue block"], "init_state_path": ["images/5e/StackGreenCubeOnYellowCubeBakedTexInScene_5e34452a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the blue cube on top of the green cube"], "init_state_path": ["images/5f/StackGreenCubeOnYellowCubeBakedTexInScene_5fee8a88.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/60/StackGreenCubeOnYellowCubeBakedTexInScene_605bce04.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the blue block"], "init_state_path": ["images/61/StackGreenCubeOnYellowCubeBakedTexInScene_61211948.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the yellow block"], "init_state_path": ["images/61/StackGreenCubeOnYellowCubeBakedTexInScene_614fea0c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put he red cube on top of the green cube"], "init_state_path": ["images/62/StackGreenCubeOnYellowCubeBakedTexInScene_621e1a76.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/64/StackGreenCubeOnYellowCubeBakedTexInScene_64e7fb6e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the yellow block"], "init_state_path": ["images/67/StackGreenCubeOnYellowCubeBakedTexInScene_672117bc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the blue cube"], "init_state_path": ["images/6f/StackGreenCubeOnYellowCubeBakedTexInScene_6f6ca256.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the green block"], "init_state_path": ["images/72/StackGreenCubeOnYellowCubeBakedTexInScene_72b137e2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the green block"], "init_state_path": ["images/73/StackGreenCubeOnYellowCubeBakedTexInScene_73547902.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the yellow cube."], "init_state_path": ["images/74/StackGreenCubeOnYellowCubeBakedTexInScene_7415ef42.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube on top of the yellow cube"], "init_state_path": ["images/75/StackGreenCubeOnYellowCubeBakedTexInScene_75b973f0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the red cube"], "init_state_path": ["images/83/StackGreenCubeOnYellowCubeBakedTexInScene_831f57b2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the green cube"], "init_state_path": ["images/83/StackGreenCubeOnYellowCubeBakedTexInScene_83238eea.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of green block"], "init_state_path": ["images/84/StackGreenCubeOnYellowCubeBakedTexInScene_843e3bc2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the green cube"], "init_state_path": ["images/85/StackGreenCubeOnYellowCubeBakedTexInScene_8500250c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/85/StackGreenCubeOnYellowCubeBakedTexInScene_85104946.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on the green cube"], "init_state_path": ["images/85/StackGreenCubeOnYellowCubeBakedTexInScene_854ebbb8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the green cube to the top of the yellow cube"], "init_state_path": ["images/86/StackGreenCubeOnYellowCubeBakedTexInScene_86480a74.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the green cube on top of the yellow cube"], "init_state_path": ["images/87/StackGreenCubeOnYellowCubeBakedTexInScene_8723fa02.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white block on top of the green cube"], "init_state_path": ["images/87/StackGreenCubeOnYellowCubeBakedTexInScene_87a7a1c2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the green cube"], "init_state_path": ["images/89/StackGreenCubeOnYellowCubeBakedTexInScene_8903a160.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the green cube"], "init_state_path": ["images/89/StackGreenCubeOnYellowCubeBakedTexInScene_8956c8c2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on the yellow block"], "init_state_path": ["images/8a/StackGreenCubeOnYellowCubeBakedTexInScene_8acc2ec2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the red cube"], "init_state_path": ["images/8a/StackGreenCubeOnYellowCubeBakedTexInScene_8ae8f19c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/8c/StackGreenCubeOnYellowCubeBakedTexInScene_8cb85648.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white block on top of the red cube"], "init_state_path": ["images/8d/StackGreenCubeOnYellowCubeBakedTexInScene_8d43ba6c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow block on to of the red block"], "init_state_path": ["images/8e/StackGreenCubeOnYellowCubeBakedTexInScene_8e05d412.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of blue block"], "init_state_path": ["images/8f/StackGreenCubeOnYellowCubeBakedTexInScene_8f1457f2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the light blue cube on the right side of the red spoon"], "init_state_path": ["images/8f/StackGreenCubeOnYellowCubeBakedTexInScene_8f191a76.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put cube on top of the cylinder"], "init_state_path": ["images/8f/StackGreenCubeOnYellowCubeBakedTexInScene_8fbb6d80.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put redcube in pan and put pan on stove"], "init_state_path": ["images/8f/StackGreenCubeOnYellowCubeBakedTexInScene_8fe5befa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the rectangular block to the top of the other rectangular block"], "init_state_path": ["images/8f/StackGreenCubeOnYellowCubeBakedTexInScene_8ff8227a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the green block to the left"], "init_state_path": ["images/90/StackGreenCubeOnYellowCubeBakedTexInScene_9010041c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the white arch"], "init_state_path": ["images/90/StackGreenCubeOnYellowCubeBakedTexInScene_901e5684.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put wood cube on top of wood rectangle"], "init_state_path": ["images/90/StackGreenCubeOnYellowCubeBakedTexInScene_9036b580.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cube to put it on top of the rectangle"], "init_state_path": ["images/90/StackGreenCubeOnYellowCubeBakedTexInScene_90c6e5ba.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the red block"], "init_state_path": ["images/90/StackGreenCubeOnYellowCubeBakedTexInScene_90cd4bd0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow cube from the green cube and put it on top of the cylinder"], "init_state_path": ["images/90/StackGreenCubeOnYellowCubeBakedTexInScene_90e0fdf6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the red cube from the arch and put it on top of the yellow cube"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_9117c296.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the block"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91221be2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the cylinder"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_914789e0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick up the plus and put down on the upper of yellow cube"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91616202.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the tower"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91a66596.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the yellow rectangular block slightly to the left"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91c2c18c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the block and put it to the right"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91d8e52a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular on top of the rectangular block next to it"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91de6266.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick the white cylinder block and put it on top of the blue cube"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91e6c29e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the red rectangle block"], "init_state_path": ["images/91/StackGreenCubeOnYellowCubeBakedTexInScene_91eb8374.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Took the red block and put it in the middle"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_92063368.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the another cube"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_922201ec.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take white rectangle on top of blue block and put down next to yellow cube"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_92325dee.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue block on the right side of the other block"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_924035b8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the cube"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_9255d6e8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of yellow block"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_92712c90.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the green rectangular block"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_929e3870.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red block to the left side of the table"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_92d482c2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the rectangular block off of the blue rectangular block and put it on top of the green cube"], "init_state_path": ["images/92/StackGreenCubeOnYellowCubeBakedTexInScene_92f47c8a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the blue rectangular block to the center of the table"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_9301fa86.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white cube in the middle of a table"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_9320b520.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["stack cuboid to the left"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_933f58d6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the white cylinder"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_934d5d96.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the blue block from the tower and put it in the center of the table"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_93c5cc72.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the white block"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_93dbbb22.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue block from top of the cylinder to the left"], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_93e24910.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube from the top of the tower and put it beside the cylinder."], "init_state_path": ["images/93/StackGreenCubeOnYellowCubeBakedTexInScene_93e7a5b8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the wood stick inside the 3d square block with hole"], "init_state_path": ["images/94/StackGreenCubeOnYellowCubeBakedTexInScene_943f7086.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the blue arch off of the tower and put it on top of the rectangle block"], "init_state_path": ["images/94/StackGreenCubeOnYellowCubeBakedTexInScene_948cf572.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the white block on top and place it on the right side near the yelow block"], "init_state_path": ["images/94/StackGreenCubeOnYellowCubeBakedTexInScene_94e3c1ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top on the brown arch"], "init_state_path": ["images/94/StackGreenCubeOnYellowCubeBakedTexInScene_94e9d6ca.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the block on top of the blue rectangular box"], "init_state_path": ["images/94/StackGreenCubeOnYellowCubeBakedTexInScene_94fd5cea.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the green cube"], "init_state_path": ["images/95/StackGreenCubeOnYellowCubeBakedTexInScene_951db09e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the top of green block"], "init_state_path": ["images/95/StackGreenCubeOnYellowCubeBakedTexInScene_95343d64.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the block to the middle of the table"], "init_state_path": ["images/95/StackGreenCubeOnYellowCubeBakedTexInScene_954f7c50.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green stack to the right side of the table"], "init_state_path": ["images/95/StackGreenCubeOnYellowCubeBakedTexInScene_955bac0a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the green block"], "init_state_path": ["images/95/StackGreenCubeOnYellowCubeBakedTexInScene_959e9510.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block in the left on the top of the green block"], "init_state_path": ["images/95/StackGreenCubeOnYellowCubeBakedTexInScene_95ad7cd8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of the cylinder"], "init_state_path": ["images/96/StackGreenCubeOnYellowCubeBakedTexInScene_96099568.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the yellow cube"], "init_state_path": ["images/96/StackGreenCubeOnYellowCubeBakedTexInScene_968436f6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red block and put it down on the left side"], "init_state_path": ["images/96/StackGreenCubeOnYellowCubeBakedTexInScene_96b10802.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green rectangle block on top of the yellow rectangle block"], "init_state_path": ["images/96/StackGreenCubeOnYellowCubeBakedTexInScene_96bc50b8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green rectangular block on top of the yellow rectangular block."], "init_state_path": ["images/96/StackGreenCubeOnYellowCubeBakedTexInScene_96df4c8a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["placed a white cube on top of the blue cloth"], "init_state_path": ["images/96/StackGreenCubeOnYellowCubeBakedTexInScene_96e7a696.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the red arch"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_97022656.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the yellow block on top of the red arch"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_972f4154.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the small cylinder on top of the cube with a hole"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_97543342.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cone off the green block and put it on the plus"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_97589bc6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the cylinder"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_975f736a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the green block on top of the blue block"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_97a632fa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of a rectangular block"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_97b204ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red block to the right"], "init_state_path": ["images/97/StackGreenCubeOnYellowCubeBakedTexInScene_97d4bd96.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the cube at the top of the tower"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_98240720.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the Yellow block above the blue block and put it to the left of the table"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_98298ef2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the pawn on top of the cube with hole in the middle"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_983713f6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["picking the yellow block and pushing it aside to the right"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_983c99d4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red object from top of table to the top of rectangel beside the the cube with the hole"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_9843d8c0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the l-shape block to the middle of the table"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_984a3576.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block in the blue cylinder"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_984f2b08.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red cube"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_987ea2b6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the block from the stack and move to the right side of the table"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_989f57a4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the green arch next to the block tower"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_98a48602.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the green cube"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_98d00156.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["puting the white block to the left"], "init_state_path": ["images/98/StackGreenCubeOnYellowCubeBakedTexInScene_98e35fc6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the onion on top of the red cube"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_991b21e0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the red hexagon"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_9935b8f2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the cylinder"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_993d5634.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the cube with the hole from the small pole and put it to the right"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_99646c74.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the blue block to the right"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_99ae5e74.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on the bottom right cloth"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_99c0abce.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the blue rectangle"], "init_state_path": ["images/99/StackGreenCubeOnYellowCubeBakedTexInScene_99e5e88a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow rectangular block on top of the green and red cubes"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a049078.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Grab the white cube and move it to the edge of the cloth"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a146070.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green rectangular block on top of the red arch"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a1bb528.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick up the green rectangle block and put it on top of the yellow rectangle block"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a2f5a92.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Stack the cube on top of the other"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a41e414.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a4d024a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the blue cube from the arch and put on the left side of the table"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a64d60e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue block from the left side of the table and put it on top of the red block"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a750d94.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on the right side"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a7cde5c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Picked the green cube and placed it on top of the red cube"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9a8e1bf4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the green arch"], "init_state_path": ["images/9a/StackGreenCubeOnYellowCubeBakedTexInScene_9aa38a20.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green arch on top of the blue rectangular block"], "init_state_path": ["images/9b/StackGreenCubeOnYellowCubeBakedTexInScene_9b12a018.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of one block"], "init_state_path": ["images/9b/StackGreenCubeOnYellowCubeBakedTexInScene_9bf71dd8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the stick on top of the rectangular block"], "init_state_path": ["images/9b/StackGreenCubeOnYellowCubeBakedTexInScene_9bfeb08e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Turn a red arch upside down and place it on top of a yellow block"], "init_state_path": ["images/9c/StackGreenCubeOnYellowCubeBakedTexInScene_9c076be8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the top left of the cloth"], "init_state_path": ["images/9c/StackGreenCubeOnYellowCubeBakedTexInScene_9c3a7b8c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the maroon figure from top of yellow block and put it on the top of the table"], "init_state_path": ["images/9c/StackGreenCubeOnYellowCubeBakedTexInScene_9c83939e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the yellow cube in the tower"], "init_state_path": ["images/9c/StackGreenCubeOnYellowCubeBakedTexInScene_9cb4c072.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put bowl behind block"], "init_state_path": ["images/9c/StackGreenCubeOnYellowCubeBakedTexInScene_9cbd6466.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the circular object"], "init_state_path": ["images/9c/StackGreenCubeOnYellowCubeBakedTexInScene_9ce10380.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube with a hole to the left"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9d12a642.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the rectangular block from the right tower to the left"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9d19535c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow cube on top of the red block"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9d28dcc8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put a triangle on the cube"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9d5d638a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the turquoise block off the blue block"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9d808f0e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white block on top of white block"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9da70e68.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick red cube from tower and place it on top of the table"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9dbdafce.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the tower"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9dc2188e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube and put it on the blue block"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9de21120.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block and remove of the yellow rectangular"], "init_state_path": ["images/9d/StackGreenCubeOnYellowCubeBakedTexInScene_9deff7ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube with figure on top of the two other cubes"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9e08dd64.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put rectangle block above blue arch"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9e1f0f6c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove blue block from red hexagon and put on the right, put the cylinder on top of the red hexagon"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9e754ef4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of two cube"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9e7c861a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the cube with a hole"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9e8f796e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the red arch"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9e94f5ba.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remov the red block on to the tower"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9ec01a88.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow block from the tower into the center of the table"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9ecac79e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the cylinder"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9ee012f2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the yellow block"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9ee707d8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put a yellow cube on top of a green arch"], "init_state_path": ["images/9e/StackGreenCubeOnYellowCubeBakedTexInScene_9ef00fae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the green triangle at the top of the cube"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9f003dfc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube on the left side of the table"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9f1f4f3a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block rectangular muticolor of the table"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9f34bcc6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place rectangle block on top of the arch"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9f3b1878.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the cube"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9f6ba6f0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the cylinder"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9fcc046e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["placez le cube jaune le plus haut du tour"], "init_state_path": ["images/9f/StackGreenCubeOnYellowCubeBakedTexInScene_9ff570a6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the green cube from the tower and put it on the right of the table"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a00d1486.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the white block on top of the red hexagon"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a0440950.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the yellow block"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a04b9d3c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the object on top of the green block"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a055f2d2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the top block in from the middle to the top of the right block"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a09f4f90.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the spiral block on top of the green arch"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a0c9efe8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["placed the white block on the star"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a0ce98cc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the yellow rectangle"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a0eac894.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on the top of the other cube"], "init_state_path": ["images/a0/StackGreenCubeOnYellowCubeBakedTexInScene_a0f24560.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block with whole on the pole"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a10c24ee.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the circular block on the cylinder"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a11fd93a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move a blue curl block from a cup to the top a cube"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a1250cca.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block stick on top of the blue block"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a12a89f2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the blue rectangle block from the cylinder and put it in the middle of the table"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a15ee5f8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cylinder off of the circular block and put it on top side of the table"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a163fcb4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the stick inside the hole in the cube"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a17ef4ba.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["position the rectangular blocks on the left side of the table on top of each other"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a1837256.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube onto the top of the yellow cube."], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a19a6f42.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the block off of the red cube and put it on top of the blue triangle"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a1c1b016.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white rectangular block on top of the white rectangular block"], "init_state_path": ["images/a1/StackGreenCubeOnYellowCubeBakedTexInScene_a1ecc102.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick cube from top of rectangle block and it on the table"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2035a16.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put a yellow hexagon on top of a cube"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a208e21a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of the blue rectangular block"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a280ded2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick and put the white cylinder on the top of the yellow cube"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2916856.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on the hole cube"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2a73e6a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the brown cylinder and put it on top of the blue cube"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2b5fe14.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blocks with hole to the top middle of the table"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2cfd168.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on red cube"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2e95a8e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white cube on top of the white rectangle"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2ed31ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the plus on top of the green block"], "init_state_path": ["images/a2/StackGreenCubeOnYellowCubeBakedTexInScene_a2f1de66.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube to the left of the table"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a33342e8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the rectangle block and put it on block on the left"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a358054c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on the left side of the table"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a385e17e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the red cube on the top of the yellow rectangle"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a391dcd6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the rectangular block"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a3965e46.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue cube to the right side of the table"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a3ae1b26.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube towards the right side"], "init_state_path": ["images/a3/StackGreenCubeOnYellowCubeBakedTexInScene_a3b48790.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube in the middle of the table."], "init_state_path": ["images/a4/StackGreenCubeOnYellowCubeBakedTexInScene_a465997c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the wood elongated pyramid on top of the yellow cube"], "init_state_path": ["images/a4/StackGreenCubeOnYellowCubeBakedTexInScene_a4852c1a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put redcube in pan and put pan on stove"], "init_state_path": ["images/a4/StackGreenCubeOnYellowCubeBakedTexInScene_a4a6c06e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue triangle on top of the rectangular block"], "init_state_path": ["images/a4/StackGreenCubeOnYellowCubeBakedTexInScene_a4c3f47c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take a blue cube off the tower and put it to the right of the tower"], "init_state_path": ["images/a4/StackGreenCubeOnYellowCubeBakedTexInScene_a4d75a6c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red arc on top of the blue rectangular block"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a504ea68.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on the top of the cone"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a50e5288.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the red block on the top of the red block and put on the green block"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a51f471e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the red rectangle and put it on top of yellow and green cubes"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a5292b62.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow block to the bottom right of the table"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a5318172.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the green cube"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a535397a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the rectangle"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a54733f0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the grey cube on the orange rectangle."], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a55a21a4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red block to right side of the table"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a56faf56.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of the tower"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a5a6f3c6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cube with a hole off from the thin cylinder and put it on the table"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a5ab00b0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the green arch"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a5ed9e48.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove a block from the rectangular tower and put it on the left"], "init_state_path": ["images/a5/StackGreenCubeOnYellowCubeBakedTexInScene_a5f58cca.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the block on top of the plus"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a62ac00c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the red cube from the tower and put it on the left"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a63f9b44.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["picking the white block puting it on top of the red block"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a64cb7e8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the white block on top of another block"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a658dfdc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow cube from the tower and put in the middle of the table"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a65e778a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the green arch from the tower"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a6863bee.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["cup the red block on top of two the yellow arch"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a6aaf704.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the red cube"], "init_state_path": ["images/a6/StackGreenCubeOnYellowCubeBakedTexInScene_a6b94be2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the red block beside the green block"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a712d72a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube in table"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a72efce8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow block into another surface"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a7339758.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the red cube top of the tray angle"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a770993c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the two rectangular sticks on the two cubes"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a7756e76.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Pick up the blue brush and move it in front of the yellow block"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a786b686.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the rectangle block"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a79b4a6a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the block from the red arch and put it on top of the cube"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a7a0c29c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["removed the block from the blue arch and put it on the green cube"], "init_state_path": ["images/a7/StackGreenCubeOnYellowCubeBakedTexInScene_a7ed270e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube on left of the table"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a807bf56.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red arch on the top of the yellow rectangular block"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a80ff22a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the rectangular block to the left"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a8194de8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the red cube off the tower and place it on the yellow rectangular block"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a82e62b4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on the blue block"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a8466c56.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cylinder off of the rectangular block and put it on top of the other cylinder"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a85776ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the brown cube and put it on top of the green one"], "init_state_path": ["images/a8/StackGreenCubeOnYellowCubeBakedTexInScene_a8980ce6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the other block"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a90fbc1e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the tower with the other blue cube"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a91c3a48.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube to the right"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a953fa32.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the green cube to the right side of the table"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a96c8b88.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the plus on top of the yellow cube"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a97b41e6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the blue cube"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a99413ec.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the onion and put it on top of the blue rectangle block"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a99d62bc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick rectangle block from the table and place it on top of another block"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a9a7f33a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the blue cube on top of the other blue cube."], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a9d3f32c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red rectangular block"], "init_state_path": ["images/a9/StackGreenCubeOnYellowCubeBakedTexInScene_a9f62244.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the top of the red arch"], "init_state_path": ["images/aa/StackGreenCubeOnYellowCubeBakedTexInScene_aa172cf0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move blue block on top of white block"], "init_state_path": ["images/aa/StackGreenCubeOnYellowCubeBakedTexInScene_aa7bd010.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the rectangular block"], "init_state_path": ["images/aa/StackGreenCubeOnYellowCubeBakedTexInScene_aa928e40.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube to the table at the top of the arch cylinder"], "init_state_path": ["images/aa/StackGreenCubeOnYellowCubeBakedTexInScene_aa9fe2d4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow block from the tower and move closest to the right side of the triangle"], "init_state_path": ["images/aa/StackGreenCubeOnYellowCubeBakedTexInScene_aadb56a2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the green cube off of the red cube and put it on the table"], "init_state_path": ["images/ab/StackGreenCubeOnYellowCubeBakedTexInScene_ab5393a6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red cube from the top of the tower to the surface of the table"], "init_state_path": ["images/ab/StackGreenCubeOnYellowCubeBakedTexInScene_ab5bd746.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of blue cube"], "init_state_path": ["images/ab/StackGreenCubeOnYellowCubeBakedTexInScene_ab6e9e1c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block to the other side"], "init_state_path": ["images/ab/StackGreenCubeOnYellowCubeBakedTexInScene_ab81372a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the blue triangle on top of white cube and put it on the table"], "init_state_path": ["images/ab/StackGreenCubeOnYellowCubeBakedTexInScene_abcff8ec.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the stick in a cube with a hole"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac0ee138.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the cube with hole to the top of the cube"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac3b4642.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the green arch"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac6b6250.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the small block at the top of the blue arch"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac773bc0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the rectangluarblock on the top od cylinder"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac87c3b4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the arch on top of the yellow and green cube"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac8bf15a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cone on the cube with a hole"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac996db2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the plus"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_ac9d85b4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the rectangular block and put it on the table"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_aca3aab6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the cylinder from the green cube and put it on top of the red cube"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_acddf306.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Pick up the cube and place it on the right of the red fork"], "init_state_path": ["images/ac/StackGreenCubeOnYellowCubeBakedTexInScene_acfd07e6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow cube on top of the blue rectangle"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_ad28f1e4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the green arch"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_ad344044.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow blocks from tower and put it in the table"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_ad38dbb8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue cube on top of the tower"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_adbd3e3a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the green block from the arch to the surface of yellow block"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_adc29b00.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the cylinder from the blocks and put on the right side"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_ade3677c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the blue arch on top of the red rectangle block"], "init_state_path": ["images/ad/StackGreenCubeOnYellowCubeBakedTexInScene_adf720dc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take a red square block and put it next to the blue square block"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae104daa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the rectangular block on top of two cube and put it on top of rectangular block on the right"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae1bf4e8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green arch on top of the blue block"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae260104.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place red cube on top of another cube"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae53a2bc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the plus block from the top of the left side tower to the top of the right side tower"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae6216f8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the red cube from the tower and put it on the left"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae6a3c52.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the cube off of the rectangular block"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_ae951de6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pickup the cube from on top of the tower and place it on the table"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_aeb61f00.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the rectangular block and put it on top of the other rectangular block"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_aec402c8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the yellow block to put it on top of the tower"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_aee348cc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on the yellow rectangular block"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_aeec98be.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow triangle block on top of the green block"], "init_state_path": ["images/ae/StackGreenCubeOnYellowCubeBakedTexInScene_aef0c362.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Pick up the blue block and place it behind the yellow cloth"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_af1e555c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the cube from the tower and put it in the middle of the table"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_af3a18e6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the 'L' shaped block from table put on the rectagle block"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_af638974.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow rectangular block on top of the red rectangular block"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_af98edc6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the arch."], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_afabd26a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube and put it on the rectangular block"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_afd5f4e6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of two red cubes on right"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_aff08c98.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the cylinder"], "init_state_path": ["images/af/StackGreenCubeOnYellowCubeBakedTexInScene_affc792c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the plus"], "init_state_path": ["images/b0/StackGreenCubeOnYellowCubeBakedTexInScene_b0516388.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on the yellow block"], "init_state_path": ["images/b0/StackGreenCubeOnYellowCubeBakedTexInScene_b060eaf6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on the top of the yellow cube on the right side"], "init_state_path": ["images/b0/StackGreenCubeOnYellowCubeBakedTexInScene_b084f3ce.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the tower"], "init_state_path": ["images/b0/StackGreenCubeOnYellowCubeBakedTexInScene_b0b47608.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put cube on top of cube tower"], "init_state_path": ["images/b0/StackGreenCubeOnYellowCubeBakedTexInScene_b0be239c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the rectangular block on the arch"], "init_state_path": ["images/b0/StackGreenCubeOnYellowCubeBakedTexInScene_b0f18066.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the tower"], "init_state_path": ["images/b1/StackGreenCubeOnYellowCubeBakedTexInScene_b17046b2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick the rectangular cube and put it on the plus and cube"], "init_state_path": ["images/b1/StackGreenCubeOnYellowCubeBakedTexInScene_b1d201ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the arch on top of the rectangular block"], "init_state_path": ["images/b1/StackGreenCubeOnYellowCubeBakedTexInScene_b1d801e4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green triangular block on yellow square block"], "init_state_path": ["images/b1/StackGreenCubeOnYellowCubeBakedTexInScene_b1fcf774.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the block to the right side of the table"], "init_state_path": ["images/b2/StackGreenCubeOnYellowCubeBakedTexInScene_b2085984.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the blue block above the tower"], "init_state_path": ["images/b2/StackGreenCubeOnYellowCubeBakedTexInScene_b21ea8ba.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the wooden block to the top of the yellow block"], "init_state_path": ["images/b2/StackGreenCubeOnYellowCubeBakedTexInScene_b241f2c0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the other red cube"], "init_state_path": ["images/b2/StackGreenCubeOnYellowCubeBakedTexInScene_b2b20592.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the block with a hole from the tower to the left beside the rectangular block with a red mark"], "init_state_path": ["images/b2/StackGreenCubeOnYellowCubeBakedTexInScene_b2f8435e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the yellow rectangular block"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b30c1df2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the green cube"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b31ea8aa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the ring block above the tall thin cylinder"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b331f086.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put redcube in pan and put pan on stove"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b33fa140.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangle block on top of another rectangle block"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b36d002c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cube from the cylinder and put it in the middle of the table"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b38e946c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangle block on top of the written rectangle block"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b39d53e4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow triangle from blue tower to the blue block"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b3c7ed2a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the green block"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b3d2d5dc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the red cube and place it on top of the cylinder"], "init_state_path": ["images/b3/StackGreenCubeOnYellowCubeBakedTexInScene_b3f99780.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the red cube and put it on top of the green arch"], "init_state_path": ["images/b4/StackGreenCubeOnYellowCubeBakedTexInScene_b45f4f80.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block rectangle on top of the other"], "init_state_path": ["images/b4/StackGreenCubeOnYellowCubeBakedTexInScene_b48bdc26.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the yellow block"], "init_state_path": ["images/b4/StackGreenCubeOnYellowCubeBakedTexInScene_b4c1126a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put blue block on green block from right side"], "init_state_path": ["images/b4/StackGreenCubeOnYellowCubeBakedTexInScene_b4e117e0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block with a hole on the middle of the table"], "init_state_path": ["images/b4/StackGreenCubeOnYellowCubeBakedTexInScene_b4f64796.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow block from the red arch and put it on top of the blue block"], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b5266854.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the red block on top of the yellow cube."], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b5540c78.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow cube to the bottom of the table"], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b591f7e0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the tower"], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b5a4e8be.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the blue cube"], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b5bafc62.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the green cube to the left"], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b5c49fc4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the green block"], "init_state_path": ["images/b5/StackGreenCubeOnYellowCubeBakedTexInScene_b5e4d64a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the wood cube on top of the square with hole"], "init_state_path": ["images/b6/StackGreenCubeOnYellowCubeBakedTexInScene_b63523a2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the object green on top the cube"], "init_state_path": ["images/b6/StackGreenCubeOnYellowCubeBakedTexInScene_b653e60c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["placed cube on table"], "init_state_path": ["images/b6/StackGreenCubeOnYellowCubeBakedTexInScene_b65b7610.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the small yellow block on top of the bigger yellow block"], "init_state_path": ["images/b6/StackGreenCubeOnYellowCubeBakedTexInScene_b6ac83ca.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/b6/StackGreenCubeOnYellowCubeBakedTexInScene_b6ca486a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow block from the tower and put it on the right side of the table."], "init_state_path": ["images/b6/StackGreenCubeOnYellowCubeBakedTexInScene_b6fd8c34.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the bottom edge of the cloth"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b706628c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top on the other block"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b70dcb8a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the red block"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b71b96b6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the arch on top of the red and yellow blocks"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b749982c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the yellow block above the green arch and the tower"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b771408e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the blue block off of the rectangular and put on the green block"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b77b432c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cylinder off of the green cube and put it on top of the yellow cube"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b78c53ce.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on the yellow block"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b79ea678.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Place the blue cube on the top left burner."], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b7af0df6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cube with a hole and put it on top of the blue rectangle"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b7c10aec.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on the yellow cube"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b7d979e2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the rectangular block and place it on top of the cube and cylinder"], "init_state_path": ["images/b7/StackGreenCubeOnYellowCubeBakedTexInScene_b7f324b4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the red block from the top of the tower and put it on the yellow tower"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b8026dd4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the arch block on top of the tower"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b81b6bfe.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put cube on plate and smalltomato in pot or pan in sink"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b827a644.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the white cube to the other side of the table"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b85efde2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the green cube and put it next to the yellow cube"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b8bba22c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the cube off of the tower and put it on the left side of the table"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b8c67044.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the green block from top of the blue block and put it on top of yellow rectangular block"], "init_state_path": ["images/b8/StackGreenCubeOnYellowCubeBakedTexInScene_b8d0e358.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the blue cube"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b905c1cc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on the tower"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9145e4e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the red object from the white cube and put it in the upper middle of the table"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9437238.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the white cube and put it on the white block rectangular"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9544b8a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the blue cube from the tower and put it on top of the other blue cube"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b95e02ec.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow cube on the white arc and placed it on the green cube."], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b961ff00.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of the arch"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9bb087a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cylinder off of the rectangular block and put it on top of the other cylinder"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9c16e7c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red rectangular block on the green cube"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9cb7fac.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the red block"], "init_state_path": ["images/b9/StackGreenCubeOnYellowCubeBakedTexInScene_b9edd1c4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put down the red cube to the table between the green arch and blue triangle"], "init_state_path": ["images/ba/StackGreenCubeOnYellowCubeBakedTexInScene_ba6a1b9e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the arch on top of the block"], "init_state_path": ["images/ba/StackGreenCubeOnYellowCubeBakedTexInScene_ba6f8fc0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube to the blue cube in the right"], "init_state_path": ["images/ba/StackGreenCubeOnYellowCubeBakedTexInScene_baaeeea4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue cube from the top of green arch to the top of red cube"], "init_state_path": ["images/ba/StackGreenCubeOnYellowCubeBakedTexInScene_bacbe748.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow rectangular block on top of the tower on the right side of the table"], "init_state_path": ["images/ba/StackGreenCubeOnYellowCubeBakedTexInScene_bade26b0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the tower"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bb0a1310.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["removed rectangular object from the cube"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bb70d50a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take off the red cube put it on the left side of the tower"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bb7aeb80.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the red hexagon on top of the yellow square block"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bb8e3410.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of the pile"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bb9abf0a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the white cube"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bbb06d32.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red arch on top of the blue rectangle block"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bbc07484.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["placed the yellow block to the right side of the table"], "init_state_path": ["images/bb/StackGreenCubeOnYellowCubeBakedTexInScene_bbf1af9a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/bc/StackGreenCubeOnYellowCubeBakedTexInScene_bc34b948.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the red block and put it in the middle of the table"], "init_state_path": ["images/bc/StackGreenCubeOnYellowCubeBakedTexInScene_bc507502.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put redcube in pan and put pan on stove"], "init_state_path": ["images/bc/StackGreenCubeOnYellowCubeBakedTexInScene_bc5c334c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the yellow cube"], "init_state_path": ["images/bc/StackGreenCubeOnYellowCubeBakedTexInScene_bc8b05aa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on top of the red rectangle"], "init_state_path": ["images/bc/StackGreenCubeOnYellowCubeBakedTexInScene_bcadb870.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take and put the red object on top of the cube"], "init_state_path": ["images/bc/StackGreenCubeOnYellowCubeBakedTexInScene_bce81c68.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the yellow cube and put it next to the blocks"], "init_state_path": ["images/bd/StackGreenCubeOnYellowCubeBakedTexInScene_bd1a5368.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the cylinder"], "init_state_path": ["images/bd/StackGreenCubeOnYellowCubeBakedTexInScene_bd5f81ea.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the arch"], "init_state_path": ["images/bd/StackGreenCubeOnYellowCubeBakedTexInScene_bda4af7c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the rectangular block towards the cylinder block"], "init_state_path": ["images/bd/StackGreenCubeOnYellowCubeBakedTexInScene_bdb33b96.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of another rectangular block"], "init_state_path": ["images/bd/StackGreenCubeOnYellowCubeBakedTexInScene_bdfa1f52.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the red arch on the stack and put on the left side of the table"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be176ada.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the green cube on the left side of the table"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be24fef2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the yellow cube off of the red block and put it on the table"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be3572fa.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube to the right side of the table, next to the yellow cube"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be58127e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block with the red marking on top of the rectangular block in the middle of the table"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be8bddde.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["held the long block and put it aside"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be8fe6ea.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the red block from the tower to the top right"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_be9a63cc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on top of the rectangular"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_beb0e41c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the L block on top of the pile"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_beb562f8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove whihe thing and put it in other block"], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_bee160e2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the plus from the top of the tower and put it on top of the cube."], "init_state_path": ["images/be/StackGreenCubeOnYellowCubeBakedTexInScene_bef5eb5c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the blue block off of the red block and place it to the right"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bf0487a2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the yellow cube off of the tower and place it on the right side of the table"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bf495c74.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangle block on top of the arch"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bf54451c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue cube to the left on green cube"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bf761dfe.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on the right side"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bfc22bc2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the yellow cube"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bfc9d372.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["takes the white block and places it on another white block on the table"], "init_state_path": ["images/bf/StackGreenCubeOnYellowCubeBakedTexInScene_bfd4a64e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue cube from the one tower to other tower."], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c015ec4e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the grey cube on top of the rectangular block"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c0472ec6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the cube on the left of table"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c085a002.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow rectangular block on top of the white rectangular block and put it to the left"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c08cffdc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder block on top of the red hexagon block"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c0a522e2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the block with a punch hole from the middle of the table to the top of the block tower"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c0b2bb78.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the rectangular block from the tower and put it on the left side"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c0cca060.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the yellow cube"], "init_state_path": ["images/c0/StackGreenCubeOnYellowCubeBakedTexInScene_c0f6964a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put red block on top of the green cube"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c10d8f94.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Pick up the cube and place it on the right of the red fork"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c120980a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the triangular to right side of the table from the block."], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c12e2a56.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block to the other side of desk"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c1548764.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put redcube in pan and put pan on stove"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c18fbd52.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the white rectangular block"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c1c72846.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of the yellow block"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c1e05384.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the brown object on top of cube on right"], "init_state_path": ["images/c1/StackGreenCubeOnYellowCubeBakedTexInScene_c1fbd8ca.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put redcube in pan and put pan on stove"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2133524.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the cube with a hole from the tower and put it on the rectangular cube"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c23733c0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the cylinder"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c24d5416.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put red cube on other red cubes"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c251e1f2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["fixed the position of the block with a hole"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c257d3be.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put block in pan"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c290b210.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the rectangular block ontop of the blue block"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2a834f8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red arch on the yellow block"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2aca344.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red block on top of the blue block"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2b25f96.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the red cube from the tower and put it on top of the other cube on the table"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2ccbb34.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take green block from blue block"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2e4530c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube with a hole on top of the plus"], "init_state_path": ["images/c2/StackGreenCubeOnYellowCubeBakedTexInScene_c2fa5864.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the blue block"], "init_state_path": ["images/c3/StackGreenCubeOnYellowCubeBakedTexInScene_c308b7e2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put blue block on top of yellow block"], "init_state_path": ["images/c3/StackGreenCubeOnYellowCubeBakedTexInScene_c30c9ea2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the blue block to the middle of the table"], "init_state_path": ["images/c3/StackGreenCubeOnYellowCubeBakedTexInScene_c3241884.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the plus sign on top of green cube"], "init_state_path": ["images/c3/StackGreenCubeOnYellowCubeBakedTexInScene_c32ce68a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the figure from the square block with hole to the table"], "init_state_path": ["images/c3/StackGreenCubeOnYellowCubeBakedTexInScene_c37c5684.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the cylinder off of the rectangular block and put it on top of the other cylinder"], "init_state_path": ["images/c3/StackGreenCubeOnYellowCubeBakedTexInScene_c3cd4120.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block on top of the tower"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c43320b2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the green arch"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c4429498.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the object on top of the yellow block"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c4507018.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block on top of the two cylinders"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c45af5a6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the green cube"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c466b5bc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Put the cup with ball at the top of the rectangular block"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c46daeee.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangular block in he top to bottom right"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c4997f4c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red arch"], "init_state_path": ["images/c4/StackGreenCubeOnYellowCubeBakedTexInScene_c4caebd6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green block on top of rectangular green block"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c50d9878.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the red cube"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c566fc7e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move green block to the right side of table"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c56d3850.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the rod from the cube and put on top of the table"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c5811ea6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Take the red cube off the tower"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c5d9763c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow block on top of the red arch"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c5ddae8c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the yellow cube from the tower and put it in the left side of the table"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c5e47d0c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the quadrilateral object on top of the rectangular block"], "init_state_path": ["images/c5/StackGreenCubeOnYellowCubeBakedTexInScene_c5f65748.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pput the yellow cube on top of the red hexagon"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c608a786.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the red cube to the right"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c60f0b80.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the rectangle on the table on top of the rectangle in the stack"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c62a2a0a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the green cube from the tower and put it on the right"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c65e7f9e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red rectangular block on the top of the green cube"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c67363d2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the stick inside the cube with hole"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c6be8fa6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the circle block down"], "init_state_path": ["images/c6/StackGreenCubeOnYellowCubeBakedTexInScene_c6d8cb96.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red arch on top of the yellow block"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c717df0c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the green cube on top of the tower"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c71f8c52.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cube on the top of the rectangle"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c7384e0e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the cube with hole on top of the yellow cube"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c73e877e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block on top of the cube with a hole"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c7434106.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the objet in the bleu cube"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c7494efc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red cube on the top of the arch."], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c75030f0.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the block from the tower to put it on top of the cylinder"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c75d9a42.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Move the cube from the left of the table to the right, close to the red piece"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c7686b3e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["blue rectangular block placed on green arch"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c7c21d96.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove one maroon chess piece from the block and put on the table"], "init_state_path": ["images/c7/StackGreenCubeOnYellowCubeBakedTexInScene_c7cc31c8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["lift the block from the green arch and put it back"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c8239850.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the Rectangular block and put it on top of the cube"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c82e6906.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["take the blue cube out of the red pot and put it between the two bottom burners"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c83b0896.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the yellow cube on top of the blue block"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c8504896.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangular block on top of the red arch"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c854c0ba.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["rotated the white cube with a hole 45 degrees"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c89225b8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the green block from the blue block and put it in the table"], "init_state_path": ["images/c8/StackGreenCubeOnYellowCubeBakedTexInScene_c8dea942.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue block onto the green napkin"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c91cabe8.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue rectangle on top of the red cube"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c93aebe4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["remove the blue cube to put it on the left side of the table"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c93f9b80.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["align the cubes"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c95413bc.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the red arch on top of the yellow rectangular block"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c9b8db8a.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["place the yellow cube on top of blue block"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c9c5f9d2.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the blue cube on top of the wood cube"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c9cc3284.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the arch on top of green and yellow cubes"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c9deb2a6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["move the green arch into the top of the blue block"], "init_state_path": ["images/c9/StackGreenCubeOnYellowCubeBakedTexInScene_c9fe53f4.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the topmost cube on top of the cube below it"], "init_state_path": ["images/ca/StackGreenCubeOnYellowCubeBakedTexInScene_ca1780ae.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the stick in the cube with a hole"], "init_state_path": ["images/ca/StackGreenCubeOnYellowCubeBakedTexInScene_ca331f4e.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the cylinder on top of the blue cube"], "init_state_path": ["images/ca/StackGreenCubeOnYellowCubeBakedTexInScene_ca37f67c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["put the block down left"], "init_state_path": ["images/ca/StackGreenCubeOnYellowCubeBakedTexInScene_ca503b4c.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["pick yellow cube from the tower and place it on the table"], "init_state_path": ["images/ca/StackGreenCubeOnYellowCubeBakedTexInScene_ca5a81a6.png"]}
{"task_type": ["StackGreenCubeOnYellowCubeBakedTexInScene"], "task_language": ["Remove the blue cube from the red rectangular block and put it on top of the red cube"], "init_state_path": ["images/ca/StackGreenCubeOnYellowCubeBakedTexInScene_ca7e62c4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/09/PutEggplantInBasketScene_09d7b3cc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/0a/PutEggplantInBasketScene_0a7ba72a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/0b/PutEggplantInBasketScene_0b0bd020.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/0c/PutEggplantInBasketScene_0ca3f7b4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/0d/PutEggplantInBasketScene_0d1038fc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/0d/PutEggplantInBasketScene_0de3802c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/0e/PutEggplantInBasketScene_0eb46f0c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/0f/PutEggplantInBasketScene_0f12851a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/0f/PutEggplantInBasketScene_0faf930a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/10/PutEggplantInBasketScene_10c9fb04.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/13/PutEggplantInBasketScene_1377c458.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/15/PutEggplantInBasketScene_15d86fb8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/17/PutEggplantInBasketScene_1731e59c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/19/PutEggplantInBasketScene_19e30384.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/1a/PutEggplantInBasketScene_1a08ef7c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/1b/PutEggplantInBasketScene_1b677820.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["move the eggplant on the silver bowl"], "init_state_path": ["images/1c/PutEggplantInBasketScene_1c0d8346.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/1c/PutEggplantInBasketScene_1cabc83a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/1d/PutEggplantInBasketScene_1d88e77e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/1e/PutEggplantInBasketScene_1e1fee94.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/1f/PutEggplantInBasketScene_1fabc1ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/20/PutEggplantInBasketScene_206a915e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/20/PutEggplantInBasketScene_2074397a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/21/PutEggplantInBasketScene_213f4df4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/22/PutEggplantInBasketScene_223499a8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/22/PutEggplantInBasketScene_22447b52.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/23/PutEggplantInBasketScene_23928bac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/25/PutEggplantInBasketScene_25453666.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/26/PutEggplantInBasketScene_261ddd04.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/27/PutEggplantInBasketScene_270182ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/27/PutEggplantInBasketScene_272a0416.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/27/PutEggplantInBasketScene_2748349a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/29/PutEggplantInBasketScene_295658fc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/29/PutEggplantInBasketScene_29bb5c20.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/2a/PutEggplantInBasketScene_2a47c994.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/2a/PutEggplantInBasketScene_2a7ffd32.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/2e/PutEggplantInBasketScene_2efdfc4c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/2f/PutEggplantInBasketScene_2f435788.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/30/PutEggplantInBasketScene_306f5fd0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/30/PutEggplantInBasketScene_308cd4de.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/31/PutEggplantInBasketScene_31a11aec.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/32/PutEggplantInBasketScene_3282b2ae.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/32/PutEggplantInBasketScene_32d7147a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/33/PutEggplantInBasketScene_3319b596.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/34/PutEggplantInBasketScene_345e65a0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/34/PutEggplantInBasketScene_3489c240.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/34/PutEggplantInBasketScene_34953300.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/34/PutEggplantInBasketScene_349fd670.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/34/PutEggplantInBasketScene_34b31046.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/35/PutEggplantInBasketScene_352b61c2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/36/PutEggplantInBasketScene_367ca4dc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/37/PutEggplantInBasketScene_37af864e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/37/PutEggplantInBasketScene_37db1c6e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/37/PutEggplantInBasketScene_37feb05c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on towel"], "init_state_path": ["images/38/PutEggplantInBasketScene_3893d2fe.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/39/PutEggplantInBasketScene_397674f6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/3a/PutEggplantInBasketScene_3a06065c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/3a/PutEggplantInBasketScene_3a480200.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/3c/PutEggplantInBasketScene_3ccdad54.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/3d/PutEggplantInBasketScene_3d69ce6e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/3e/PutEggplantInBasketScene_3e75cd62.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/3f/PutEggplantInBasketScene_3f43a872.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/41/PutEggplantInBasketScene_41a22922.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/42/PutEggplantInBasketScene_4231c3c0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/42/PutEggplantInBasketScene_42597384.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/43/PutEggplantInBasketScene_436bc2ae.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/44/PutEggplantInBasketScene_4451b656.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/44/PutEggplantInBasketScene_44655ae4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/44/PutEggplantInBasketScene_44ecc7ea.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/45/PutEggplantInBasketScene_4508c2ec.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/45/PutEggplantInBasketScene_45c9deb4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/47/PutEggplantInBasketScene_4794f580.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/47/PutEggplantInBasketScene_47aff8ee.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/48/PutEggplantInBasketScene_489ba280.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/48/PutEggplantInBasketScene_48d41a84.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/48/PutEggplantInBasketScene_48e65f1e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/49/PutEggplantInBasketScene_497bb00a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/49/PutEggplantInBasketScene_49d15abe.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/49/PutEggplantInBasketScene_49feb3b0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant inside the silver pot"], "init_state_path": ["images/4a/PutEggplantInBasketScene_4a324d7e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/4c/PutEggplantInBasketScene_4c4cdc32.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/4c/PutEggplantInBasketScene_4c9296fa.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/4f/PutEggplantInBasketScene_4fa116be.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/4f/PutEggplantInBasketScene_4fd62020.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Put the red eggplant on the blue cloth."], "init_state_path": ["images/50/PutEggplantInBasketScene_502c54c2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/51/PutEggplantInBasketScene_5100c112.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/51/PutEggplantInBasketScene_5110695a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/51/PutEggplantInBasketScene_513383d6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/51/PutEggplantInBasketScene_515838ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/51/PutEggplantInBasketScene_51e96d5e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/53/PutEggplantInBasketScene_53a7ab4c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/55/PutEggplantInBasketScene_557f5104.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/55/PutEggplantInBasketScene_55bfc414.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/56/PutEggplantInBasketScene_56385cee.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/56/PutEggplantInBasketScene_56793458.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/57/PutEggplantInBasketScene_57e12a44.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/58/PutEggplantInBasketScene_58f5e96a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/59/PutEggplantInBasketScene_59b00494.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/59/PutEggplantInBasketScene_59bb7658.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/5b/PutEggplantInBasketScene_5b010d02.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant inside the orange bowl"], "init_state_path": ["images/5b/PutEggplantInBasketScene_5b6821cc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/5c/PutEggplantInBasketScene_5c6805ce.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/5d/PutEggplantInBasketScene_5d6827ba.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/5e/PutEggplantInBasketScene_5efbc820.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/5f/PutEggplantInBasketScene_5f991760.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/5f/PutEggplantInBasketScene_5fe35f14.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/60/PutEggplantInBasketScene_6037199c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/61/PutEggplantInBasketScene_6144a0de.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/61/PutEggplantInBasketScene_616acdc2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/61/PutEggplantInBasketScene_61adf534.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/62/PutEggplantInBasketScene_62c70dac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/63/PutEggplantInBasketScene_63f66182.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/63/PutEggplantInBasketScene_63fec9e4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/65/PutEggplantInBasketScene_65dc64a6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/67/PutEggplantInBasketScene_67f80e66.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/68/PutEggplantInBasketScene_688e4d04.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/68/PutEggplantInBasketScene_68e20e6c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/69/PutEggplantInBasketScene_698578f4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/69/PutEggplantInBasketScene_699c0eca.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/69/PutEggplantInBasketScene_69c9065a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/6a/PutEggplantInBasketScene_6ad669f2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/6b/PutEggplantInBasketScene_6b1d130c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/6b/PutEggplantInBasketScene_6b22a74a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Put the eggplant in the metal pot."], "init_state_path": ["images/6b/PutEggplantInBasketScene_6b512f02.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place the eggplant in the saucepan"], "init_state_path": ["images/6b/PutEggplantInBasketScene_6bb4a956.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant in the drawer"], "init_state_path": ["images/6c/PutEggplantInBasketScene_6c8b2e04.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Pick up the eggplant and put it in the silver bowl."], "init_state_path": ["images/6c/PutEggplantInBasketScene_6c91bc56.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/6d/PutEggplantInBasketScene_6d9ce88c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/6d/PutEggplantInBasketScene_6dc87cc2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/6d/PutEggplantInBasketScene_6dd2ffe4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/6d/PutEggplantInBasketScene_6dec5a16.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/6e/PutEggplantInBasketScene_6ee9aa4a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/70/PutEggplantInBasketScene_705f7d0a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/71/PutEggplantInBasketScene_7129658e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/71/PutEggplantInBasketScene_713f6938.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["take the eggplant and put it inside the drawer"], "init_state_path": ["images/71/PutEggplantInBasketScene_7169354c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/71/PutEggplantInBasketScene_71ac95da.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/71/PutEggplantInBasketScene_71f5d9f2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/75/PutEggplantInBasketScene_75329fd8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/76/PutEggplantInBasketScene_7619dc9a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/76/PutEggplantInBasketScene_7635cca2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/76/PutEggplantInBasketScene_768d35aa.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/77/PutEggplantInBasketScene_778ba22a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/78/PutEggplantInBasketScene_78153486.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/78/PutEggplantInBasketScene_78608b3e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/78/PutEggplantInBasketScene_78cfbed2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/7a/PutEggplantInBasketScene_7a1034a2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/7b/PutEggplantInBasketScene_7b5ab954.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/7b/PutEggplantInBasketScene_7bb8c724.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/7c/PutEggplantInBasketScene_7c9c1420.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/7c/PutEggplantInBasketScene_7ccf8f30.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/7d/PutEggplantInBasketScene_7d7391de.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/7e/PutEggplantInBasketScene_7e106702.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/7e/PutEggplantInBasketScene_7ed2eb2e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/7f/PutEggplantInBasketScene_7f8bb23a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/7f/PutEggplantInBasketScene_7f955f10.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/80/PutEggplantInBasketScene_80360f50.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant in the silver pot"], "init_state_path": ["images/81/PutEggplantInBasketScene_810190bc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/81/PutEggplantInBasketScene_815ca88a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/82/PutEggplantInBasketScene_82fbd33c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/83/PutEggplantInBasketScene_83368040.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/83/PutEggplantInBasketScene_83832cce.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/83/PutEggplantInBasketScene_83fc86aa.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/84/PutEggplantInBasketScene_8477f3ee.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant to the pot"], "init_state_path": ["images/87/PutEggplantInBasketScene_874123ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/88/PutEggplantInBasketScene_88565b2c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/88/PutEggplantInBasketScene_886580de.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place the eggplant on top of the yellow cloth."], "init_state_path": ["images/89/PutEggplantInBasketScene_89115080.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/8a/PutEggplantInBasketScene_8a0ab30a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["place the eggplant on top of the green cloth"], "init_state_path": ["images/8a/PutEggplantInBasketScene_8a2354c8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/8b/PutEggplantInBasketScene_8b293ab8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/8c/PutEggplantInBasketScene_8c6ea5f2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/8d/PutEggplantInBasketScene_8d66e9a6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/8e/PutEggplantInBasketScene_8e18e48a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/8f/PutEggplantInBasketScene_8f1f2bb4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/8f/PutEggplantInBasketScene_8f3c379a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place the eggplant on the green cloth."], "init_state_path": ["images/90/PutEggplantInBasketScene_90014788.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place the red pepper below the purple eggplant."], "init_state_path": ["images/90/PutEggplantInBasketScene_90277246.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/90/PutEggplantInBasketScene_90d7c68c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/91/PutEggplantInBasketScene_913308bc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/91/PutEggplantInBasketScene_91969a76.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/92/PutEggplantInBasketScene_9214dada.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/92/PutEggplantInBasketScene_923b6e0c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/93/PutEggplantInBasketScene_931c8c34.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/93/PutEggplantInBasketScene_9335f098.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Move the eggplant and put it in the bowl."], "init_state_path": ["images/94/PutEggplantInBasketScene_944c4d10.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/95/PutEggplantInBasketScene_95ff2074.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/96/PutEggplantInBasketScene_96a3fe82.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/97/PutEggplantInBasketScene_97e2f820.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/99/PutEggplantInBasketScene_994f4f92.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/9c/PutEggplantInBasketScene_9c0b9222.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place the purple eggplant in the orange container."], "init_state_path": ["images/9c/PutEggplantInBasketScene_9c7ba7a6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place the eggplant inside the orange pot"], "init_state_path": ["images/9c/PutEggplantInBasketScene_9c99e324.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/9d/PutEggplantInBasketScene_9db7af2a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/9e/PutEggplantInBasketScene_9efc0b38.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Pick up the eggplant from pot put it on the table"], "init_state_path": ["images/9f/PutEggplantInBasketScene_9f5277ca.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/a1/PutEggplantInBasketScene_a1d34060.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant on top of the green cloth"], "init_state_path": ["images/a2/PutEggplantInBasketScene_a212764a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/a2/PutEggplantInBasketScene_a284e7a2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a2/PutEggplantInBasketScene_a2aff15e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a3/PutEggplantInBasketScene_a3008dee.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/a3/PutEggplantInBasketScene_a33ecbd6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/a4/PutEggplantInBasketScene_a44a02a2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/a4/PutEggplantInBasketScene_a4b66410.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a5/PutEggplantInBasketScene_a55e7f88.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a5/PutEggplantInBasketScene_a57ee99e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["move the pot put on the eggplant"], "init_state_path": ["images/a5/PutEggplantInBasketScene_a59e1b20.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a5/PutEggplantInBasketScene_a5cb9a78.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a6/PutEggplantInBasketScene_a6235ea2.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/a6/PutEggplantInBasketScene_a66f3750.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/a8/PutEggplantInBasketScene_a8c61a3c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/a9/PutEggplantInBasketScene_a9028698.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a9/PutEggplantInBasketScene_a945d2cc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/a9/PutEggplantInBasketScene_a95e7174.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/aa/PutEggplantInBasketScene_aa771bd8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/ab/PutEggplantInBasketScene_ab9613ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/ac/PutEggplantInBasketScene_ac3490ae.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["Place eggplant on the purple cloth"], "init_state_path": ["images/ad/PutEggplantInBasketScene_ad61cb0e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/ad/PutEggplantInBasketScene_ad679052.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/ad/PutEggplantInBasketScene_adabceac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant inside the drawer"], "init_state_path": ["images/ae/PutEggplantInBasketScene_ae20d1ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/ae/PutEggplantInBasketScene_aef726ee.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/af/PutEggplantInBasketScene_afdbac1a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/b0/PutEggplantInBasketScene_b098578e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/b1/PutEggplantInBasketScene_b10da124.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant inside the silver pot"], "init_state_path": ["images/b2/PutEggplantInBasketScene_b2238f10.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/b2/PutEggplantInBasketScene_b22ea6ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/b2/PutEggplantInBasketScene_b25ed5ac.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/b2/PutEggplantInBasketScene_b263e7ea.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/b2/PutEggplantInBasketScene_b2805448.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/b3/PutEggplantInBasketScene_b31628b0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/b3/PutEggplantInBasketScene_b3e13e56.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/b4/PutEggplantInBasketScene_b467726e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant in the drawer"], "init_state_path": ["images/b4/PutEggplantInBasketScene_b47bc5b6.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/b5/PutEggplantInBasketScene_b535c3a8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/b6/PutEggplantInBasketScene_b6d92ee8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/b7/PutEggplantInBasketScene_b71336c4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/b7/PutEggplantInBasketScene_b7e69f64.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/b8/PutEggplantInBasketScene_b83c116a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/b8/PutEggplantInBasketScene_b8d59e0c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/b8/PutEggplantInBasketScene_b8f16254.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/bc/PutEggplantInBasketScene_bc30a006.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/bc/PutEggplantInBasketScene_bc430d5e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/bc/PutEggplantInBasketScene_bc638ef8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/bc/PutEggplantInBasketScene_bc75183a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/bc/PutEggplantInBasketScene_bccde47e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/bc/PutEggplantInBasketScene_bceccbfa.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/bd/PutEggplantInBasketScene_bd4870cc.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pan"], "init_state_path": ["images/be/PutEggplantInBasketScene_be6ab1a4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/bf/PutEggplantInBasketScene_bf12c81c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/bf/PutEggplantInBasketScene_bf89c886.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/bf/PutEggplantInBasketScene_bfb5619e.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c0/PutEggplantInBasketScene_c0e30d14.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c0/PutEggplantInBasketScene_c0e92e1a.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c2/PutEggplantInBasketScene_c2618dc8.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/c2/PutEggplantInBasketScene_c2a193f0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c3/PutEggplantInBasketScene_c3fb9df4.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant on plate"], "init_state_path": ["images/c4/PutEggplantInBasketScene_c42b1746.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant into pot or pan"], "init_state_path": ["images/c4/PutEggplantInBasketScene_c48330ca.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c4/PutEggplantInBasketScene_c4c48336.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c6/PutEggplantInBasketScene_c648bb96.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c8/PutEggplantInBasketScene_c89ee7d0.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/c9/PutEggplantInBasketScene_c9da0d00.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put eggplant in pot or pan"], "init_state_path": ["images/ca/PutEggplantInBasketScene_ca2e0d4c.png"]}
{"task_type": ["PutEggplantInBasketScene"], "task_language": ["put the eggplant in the drawer"], "init_state_path": ["images/ca/PutEggplantInBasketScene_caa68aba.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0a/PutCarrotOnPlateInScene_0a025e42.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0a/PutCarrotOnPlateInScene_0a066168.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0a/PutCarrotOnPlateInScene_0a17e4e2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0b/PutCarrotOnPlateInScene_0b8f009e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0c/PutCarrotOnPlateInScene_0c0ea272.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0d/PutCarrotOnPlateInScene_0d7683c8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0e/PutCarrotOnPlateInScene_0e24befc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0e/PutCarrotOnPlateInScene_0eedc720.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0f/PutCarrotOnPlateInScene_0f0d1148.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0f/PutCarrotOnPlateInScene_0fe164d4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/0f/PutCarrotOnPlateInScene_0feaaecc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/10/PutCarrotOnPlateInScene_1017162e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/10/PutCarrotOnPlateInScene_10326082.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/10/PutCarrotOnPlateInScene_10377356.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/10/PutCarrotOnPlateInScene_10451740.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/10/PutCarrotOnPlateInScene_107313e8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/11/PutCarrotOnPlateInScene_119e1d12.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/11/PutCarrotOnPlateInScene_11c2411a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/12/PutCarrotOnPlateInScene_1203b280.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/12/PutCarrotOnPlateInScene_12414032.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/12/PutCarrotOnPlateInScene_12d6e380.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/14/PutCarrotOnPlateInScene_1470724c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/14/PutCarrotOnPlateInScene_14960f5c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/14/PutCarrotOnPlateInScene_14f4afe4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/15/PutCarrotOnPlateInScene_1535c934.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/16/PutCarrotOnPlateInScene_160b2106.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/16/PutCarrotOnPlateInScene_16ab5f22.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/16/PutCarrotOnPlateInScene_16dd42ee.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/18/PutCarrotOnPlateInScene_189e0c62.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/19/PutCarrotOnPlateInScene_19d62f06.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1a/PutCarrotOnPlateInScene_1a3f3d2a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1c/PutCarrotOnPlateInScene_1c9ddedc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1d/PutCarrotOnPlateInScene_1d5526fa.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1d/PutCarrotOnPlateInScene_1d844e44.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1d/PutCarrotOnPlateInScene_1d97a14c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1d/PutCarrotOnPlateInScene_1da903f6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1e/PutCarrotOnPlateInScene_1e250c80.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/1e/PutCarrotOnPlateInScene_1e6446fc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/20/PutCarrotOnPlateInScene_20eb3cdc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/20/PutCarrotOnPlateInScene_20f9ff56.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/21/PutCarrotOnPlateInScene_2178414a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/22/PutCarrotOnPlateInScene_229f15b2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/24/PutCarrotOnPlateInScene_2402b486.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/24/PutCarrotOnPlateInScene_24cdd94a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/25/PutCarrotOnPlateInScene_2577f4ac.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/25/PutCarrotOnPlateInScene_2599b8ee.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/25/PutCarrotOnPlateInScene_259e749c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/25/PutCarrotOnPlateInScene_25cbc2c6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/26/PutCarrotOnPlateInScene_2624d1c2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/27/PutCarrotOnPlateInScene_270efc3e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/28/PutCarrotOnPlateInScene_28623470.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/28/PutCarrotOnPlateInScene_28f5c91a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/29/PutCarrotOnPlateInScene_29870ba0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2a/PutCarrotOnPlateInScene_2a84c452.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2a/PutCarrotOnPlateInScene_2af69cd0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2b/PutCarrotOnPlateInScene_2ba7f49e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2b/PutCarrotOnPlateInScene_2bca1740.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2e/PutCarrotOnPlateInScene_2ee52d7a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2f/PutCarrotOnPlateInScene_2f65d2ae.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/2f/PutCarrotOnPlateInScene_2fabf5d6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/30/PutCarrotOnPlateInScene_301148be.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/30/PutCarrotOnPlateInScene_308177b0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/30/PutCarrotOnPlateInScene_30d5bfe6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/31/PutCarrotOnPlateInScene_312a03b2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/31/PutCarrotOnPlateInScene_31c4b768.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/33/PutCarrotOnPlateInScene_337ca3ae.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/33/PutCarrotOnPlateInScene_339eb5e8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/33/PutCarrotOnPlateInScene_33bd3752.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/36/PutCarrotOnPlateInScene_3698b80c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/36/PutCarrotOnPlateInScene_36db0964.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/36/PutCarrotOnPlateInScene_36e569b8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/37/PutCarrotOnPlateInScene_3716413c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/37/PutCarrotOnPlateInScene_37e44aa0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/38/PutCarrotOnPlateInScene_38604506.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/39/PutCarrotOnPlateInScene_3941443e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/39/PutCarrotOnPlateInScene_39a2eaa4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3a/PutCarrotOnPlateInScene_3a9d4a26.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3b/PutCarrotOnPlateInScene_3bd917da.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3c/PutCarrotOnPlateInScene_3c1533f0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3c/PutCarrotOnPlateInScene_3cbef98a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3c/PutCarrotOnPlateInScene_3ce4cca0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3d/PutCarrotOnPlateInScene_3d4c7a58.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3d/PutCarrotOnPlateInScene_3dcb5dc8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3f/PutCarrotOnPlateInScene_3fce3ab4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/3f/PutCarrotOnPlateInScene_3fe7d898.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/41/PutCarrotOnPlateInScene_4192888c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/42/PutCarrotOnPlateInScene_420e6a92.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/43/PutCarrotOnPlateInScene_43835c52.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/44/PutCarrotOnPlateInScene_4431fc1c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/44/PutCarrotOnPlateInScene_44bd5a78.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/45/PutCarrotOnPlateInScene_4541004e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/45/PutCarrotOnPlateInScene_456f3b3a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/45/PutCarrotOnPlateInScene_4573653e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/45/PutCarrotOnPlateInScene_45aef04a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/45/PutCarrotOnPlateInScene_45ec83ce.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/46/PutCarrotOnPlateInScene_46067838.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/46/PutCarrotOnPlateInScene_461e8c7a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/46/PutCarrotOnPlateInScene_463b8b68.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/46/PutCarrotOnPlateInScene_46746ac8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/47/PutCarrotOnPlateInScene_476d1c2c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/48/PutCarrotOnPlateInScene_48fdaeb2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/49/PutCarrotOnPlateInScene_498d6c1e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4a/PutCarrotOnPlateInScene_4a1f9062.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4a/PutCarrotOnPlateInScene_4ada03ca.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4b/PutCarrotOnPlateInScene_4b44550e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4b/PutCarrotOnPlateInScene_4b4ab32c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4b/PutCarrotOnPlateInScene_4b953b7c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4d/PutCarrotOnPlateInScene_4d10a766.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4e/PutCarrotOnPlateInScene_4e8eda04.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/4e/PutCarrotOnPlateInScene_4eb749ee.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/50/PutCarrotOnPlateInScene_50be8f7c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/50/PutCarrotOnPlateInScene_50d7d806.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/51/PutCarrotOnPlateInScene_51165e82.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/51/PutCarrotOnPlateInScene_51f49b5c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/52/PutCarrotOnPlateInScene_52235a0a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/52/PutCarrotOnPlateInScene_5273a4e2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/53/PutCarrotOnPlateInScene_53ac5354.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/53/PutCarrotOnPlateInScene_53c5d496.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/55/PutCarrotOnPlateInScene_55229c34.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/56/PutCarrotOnPlateInScene_56e62a86.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/57/PutCarrotOnPlateInScene_57be7760.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/57/PutCarrotOnPlateInScene_57cc6e92.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/58/PutCarrotOnPlateInScene_587362ce.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/59/PutCarrotOnPlateInScene_59e5c5ca.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/59/PutCarrotOnPlateInScene_59eaa130.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5a/PutCarrotOnPlateInScene_5ae3506e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5b/PutCarrotOnPlateInScene_5b22320c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5d/PutCarrotOnPlateInScene_5d637fe4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5d/PutCarrotOnPlateInScene_5da7d5cc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5f/PutCarrotOnPlateInScene_5f1f0f74.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5f/PutCarrotOnPlateInScene_5f323e64.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/5f/PutCarrotOnPlateInScene_5f7cc95c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/60/PutCarrotOnPlateInScene_600011f4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/60/PutCarrotOnPlateInScene_60f7a252.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/61/PutCarrotOnPlateInScene_6179ae46.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/61/PutCarrotOnPlateInScene_61e4ad5e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/62/PutCarrotOnPlateInScene_62b5824e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/63/PutCarrotOnPlateInScene_63c06faa.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/64/PutCarrotOnPlateInScene_64998a74.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/65/PutCarrotOnPlateInScene_6552cbf6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/65/PutCarrotOnPlateInScene_656d5e8a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/65/PutCarrotOnPlateInScene_6571cbf0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/65/PutCarrotOnPlateInScene_65c34f98.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/66/PutCarrotOnPlateInScene_668122d4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/67/PutCarrotOnPlateInScene_670c86da.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/68/PutCarrotOnPlateInScene_68a2a470.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/68/PutCarrotOnPlateInScene_68fc29dc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/69/PutCarrotOnPlateInScene_693b763c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/69/PutCarrotOnPlateInScene_69e9426c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6b/PutCarrotOnPlateInScene_6b560e96.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6b/PutCarrotOnPlateInScene_6b85d400.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6c/PutCarrotOnPlateInScene_6cc9907c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6d/PutCarrotOnPlateInScene_6d0b6722.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6e/PutCarrotOnPlateInScene_6eb1de8a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6f/PutCarrotOnPlateInScene_6f5ae732.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6f/PutCarrotOnPlateInScene_6f91570e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6f/PutCarrotOnPlateInScene_6fa3b50c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6f/PutCarrotOnPlateInScene_6fda9acc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/6f/PutCarrotOnPlateInScene_6fee23b2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/71/PutCarrotOnPlateInScene_7178ebb8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/72/PutCarrotOnPlateInScene_721a42ce.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/72/PutCarrotOnPlateInScene_7255d47e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/72/PutCarrotOnPlateInScene_729e5b90.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/73/PutCarrotOnPlateInScene_73b871dc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/74/PutCarrotOnPlateInScene_747f5d42.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/74/PutCarrotOnPlateInScene_74b59416.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/74/PutCarrotOnPlateInScene_74ba35a2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/74/PutCarrotOnPlateInScene_74c2e634.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/75/PutCarrotOnPlateInScene_759642ea.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/77/PutCarrotOnPlateInScene_774a79f8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/77/PutCarrotOnPlateInScene_77797000.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/77/PutCarrotOnPlateInScene_77bdd7c2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/77/PutCarrotOnPlateInScene_77ddba1a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/79/PutCarrotOnPlateInScene_79030012.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/79/PutCarrotOnPlateInScene_79da94d2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/79/PutCarrotOnPlateInScene_79f3e09a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7a/PutCarrotOnPlateInScene_7a66201a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7a/PutCarrotOnPlateInScene_7abb98ec.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7c/PutCarrotOnPlateInScene_7ca99e10.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7d/PutCarrotOnPlateInScene_7d2082a0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7d/PutCarrotOnPlateInScene_7d3cf1c4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7e/PutCarrotOnPlateInScene_7e97fdc0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7e/PutCarrotOnPlateInScene_7ebc6de0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7f/PutCarrotOnPlateInScene_7f2a55a8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/7f/PutCarrotOnPlateInScene_7fa37c4e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/80/PutCarrotOnPlateInScene_80003d4e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/80/PutCarrotOnPlateInScene_804a3d18.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/80/PutCarrotOnPlateInScene_808dc164.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/81/PutCarrotOnPlateInScene_818bfcac.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/82/PutCarrotOnPlateInScene_82119362.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/82/PutCarrotOnPlateInScene_826eb16e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/83/PutCarrotOnPlateInScene_8360d548.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/83/PutCarrotOnPlateInScene_83965ea2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/85/PutCarrotOnPlateInScene_85dbe2ea.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/86/PutCarrotOnPlateInScene_867b6da6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/87/PutCarrotOnPlateInScene_879b8c98.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/87/PutCarrotOnPlateInScene_87cf2da0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/88/PutCarrotOnPlateInScene_8801a65e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/88/PutCarrotOnPlateInScene_886d980a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/88/PutCarrotOnPlateInScene_888a6fd4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/88/PutCarrotOnPlateInScene_88bb868c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/89/PutCarrotOnPlateInScene_894c4348.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/89/PutCarrotOnPlateInScene_8984cc7c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/8a/PutCarrotOnPlateInScene_8ab48da8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/8c/PutCarrotOnPlateInScene_8c08b8b4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/8d/PutCarrotOnPlateInScene_8d9eb908.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/8d/PutCarrotOnPlateInScene_8db30a0c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/8f/PutCarrotOnPlateInScene_8f6adfaa.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/8f/PutCarrotOnPlateInScene_8fd1f8b6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/90/PutCarrotOnPlateInScene_90655368.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/91/PutCarrotOnPlateInScene_911cbbca.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/91/PutCarrotOnPlateInScene_9139c940.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/91/PutCarrotOnPlateInScene_91f4bd9a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/92/PutCarrotOnPlateInScene_92a385e6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/93/PutCarrotOnPlateInScene_93eb8ae8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/93/PutCarrotOnPlateInScene_93f6d4e8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/94/PutCarrotOnPlateInScene_9402c352.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/94/PutCarrotOnPlateInScene_9461cf46.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/95/PutCarrotOnPlateInScene_9524d70c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/95/PutCarrotOnPlateInScene_95301ed2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/95/PutCarrotOnPlateInScene_95c7d506.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/95/PutCarrotOnPlateInScene_95d87f64.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/96/PutCarrotOnPlateInScene_96fb45fc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/97/PutCarrotOnPlateInScene_9716874a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/97/PutCarrotOnPlateInScene_973d1914.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/97/PutCarrotOnPlateInScene_977d1dc0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/97/PutCarrotOnPlateInScene_97d97322.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/98/PutCarrotOnPlateInScene_988327b4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/98/PutCarrotOnPlateInScene_98dc299a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/99/PutCarrotOnPlateInScene_9985a47a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/99/PutCarrotOnPlateInScene_99cc3cbe.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9a/PutCarrotOnPlateInScene_9a0a61b0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9a/PutCarrotOnPlateInScene_9ad0f9e2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9b/PutCarrotOnPlateInScene_9b7fc0bc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9b/PutCarrotOnPlateInScene_9bd91bda.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9c/PutCarrotOnPlateInScene_9c0ff0ba.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9c/PutCarrotOnPlateInScene_9c5a6816.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9c/PutCarrotOnPlateInScene_9c9e37da.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9c/PutCarrotOnPlateInScene_9cc7a872.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9d/PutCarrotOnPlateInScene_9d3724fe.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9d/PutCarrotOnPlateInScene_9d778a80.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9d/PutCarrotOnPlateInScene_9dca1ac0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9e/PutCarrotOnPlateInScene_9ecf4e22.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/9f/PutCarrotOnPlateInScene_9fb75afa.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a0/PutCarrotOnPlateInScene_a0154a48.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a0/PutCarrotOnPlateInScene_a0b49b02.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a1/PutCarrotOnPlateInScene_a169e0de.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a2/PutCarrotOnPlateInScene_a260aa68.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a2/PutCarrotOnPlateInScene_a2c9a1e4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a3/PutCarrotOnPlateInScene_a3279a2e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a3/PutCarrotOnPlateInScene_a3a92d00.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a3/PutCarrotOnPlateInScene_a3e6c34a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a4/PutCarrotOnPlateInScene_a46b322e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a5/PutCarrotOnPlateInScene_a5148d38.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a7/PutCarrotOnPlateInScene_a7b56c56.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a7/PutCarrotOnPlateInScene_a7bf4442.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a8/PutCarrotOnPlateInScene_a89f37be.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/a9/PutCarrotOnPlateInScene_a9ee2e18.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/aa/PutCarrotOnPlateInScene_aa04a454.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/aa/PutCarrotOnPlateInScene_aa62bbb6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/aa/PutCarrotOnPlateInScene_aab62486.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ab/PutCarrotOnPlateInScene_ab039590.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ab/PutCarrotOnPlateInScene_ab74de9e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ab/PutCarrotOnPlateInScene_abd97976.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ac/PutCarrotOnPlateInScene_ac00e42a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ad/PutCarrotOnPlateInScene_ad017100.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ad/PutCarrotOnPlateInScene_ad4983b4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b0/PutCarrotOnPlateInScene_b03dd278.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b0/PutCarrotOnPlateInScene_b09d4ffa.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b0/PutCarrotOnPlateInScene_b0ae31da.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b0/PutCarrotOnPlateInScene_b0e017f4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b0/PutCarrotOnPlateInScene_b0f5d6c0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b1/PutCarrotOnPlateInScene_b118c784.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b2/PutCarrotOnPlateInScene_b23b0bae.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b2/PutCarrotOnPlateInScene_b25ada92.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b2/PutCarrotOnPlateInScene_b2e5ec72.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b3/PutCarrotOnPlateInScene_b3497490.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b3/PutCarrotOnPlateInScene_b39349ee.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b3/PutCarrotOnPlateInScene_b3eb1a70.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b4/PutCarrotOnPlateInScene_b408d4a2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b4/PutCarrotOnPlateInScene_b41cd646.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b4/PutCarrotOnPlateInScene_b424e480.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b4/PutCarrotOnPlateInScene_b438fce0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b5/PutCarrotOnPlateInScene_b569ba82.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b5/PutCarrotOnPlateInScene_b5bfd26e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b5/PutCarrotOnPlateInScene_b5f085e4.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b6/PutCarrotOnPlateInScene_b63a179a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b6/PutCarrotOnPlateInScene_b6bd7e64.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b6/PutCarrotOnPlateInScene_b6e5b780.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b7/PutCarrotOnPlateInScene_b70252be.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b8/PutCarrotOnPlateInScene_b8aa021a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b8/PutCarrotOnPlateInScene_b8c1c6ac.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b9/PutCarrotOnPlateInScene_b967bf76.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b9/PutCarrotOnPlateInScene_b9ab89fe.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/b9/PutCarrotOnPlateInScene_b9d71074.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ba/PutCarrotOnPlateInScene_ba85b250.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ba/PutCarrotOnPlateInScene_bac6da28.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ba/PutCarrotOnPlateInScene_baf685fc.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bb/PutCarrotOnPlateInScene_bb2e780e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bb/PutCarrotOnPlateInScene_bba811be.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bc/PutCarrotOnPlateInScene_bc4bda56.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bc/PutCarrotOnPlateInScene_bca3bb9a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bd/PutCarrotOnPlateInScene_bd2a5e52.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/be/PutCarrotOnPlateInScene_be1bb1b2.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/be/PutCarrotOnPlateInScene_be2dd27a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/be/PutCarrotOnPlateInScene_bef0eb70.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bf/PutCarrotOnPlateInScene_bf36d630.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/bf/PutCarrotOnPlateInScene_bff0513c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c0/PutCarrotOnPlateInScene_c0fbc778.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c1/PutCarrotOnPlateInScene_c1278a02.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c1/PutCarrotOnPlateInScene_c1662fa0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c1/PutCarrotOnPlateInScene_c1a0e302.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c1/PutCarrotOnPlateInScene_c1d4818a.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c2/PutCarrotOnPlateInScene_c2df8674.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c3/PutCarrotOnPlateInScene_c302bea0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c3/PutCarrotOnPlateInScene_c350b95c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c3/PutCarrotOnPlateInScene_c3e46eea.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c4/PutCarrotOnPlateInScene_c4936120.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c4/PutCarrotOnPlateInScene_c49d7d90.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c4/PutCarrotOnPlateInScene_c4cfc8ae.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c5/PutCarrotOnPlateInScene_c5856aa6.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c6/PutCarrotOnPlateInScene_c6370590.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c6/PutCarrotOnPlateInScene_c66ca1f0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c6/PutCarrotOnPlateInScene_c6949bb0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c6/PutCarrotOnPlateInScene_c6b0c95c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c7/PutCarrotOnPlateInScene_c7725ce8.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c8/PutCarrotOnPlateInScene_c87de968.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c8/PutCarrotOnPlateInScene_c8f3c19c.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c9/PutCarrotOnPlateInScene_c94508e0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/c9/PutCarrotOnPlateInScene_c99452b0.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ca/PutCarrotOnPlateInScene_ca8fa53e.png"]}
{"task_type": ["PutCarrotOnPlateInScene"], "task_language": ["put carrot on plate"], "init_state_path": ["images/ca/PutCarrotOnPlateInScene_cadd70fc.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Take the red spoon and put it on the yellow cloth."], "init_state_path": ["images/0a/PutSpoonOnTableClothInScene_0a0bf6fa.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the spoon and place it on the blue cloth"], "init_state_path": ["images/0a/PutSpoonOnTableClothInScene_0a4736d4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["pick the red spoon and put it on the blue cloth"], "init_state_path": ["images/0b/PutSpoonOnTableClothInScene_0b12e540.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the green spoon on top of the blue cloth"], "init_state_path": ["images/0c/PutSpoonOnTableClothInScene_0ce6ae4c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move the spoon to set partially on top of the cloth."], "init_state_path": ["images/10/PutSpoonOnTableClothInScene_10bb7660.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and place it on the green cloth"], "init_state_path": ["images/12/PutSpoonOnTableClothInScene_12e08692.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the spoon to the cloth"], "init_state_path": ["images/15/PutSpoonOnTableClothInScene_15565c76.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["place the blue spoon on top of the orange cloth"], "init_state_path": ["images/18/PutSpoonOnTableClothInScene_184587c2.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place red spoon on the green cloth"], "init_state_path": ["images/18/PutSpoonOnTableClothInScene_1856ba4c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Set the spoon onto the orange cloth."], "init_state_path": ["images/1a/PutSpoonOnTableClothInScene_1a703786.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move the red spoon over the blue cloth."], "init_state_path": ["images/1f/PutSpoonOnTableClothInScene_1f64f344.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move the spoon to top of the yellow cloth."], "init_state_path": ["images/24/PutSpoonOnTableClothInScene_2451f6fe.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move the spoon above the cloth."], "init_state_path": ["images/25/PutSpoonOnTableClothInScene_2552371c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put blue spoon on the orange cloth"], "init_state_path": ["images/25/PutSpoonOnTableClothInScene_25dc236e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the cloth."], "init_state_path": ["images/27/PutSpoonOnTableClothInScene_27a0982e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the red spoon on the cloth."], "init_state_path": ["images/27/PutSpoonOnTableClothInScene_27e28108.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on top of the blue cloth."], "init_state_path": ["images/28/PutSpoonOnTableClothInScene_286d5580.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["picked a blue spoon and placed it on top of an orange cloth"], "init_state_path": ["images/29/PutSpoonOnTableClothInScene_2947708a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on the red cloth"], "init_state_path": ["images/2b/PutSpoonOnTableClothInScene_2b9a3cfa.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on top of the cloth"], "init_state_path": ["images/2c/PutSpoonOnTableClothInScene_2cb403be.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and place it on the green cloth"], "init_state_path": ["images/2d/PutSpoonOnTableClothInScene_2dfb5f74.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["moved the red spoon above the black cloth"], "init_state_path": ["images/30/PutSpoonOnTableClothInScene_30f0ade2.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on top of the green cloth."], "init_state_path": ["images/31/PutSpoonOnTableClothInScene_3103f37a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on top of the blue cloth."], "init_state_path": ["images/32/PutSpoonOnTableClothInScene_32282ab4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon above the violet cloth"], "init_state_path": ["images/32/PutSpoonOnTableClothInScene_326a786a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the top of the blue cloth."], "init_state_path": ["images/32/PutSpoonOnTableClothInScene_32b9dd4c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["take blue spoon and put it on top of the blue cloth"], "init_state_path": ["images/35/PutSpoonOnTableClothInScene_352532fc.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on the orange cloth"], "init_state_path": ["images/39/PutSpoonOnTableClothInScene_39ba766a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["picked a red spoon and placed it on top of an orange cloth"], "init_state_path": ["images/3d/PutSpoonOnTableClothInScene_3d35373a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["pick green spoon and drop it on the green cloth"], "init_state_path": ["images/3e/PutSpoonOnTableClothInScene_3e09d9fe.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the green spoon onto the blue piece of cloth."], "init_state_path": ["images/3e/PutSpoonOnTableClothInScene_3e26fcfa.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the blue spoon on the yellow cloth"], "init_state_path": ["images/3f/PutSpoonOnTableClothInScene_3f889f22.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["keep yellow spoon on the blue cloth"], "init_state_path": ["images/3f/PutSpoonOnTableClothInScene_3ff30d30.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the red spoon on the green cloth in the table."], "init_state_path": ["images/42/PutSpoonOnTableClothInScene_4238402e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["move the blue spoon on top of the orange cloth"], "init_state_path": ["images/42/PutSpoonOnTableClothInScene_42ce3dae.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the cloth."], "init_state_path": ["images/47/PutSpoonOnTableClothInScene_47c4c13e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on the cloth."], "init_state_path": ["images/49/PutSpoonOnTableClothInScene_49636f04.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["place the blue spoon on the blue cloth"], "init_state_path": ["images/4b/PutSpoonOnTableClothInScene_4b537034.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the red spoon and place it on the purple cloth"], "init_state_path": ["images/4b/PutSpoonOnTableClothInScene_4b7a6cc0.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on the orange cloth"], "init_state_path": ["images/50/PutSpoonOnTableClothInScene_50b82038.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["pick the red spoon and put it on violate kitchen cloth"], "init_state_path": ["images/52/PutSpoonOnTableClothInScene_52f7eaf4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["place green spoon on the yellow cloth"], "init_state_path": ["images/54/PutSpoonOnTableClothInScene_5423eeb4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the blue spoon onto the green cloth."], "init_state_path": ["images/55/PutSpoonOnTableClothInScene_5550d252.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["keep blue spoon on the yellow cloth"], "init_state_path": ["images/56/PutSpoonOnTableClothInScene_56026418.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put blue spoon on top of green cloth"], "init_state_path": ["images/59/PutSpoonOnTableClothInScene_593ff08c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the blue spoon onto the yellow cloth"], "init_state_path": ["images/5a/PutSpoonOnTableClothInScene_5a3c28ca.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the orange cloth."], "init_state_path": ["images/5c/PutSpoonOnTableClothInScene_5c780348.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the blue spoon on the orange cloth"], "init_state_path": ["images/5d/PutSpoonOnTableClothInScene_5d309a2a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on the green cloth."], "init_state_path": ["images/5f/PutSpoonOnTableClothInScene_5f95021a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on the top of the green cloth"], "init_state_path": ["images/63/PutSpoonOnTableClothInScene_63987964.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the spoon in the blue cloth"], "init_state_path": ["images/67/PutSpoonOnTableClothInScene_67277b02.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the cloth."], "init_state_path": ["images/6e/PutSpoonOnTableClothInScene_6e0e7bd2.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon above the blue cloth in the table."], "init_state_path": ["images/6e/PutSpoonOnTableClothInScene_6e147dd4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on the green cloth."], "init_state_path": ["images/6e/PutSpoonOnTableClothInScene_6e475b78.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the red spoon on the purple cloth"], "init_state_path": ["images/78/PutSpoonOnTableClothInScene_78b9f3ea.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and placed it on blue cloth"], "init_state_path": ["images/79/PutSpoonOnTableClothInScene_79113042.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the blue spoon on the orange cloth."], "init_state_path": ["images/7b/PutSpoonOnTableClothInScene_7b48e85a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["move the blue spoon on top of the orange cloth"], "init_state_path": ["images/7c/PutSpoonOnTableClothInScene_7c1fddc4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the blue spoon on the orange cloth"], "init_state_path": ["images/7d/PutSpoonOnTableClothInScene_7d31da78.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on the cloth."], "init_state_path": ["images/7e/PutSpoonOnTableClothInScene_7eeeee3c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["moved spoon on top of the cloth"], "init_state_path": ["images/80/PutSpoonOnTableClothInScene_809a781e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on top of the orange cloth"], "init_state_path": ["images/82/PutSpoonOnTableClothInScene_820304f0.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put spoon on top of the cloth"], "init_state_path": ["images/82/PutSpoonOnTableClothInScene_823980de.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place blue spoon on the blue cloth"], "init_state_path": ["images/82/PutSpoonOnTableClothInScene_82466376.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and put it on above the green cloth"], "init_state_path": ["images/82/PutSpoonOnTableClothInScene_824c6ff0.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the ladle spoon on top of the yellow cloth"], "init_state_path": ["images/82/PutSpoonOnTableClothInScene_82602fea.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the blue cloth."], "init_state_path": ["images/83/PutSpoonOnTableClothInScene_83925622.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and place it on the yellow cloth"], "init_state_path": ["images/86/PutSpoonOnTableClothInScene_8665043a.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue spoon on the cloth"], "init_state_path": ["images/88/PutSpoonOnTableClothInScene_8824431c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put red spoon on the green cloth"], "init_state_path": ["images/89/PutSpoonOnTableClothInScene_893613fc.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["take the yellow spoon and place it on top of the cloth"], "init_state_path": ["images/89/PutSpoonOnTableClothInScene_89da2456.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["pick red spoon and place it on the yellow cloth"], "init_state_path": ["images/89/PutSpoonOnTableClothInScene_89e993f0.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the blue and grey spoon on the yelllow cloth"], "init_state_path": ["images/8a/PutSpoonOnTableClothInScene_8a16bf92.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the red spoon on the green cloth."], "init_state_path": ["images/8a/PutSpoonOnTableClothInScene_8a88d2a8.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the red spoon on top of the blue cloth"], "init_state_path": ["images/96/PutSpoonOnTableClothInScene_964d2bd4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["place blue spoon on the orange cloth"], "init_state_path": ["images/96/PutSpoonOnTableClothInScene_965c6cfc.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on the blue cloth"], "init_state_path": ["images/96/PutSpoonOnTableClothInScene_96710cde.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the spoon on the blue cloth"], "init_state_path": ["images/97/PutSpoonOnTableClothInScene_97289016.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the yellow spoon and move it onto the blue cloth."], "init_state_path": ["images/9d/PutSpoonOnTableClothInScene_9dfe9b56.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["move the spoon on top of the blue cloth"], "init_state_path": ["images/a0/PutSpoonOnTableClothInScene_a05de2e4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move blue spoon and place onto cloth"], "init_state_path": ["images/a2/PutSpoonOnTableClothInScene_a2223846.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the orange cloth"], "init_state_path": ["images/a4/PutSpoonOnTableClothInScene_a41c4f10.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on top of the orange cloth."], "init_state_path": ["images/ad/PutSpoonOnTableClothInScene_adc958e6.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move the spoon to be partially on top of the cloth."], "init_state_path": ["images/ae/PutSpoonOnTableClothInScene_aefd508c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on top of the blue cloth"], "init_state_path": ["images/b1/PutSpoonOnTableClothInScene_b1ce3fe2.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the red spoon on the yellow cloth"], "init_state_path": ["images/b4/PutSpoonOnTableClothInScene_b470288c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the spoon and place it on the blue cloth"], "init_state_path": ["images/b5/PutSpoonOnTableClothInScene_b59ba0b0.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and place it on the orange cloth"], "init_state_path": ["images/b6/PutSpoonOnTableClothInScene_b69b1630.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and place it on the blue cloth"], "init_state_path": ["images/b6/PutSpoonOnTableClothInScene_b6b39610.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the yellow spoon on the blue cloth."], "init_state_path": ["images/b6/PutSpoonOnTableClothInScene_b6d50d0e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the blue spoon onto the yellow cloth"], "init_state_path": ["images/b8/PutSpoonOnTableClothInScene_b88d04d0.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["place the spoon on the cloth"], "init_state_path": ["images/bb/PutSpoonOnTableClothInScene_bba106a8.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put red spoon on top of blue cloth"], "init_state_path": ["images/bb/PutSpoonOnTableClothInScene_bbce4e9c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the spoon on the purple cloth"], "init_state_path": ["images/bc/PutSpoonOnTableClothInScene_bc21478c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Put the blue spoon into the green cloth"], "init_state_path": ["images/be/PutSpoonOnTableClothInScene_be87cb7c.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Pick up the blue spoon and place it on the yellow cloth"], "init_state_path": ["images/bf/PutSpoonOnTableClothInScene_bffc0dc4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Move the spoon with the robot and palce it on the blue cloth."], "init_state_path": ["images/c0/PutSpoonOnTableClothInScene_c00502e4.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["PLACE THE SPOON ON THE BLUE CLOTH"], "init_state_path": ["images/c1/PutSpoonOnTableClothInScene_c1a58c90.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["place green spoon on the yellow cloth"], "init_state_path": ["images/c3/PutSpoonOnTableClothInScene_c34b50ca.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["Place the spoon on the orange cloth."], "init_state_path": ["images/c3/PutSpoonOnTableClothInScene_c3ec0c0e.png"]}
{"task_type": ["PutSpoonOnTableClothInScene"], "task_language": ["put the plastic spoon on the yellow cloth"], "init_state_path": ["images/ca/PutSpoonOnTableClothInScene_ca9fb294.png"]}
|