-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathport_8130.txt
1376 lines (1373 loc) · 660 KB
/
port_8130.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8"
"memorysetup-bucket-allocator-block-size=4194304"
"memorysetup-bucket-allocator-block-count=1"
"memorysetup-main-allocator-block-size=16777216"
"memorysetup-thread-allocator-block-size=16777216"
"memorysetup-gfx-main-allocator-block-size=16777216"
"memorysetup-gfx-thread-allocator-block-size=16777216"
"memorysetup-cache-allocator-block-size=4194304"
"memorysetup-typetree-allocator-block-size=2097152"
"memorysetup-profiler-bucket-allocator-granularity=16"
"memorysetup-profiler-bucket-allocator-bucket-count=8"
"memorysetup-profiler-bucket-allocator-block-size=4194304"
"memorysetup-profiler-bucket-allocator-block-count=1"
"memorysetup-profiler-allocator-block-size=16777216"
"memorysetup-profiler-editor-allocator-block-size=1048576"
"memorysetup-temp-allocator-size-main=4194304"
"memorysetup-job-temp-allocator-block-size=2097152"
"memorysetup-job-temp-allocator-block-size-background=1048576"
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
"memorysetup-temp-allocator-size-background-worker=32768"
"memorysetup-temp-allocator-size-job-worker=262144"
"memorysetup-temp-allocator-size-preload-manager=262144"
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
"memorysetup-temp-allocator-size-audio-worker=65536"
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gfx=262144"
Mono path[0] = '/data/vision/torralba/frames/data_acquisition/SyntheticStories/website/release/simulator/v2.0/online_wah/online_wah_exec_2/linux_exec.online_wah_2_Data/Managed'
Mono config path = '/data/vision/torralba/frames/data_acquisition/SyntheticStories/website/release/simulator/v2.0/online_wah/online_wah_exec_2/linux_exec.online_wah_2_Data/MonoBleedingEdge/etc'
Can't get home directory!
Unable to load player prefs
Can't get home directory!
Unable to synchronize player prefs
Initialize engine version: 2021.2.14f1 (bcb93e5482d2)
[Subsystems] Discovering subsystems at path /data/vision/torralba/frames/data_acquisition/SyntheticStories/website/release/simulator/v2.0/online_wah/online_wah_exec_2/linux_exec.online_wah_2_Data/UnitySubsystems
Forcing GfxDevice: Null
GfxDevice: creating device client; threaded=0; jobified=0
NullGfxDevice:
Version: NULL 1.0 [1.0]
Renderer: Null Device
Vendor: Unity Technologies
FMOD failed to initialize the output device.: "Error initializing output device. " (60)
Forced to initialize FMOD to to the device driver's system output rate 48000, this may impact performance and/or give inconsistent experiences compared to selected sample rate 48000
FMOD failed to initialize the output device.: "Error initializing output device. " (60)
FMOD initialized on nosound output
Begin MonoManager ReloadAssembly
- Completed reload, in 0.225 seconds
ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Standard' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Standard' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Transparent/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Transparent/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Transparent/Specular shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Transparent/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Diffuse shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Specular shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Standard (Specular setup) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
UnloadTime: 1.626417 ms
Can't get home directory!
Unable to synchronize player prefs
ERROR: Shader Legacy Shaders/Particles/Additive (Soft) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Unlit/Texture shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
This custom render path shader needs to have at least 1 passes.
Could not find material Hidden/VideoDecode. Make sure the Video shaders are included in your build, in the Built-in Shader Settings section of the Graphics Settings.
Could not find video decode shader pass YCbCr_To_RGB1 in shader <not found>
Could not find video decode shader pass YCbCrA_To_RGBAFull in shader <not found>
Could not find video decode shader pass YCbCrA_To_RGBA in shader <not found>
Could not find video decode shader pass Flip_RGBA_To_RGBA in shader <not found>
Could not find video decode shader pass Flip_RGBASplit_To_RGBA in shader <not found>
This custom render path shader needs to have at least 1 passes.
Could not find material Hidden/VideoComposite. Make sure the Video shaders are included in your build, in the Built-in Shader Settings section of the Graphics Settings.
Could not find video decode shader pass Default in shader <not found>
HEre
HEre
HEre
HEre
Waiting for request
Received request: {"id": "1652819757.6788743", "action": "idle"}
Processing
Waiting for request
Received request: {"id": "1652819779.0029304", "action": "reset", "intParams": [6]}
Processing
WARNING: Shader Unsupported: 'Legacy Shaders/Reflective/VertexLit' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Reflective/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Reflective/VertexLit' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Reflective/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Reflective/Specular shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Reflective/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Bumped Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Bumped Specular shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Bumped Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Bumped Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Bumped Diffuse shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Bumped Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Reflective/Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Reflective/Diffuse shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Reflective/Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
UnloadTime: 28.796097 ms
Unloading 1404 unused Assets to reduce memory usage. Loaded Objects now: 8435.
Total: 9.575612 ms (FindLiveObjects: 1.121748 ms CreateObjectMapping: 0.327735 ms MarkObjects: 5.545447 ms DeleteObjects: 2.576504 ms)
ERROR: Shader Legacy Shaders/Particles/Additive (Soft) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Unlit/Texture shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
HEre
HEre
HEre
HEre
Waiting for request
Processing
Here
Waiting for request
Received request: {"id": "1652819779.6803002", "action": "expand_scene", "stringParams": ["{\"randomize\": false, \"random_seed\": -1, \"animate_character\": false, \"ignore_obstacles\": false, \"transfer_transform\": true}", "{\"nodes\": [{\"id\": 11, \"category\": \"Rooms\", \"class_name\": \"bathroom\", \"prefab_name\": \"PRE_ROO_Bathroom_05\", \"obj_transform\": {\"position\": [-3.784, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.534, 1.25, 8.75], \"size\": [5.5, 3.0, 5.5]}, \"properties\": [], \"states\": []}, {\"id\": 12, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Doorway_corner_01_02_03\", \"obj_transform\": {\"position\": [-3.78400016, 0.0, 6.25], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.78399968, 1.2500093, 7.49998665], \"size\": [2.50000072, 2.50002766, 2.5000453]}, \"properties\": [], \"states\": []}, {\"id\": 13, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_02_03\", \"obj_transform\": {\"position\": [-3.78399968, 0.0, 11.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.783998, 1.25, 10.0], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 14, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_02_03\", \"obj_transform\": {\"position\": [-0.03399992, 0.0, 10.0], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.28399992, 1.25, 9.999998], \"size\": [2.500005, 2.500009, 2.50000453]}, \"properties\": [], \"states\": []}, {\"id\": 15, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_02_03\", \"obj_transform\": {\"position\": [-1.2840004, 0.0, 6.25], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.284003, 1.25, 7.500001], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 16, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [-3.784, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.784009, 2.50000024, 10.0], \"size\": [2.50000024, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 17, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [-3.78400016, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.784009, 2.50000024, 7.5], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 18, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [-1.2840004, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.28400934, 2.50000024, 7.5], \"size\": [2.50000024, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 19, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [-1.28400016, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.284009, 2.50000024, 10.0], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 20, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [-3.784, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.784, 0.0, 10.0], \"size\": [2.50000024, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 21, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [-3.78400016, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.784, 0.0, 7.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 22, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [-1.2840004, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.28400028, 0.0, 7.5], \"size\": [2.50000024, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 23, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [-1.28400016, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.28399992, 0.0, 10.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 24, \"category\": \"Furniture\", \"class_name\": \"toilet\", \"prefab_name\": \"PRE_FUR_Toilet_02\", \"obj_transform\": {\"position\": [-1.07600045, -0.15, 6.41], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.9747165, 0.214479119, 6.80816], \"size\": [0.7693824, 0.542430043, 0.7984217]}, \"properties\": [\"SITTABLE\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 25, \"category\": \"Furniture\", \"class_name\": \"bathroomcabinet\", \"prefab_name\": \"PRE_FUR_Bathroom_cabinet_02_03_w_lamps\", \"obj_transform\": {\"position\": [-0.146000147, 0.176, 9.33], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.151921883, 1.99097192, 9.330007], \"size\": [0.1359481, 0.757355332, 2.8516078]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 26, \"category\": \"Furniture\", \"class_name\": \"bathroomcounter\", \"prefab_name\": \"PRE_FUR_Bathroom_counter_03\", \"obj_transform\": {\"position\": [-0.421000242, 0.135, 9.379999], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.416001081, 0.905, 9.379999], \"size\": [0.652000368, 0.39, 2.862]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 27, \"category\": \"Furniture\", \"class_name\": \"sink\", \"prefab_name\": \"Sink\", \"obj_transform\": {\"position\": [-0.421000242, 1.035, 9.379999], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [0.0377199836, 0.01, 0.06723997]}, \"bounding_box\": {\"center\": [-0.421001673, 1.035, 9.379999], \"size\": [0.377199978, 2.220446e-18, 0.6723998]}, \"properties\": [\"RECIPIENT\", \"CONTAINERS\"], \"states\": []}, {\"id\": 28, \"category\": \"Furniture\", \"class_name\": \"faucet\", \"prefab_name\": \"Faucet\", \"obj_transform\": {\"position\": [-0.161000252, 1.145, 9.349999], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.161001921, 1.145, 9.349999], \"size\": [0.100000024, 0.0999999046, 0.100000381]}, \"properties\": [\"HAS_SWITCH\"], \"states\": [\"OFF\"]}, {\"id\": 29, \"category\": \"Furniture\", \"class_name\": \"stall\", \"prefab_name\": \"PRE_FUR_Shower_stall_05_03\", \"obj_transform\": {\"position\": [-4.2239995, 0.001, 10.68], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.224011, 1.25068724, 10.51349], \"size\": [1.56272185, 2.50064278, 1.56474018]}, \"properties\": [], \"states\": []}, {\"id\": 30, \"category\": \"Furniture\", \"class_name\": \"curtains\", \"prefab_name\": \"MOD_FUR_Shower_stall_01_Curtain_01\", \"obj_transform\": {\"position\": [-4.224, 0.001, 9.889], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.71792912, 1.24817312, 9.786], \"size\": [0.3018598, 2.29940414, 0.05150947]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 31, \"category\": \"Furniture\", \"class_name\": \"towelrack\", \"prefab_name\": \"PRE_FUR_Towel_rack_02_02\", \"obj_transform\": {\"position\": [-1.783, 0.542, 11.193], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 2.0]}, \"bounding_box\": {\"center\": [-1.78300452, 1.792, 11.1497688], \"size\": [0.9922993, 0.0247555971, 0.08646033]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 32, \"category\": \"Props\", \"class_name\": \"toothbrush\", \"prefab_name\": \"PRE_PRO_Toothbrush_01\", \"obj_transform\": {\"position\": [-0.6220002, 1.24, 9.712], \"rotation\": [-0.223769262, 0.777987361, 0.5642059, 0.162279785], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.616559863, 1.23783183, 9.703582], \"size\": [0.025937466, 0.23750557, 0.101253353]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 34, \"category\": \"Props\", \"class_name\": \"barsoap\", \"prefab_name\": \"PRE_PRO_Hand_soap_01\", \"obj_transform\": {\"position\": [-0.340000153, 1.115, 8.971999], \"rotation\": [0.0, 0.46845454, 0.0, 0.8834877], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.3400011, 1.13669693, 8.971999], \"size\": [0.150434583, 0.0433942862, 0.136254564]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 35, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [-0.5749998, 1.116, 10.756], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.57500124, 1.18920386, 10.7559986], \"size\": [0.04111537, 0.1464077, 0.04111485]}, \"properties\": [], \"states\": []}, {\"id\": 36, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [-0.3599999, 1.114, 10.513], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.3600009, 1.12976372, 10.513], \"size\": [0.06455387, 0.03152771, 0.0645537749]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 37, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Conditioner_01\", \"obj_transform\": {\"position\": [-0.383000135, 1.118, 8.389999], \"rotation\": [0.0, 0.794362247, 0.0, 0.607444346], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.3830013, 1.20851779, 8.389999], \"size\": [0.0907172561, 0.181035683, 0.09071696]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 38, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Shampoo_01\", \"obj_transform\": {\"position\": [-0.244999886, 1.1193, 9.809], \"rotation\": [0.0, 0.8526156, 0.0, 0.5225386], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.245000556, 1.20981777, 9.809], \"size\": [0.09943132, 0.181035683, 0.09943113]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 39, \"category\": \"Props\", \"class_name\": \"toothpaste\", \"prefab_name\": \"SHP_PRE_Toothpaste\", \"obj_transform\": {\"position\": [-0.182899952, 1.667, 9.6528], \"rotation\": [0.0, 0.822284341, 0.0, 0.5690769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.195313677, 1.683778, 9.657473], \"size\": [0.185952365, 0.0335556157, 0.108884752]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\", \"CREAM\"], \"states\": [\"CLOSED\"]}, {\"id\": 40, \"category\": \"Props\", \"class_name\": \"toiletpaper\", \"prefab_name\": \"MOD_PRO_Toilet_paper_01\", \"obj_transform\": {\"position\": [-0.085000515, 0.973, 7.24399948], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.163328841, 0.9356487, 7.220678], \"size\": [0.1566548, 0.178975016, 0.2160594]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CUTTABLE\", \"COVER_OBJECT\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 41, \"category\": \"Props\", \"class_name\": \"towel\", \"prefab_name\": \"PRE_PRO_Towel_02\", \"obj_transform\": {\"position\": [-0.1420002, 1.656, 9.183999], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.142001271, 1.70007265, 9.183999], \"size\": [0.125627041, 0.08814656, 0.383101046]}, \"properties\": [\"GRABBABLE\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": []}, {\"id\": 42, \"category\": \"Props\", \"class_name\": \"towel\", \"prefab_name\": \"PRE_PRO_Towel_02\", \"obj_transform\": {\"position\": [-0.519000053, 1.111512, 8.631], \"rotation\": [0.0, 0.418699443, 0.0, 0.9081249], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.519001067, 1.15558457, 8.631], \"size\": [0.372913867, 0.08814656, 0.344313443]}, \"properties\": [\"GRABBABLE\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": []}, {\"id\": 43, \"category\": \"Props\", \"class_name\": \"towel\", \"prefab_name\": \"PRE_PRO_Towel_02\", \"obj_transform\": {\"position\": [-0.465000153, 1.106, 8.07], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.465001285, 1.15007257, 8.07], \"size\": [0.383101046, 0.08814656, 0.125627071]}, \"properties\": [\"GRABBABLE\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": []}, {\"id\": 44, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [-0.206000328, 1.111373, 10.248], \"rotation\": [0.0, 0.998595, 0.0, 0.0529904068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.207693964, 1.21763623, 10.24782], \"size\": [0.09338096, 0.212527975, 0.164486408]}, \"properties\": [], \"states\": []}, {\"id\": 45, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Conditioner_01\", \"obj_transform\": {\"position\": [-4.79099941, 0.0, 11.137], \"rotation\": [0.0, 0.302785754, 0.0, 0.95305866], \"scale\": [1.5, 2.0, 1.5]}, \"bounding_box\": {\"center\": [-4.79099941, 0.181035444, 11.1369991], \"size\": [0.154561758, 0.362071365, 0.154561922]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 46, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Shampoo_01\", \"obj_transform\": {\"position\": [-4.7859993, 0.0, 10.711], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.5, 2.0, 1.5]}, \"bounding_box\": {\"center\": [-4.7859993, 0.181035444, 10.711], \"size\": [0.110893145, 0.362071365, 0.110893779]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 47, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_02_13\", \"obj_transform\": {\"position\": [-3.978, 0.01, 8.963], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [0.411783457, 0.5109647, 0.38076508]}, \"bounding_box\": {\"center\": [-3.978, 0.01799316, 8.962999], \"size\": [2.021541, 0.0159931481, 1.43471622]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 48, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_05\", \"obj_transform\": {\"position\": [-4.97699976, 1.466, 8.548], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.95613956, 1.46600008, 8.547998], \"size\": [0.041721344, 1.25704384, 0.955631256]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 49, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_01_02\", \"obj_transform\": {\"position\": [-2.567, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.56700039, 2.24272943, 8.75], \"size\": [0.326046467, 0.515477061, 0.301177979]}, \"properties\": [], \"states\": []}, {\"id\": 50, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [-3.34200025, 2.034, 6.302], \"rotation\": [0.50000006, 0.49999997, 0.49999997, -0.50000006], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.09200025, 2.03399515, 6.387682], \"size\": [0.8624453, 0.219838873, 0.171363086]}, \"properties\": [], \"states\": []}, {\"id\": 51, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [-3.02099967, 2.233, 11.1959991], \"rotation\": [0.49999997, 0.50000006, -0.50000006, 0.49999997], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.77099967, 2.23300457, 11.1103182], \"size\": [0.8624453, 0.219838873, 0.171363056]}, \"properties\": [], \"states\": []}, {\"id\": 52, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_06\", \"obj_transform\": {\"position\": [-3.759, 0.0, 6.25], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.75899625, 1.029126, 6.250358], \"size\": [0.928397357, 2.058256, 0.122323133]}, \"properties\": [], \"states\": []}, {\"id\": 53, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_03\", \"obj_transform\": {\"position\": [-4.187, 1.0, 6.19400024], \"rotation\": [0.0, 0.9201635, 0.0, -0.391534358], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.75899649, 0.5, 6.250357], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 54, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_01\", \"obj_transform\": {\"position\": [-3.12700033, 1.255, 6.3], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.12700033, 1.255, 6.302553], \"size\": [0.068677865, 0.0936371461, 0.00510568]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 55, \"category\": \"Appliances\", \"class_name\": \"washingmachine\", \"prefab_name\": \"Dark_Grey_Washing_Machine\", \"obj_transform\": {\"position\": [-2.38399982, 0.0, 6.700001], \"rotation\": [0.0, -1.00000012, 0.0, -8.940697e-08], \"scale\": [1.2, 1.2, 1.2]}, \"bounding_box\": {\"center\": [-2.3840003, 0.499382854, 6.70000172], \"size\": [0.72476995, 0.9977087, 0.6621627]}, \"properties\": [\"RECIPIENT\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 56, \"category\": \"Rooms\", \"class_name\": \"kitchen\", \"prefab_name\": \"PRE_ROO_Kitchen_02\", \"obj_transform\": {\"position\": [-3.75, 0.0, 6.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.249999, 1.25, 2.5], \"size\": [8.0, 3.0, 8.0]}, \"properties\": [], \"states\": []}, {\"id\": 57, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-3.75, 0.0, 6.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.75, 0.0, 5.0], \"size\": [2.50000024, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 58, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-3.74999976, 0.0, 3.75000024], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.74999952, 0.0, 2.50000048], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 59, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-3.74999952, 0.0, 1.25000048], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.74999952, 0.0, 5.364418e-07], \"size\": [2.50000024, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 60, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-6.249999, 0.0, 1.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.249999, 0.0, 5.96046448e-08], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 61, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-6.24999952, 0.0, 3.75], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.249999, 0.0, 2.5], \"size\": [2.50000048, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 62, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-6.25, 0.0, 6.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.25, 0.0, 4.99999952], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 63, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-8.75, 0.0, 6.24999952], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.75, 0.0, 4.99999952], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 64, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-8.749999, 0.0, 3.74999976], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.749999, 0.0, 2.49999952], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 65, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_07\", \"obj_transform\": {\"position\": [-8.749999, 0.0, 1.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.749999, 0.0, 5.96046448e-08], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 66, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-3.75, 0.0, 6.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.749991, 2.50000024, 5.0], \"size\": [2.50000024, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 67, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-3.74999976, 0.0, 3.75000024], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.74999046, 2.50000024, 2.50000048], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 68, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-3.74999952, 0.0, 1.25000048], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.74999046, 2.50000024, 5.364418e-07], \"size\": [2.50000024, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 69, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-6.249999, 0.0, 1.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.24998951, 2.50000024, 5.96046448e-08], \"size\": [2.50000048, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 70, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-6.24999952, 0.0, 3.75], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.24999046, 2.50000024, 2.5], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 71, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-6.25, 0.0, 6.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.24999046, 2.50000024, 4.99999952], \"size\": [2.50000048, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 72, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-8.75, 0.0, 6.24999952], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.74999, 2.50000024, 4.99999952], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 73, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-8.749999, 0.0, 3.74999976], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.74998951, 2.50000024, 2.49999952], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 74, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_01\", \"obj_transform\": {\"position\": [-8.749999, 0.0, 1.25], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.74998951, 2.50000024, 5.96046448e-08], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 75, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Straight_06_01\", \"obj_transform\": {\"position\": [-6.25, 0.0, 6.253], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.250004, 1.24999988, 6.22299957], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 76, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Straight_06_01\", \"obj_transform\": {\"position\": [-6.249999, 0.0, -1.24699974], \"rotation\": [0.0, 0.7071068, 0.0, -0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.24999428, 1.24999988, -1.21699762], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 77, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_06_01\", \"obj_transform\": {\"position\": [-2.49999952, 0.0, 2.50300026], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.529998, 1.24999571, 2.50300527], \"size\": [0.0600041673, 2.50000954, 2.500009]}, \"properties\": [], \"states\": []}, {\"id\": 78, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Corner_02_06_01\", \"obj_transform\": {\"position\": [-3.749999, 0.0, -1.24699974], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.750001, 1.25, 0.00300204754], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 79, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Corner_02_06_01\", \"obj_transform\": {\"position\": [-9.999998, 0.0, 0.00299930573], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.749996, 1.25, 0.00300306082], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 80, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_06_01\", \"obj_transform\": {\"position\": [-10.0, 0.0, 5.00299931], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.750012, 1.2500093, 5.003], \"size\": [2.50004554, 2.50002766, 2.500001]}, \"properties\": [], \"states\": []}, {\"id\": 81, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_06_01\", \"obj_transform\": {\"position\": [-3.75, 0.0, 6.253], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.750001, 1.2500093, 5.003014], \"size\": [2.50000143, 2.50002766, 2.500046]}, \"properties\": [], \"states\": []}, {\"id\": 82, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Straight_06_02\", \"obj_transform\": {\"position\": [-9.999999, 0.0, 2.50299931], \"rotation\": [0.0, 3.57627869e-07, 0.0, -1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-9.969997, 1.24999988, 2.50299573], \"size\": [0.0600023419, 2.50000882, 2.5000093]}, \"properties\": [], \"states\": []}, {\"id\": 83, \"category\": \"Electronics\", \"class_name\": \"wallphone\", \"prefab_name\": \"PRE_ELE_Wall_phone_02\", \"obj_transform\": {\"position\": [-2.45049953, 1.476, 1.8760004], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.44081926, 1.476, 1.87600231], \"size\": [0.0193605591, 0.269949377, 0.09333785]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 84, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_02\", \"obj_transform\": {\"position\": [-2.55099964, 0.139, 3.05400014], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.55903244, 0.139, 3.054001], \"size\": [0.0160641018, 0.154280722, 0.0908234343]}, \"properties\": [], \"states\": []}, {\"id\": 85, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_02\", \"obj_transform\": {\"position\": [-2.54999971, 1.399, 1.93800116], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.55255175, 1.399, 1.93800306], \"size\": [0.00510568824, 0.0936371461, 0.06867787]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 86, \"category\": \"Electronics\", \"class_name\": \"ceilingfan\", \"prefab_name\": \"CeilingFan\", \"obj_transform\": {\"position\": [-6.15199947, 2.5, 2.56000042], \"rotation\": [-0.707106769, 0.0, 0.0, 0.707106769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.15199852, 2.5, 2.56000137], \"size\": [0.115446553, 0.0430572778, 0.116814606]}, \"properties\": [], \"states\": []}, {\"id\": 87, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_02\", \"obj_transform\": {\"position\": [-5.291999, 1.421, -1.1869998], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.29159975, 1.37304866, -1.18663132], \"size\": [0.04737649, 0.3164823, 0.0187248085]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 88, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_01\", \"obj_transform\": {\"position\": [-5.40699863, 1.425, -1.18719959], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.404819, 1.37729013, -1.18683064], \"size\": [0.0438155681, 0.316965282, 0.0187248085]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 89, \"category\": \"Props\", \"class_name\": \"knifeblock\", \"prefab_name\": \"PRE_PRO_Knife_block_01\", \"obj_transform\": {\"position\": [-5.28732443, 1.40496814, -1.19999981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.28732443, 1.40496814, -1.19340217], \"size\": [0.556595862, 0.0448102057, 0.0131905591]}, \"properties\": [], \"states\": []}, {\"id\": 90, \"category\": \"Props\", \"class_name\": \"fryingpan\", \"prefab_name\": \"PRE_PRO_Frying_pan_01\", \"obj_transform\": {\"position\": [-7.162999, 1.0966, -0.947999954], \"rotation\": [0.0, -0.933239, 0.0, 0.359256357], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-7.243673, 1.13077724, -0.875079453], \"size\": [0.6118113, 0.06835502, 0.5962986]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"CONTAINERS\", \"MOVABLE\"], \"states\": []}, {\"id\": 91, \"category\": \"Props\", \"class_name\": \"cookingpot\", \"prefab_name\": \"PRE_PRO_Cooking_pot_02_01\", \"obj_transform\": {\"position\": [-6.759999, 1.0979, -0.5250001], \"rotation\": [0.0, -0.341731817, 0.0, 0.9397975], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.674747, 1.14532423, -0.45355323], \"size\": [0.441971123, 0.09484844, 0.414359033]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 92, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [-6.023, 0.497, 5.614], \"rotation\": [-9.271988e-07, 0.5122658, 1.55447242e-06, 0.858827], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.02018929, 0.519396842, 5.60879946], \"size\": [0.393562376, 0.0454364754, 0.3677748]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 93, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [-6.288, 0.497, 5.917], \"rotation\": [0.0, -0.8789976, 0.0, -0.4768262], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.290425, 0.5138616, 5.913269], \"size\": [0.29963702, 0.0342060961, 0.28558296]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 94, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_06\", \"obj_transform\": {\"position\": [-3.76499915, 1.1481, -0.7519994], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.76499867, 1.1753993, -0.7519975], \"size\": [0.188491344, 0.0545988381, 0.188491344]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 95, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_05\", \"obj_transform\": {\"position\": [-3.76499915, 1.1304, -0.7519994], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.76499867, 1.15769923, -0.7519975], \"size\": [0.188491344, 0.0545988381, 0.188491344]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 96, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_04\", \"obj_transform\": {\"position\": [-3.76499915, 1.1117, -0.7519994], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.76499867, 1.13899934, -0.7519975], \"size\": [0.188491344, 0.0545988381, 0.188491344]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 97, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_03\", \"obj_transform\": {\"position\": [-3.76499915, 1.0901, -0.7519994], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.76499867, 1.11739933, -0.7519975], \"size\": [0.188491344, 0.0545988381, 0.188491344]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 98, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_02\", \"obj_transform\": {\"position\": [-3.76499915, 1.07004845, -0.7519994], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.76499867, 1.09734774, -0.7519975], \"size\": [0.188491344, 0.0545988381, 0.188491344]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 103, \"category\": \"Props\", \"class_name\": \"dishwashingliquid\", \"prefab_name\": \"PRE_PRO_Washing_liquid\", \"obj_transform\": {\"position\": [-4.85025835, 1.07004833, -0.998236656], \"rotation\": [0.0, -0.5762857, 0.0, 0.817248344], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.85025835, 1.21857607, -0.9982348], \"size\": [0.13639617, 0.29705584, 0.104696214]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 108, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"MOD_PRO_Clothes_pile_07\", \"obj_transform\": {\"position\": [-2.671, 0.0357, 5.491], \"rotation\": [0.0, -0.7277914, 0.0, 0.685798645], \"scale\": [0.59907037, 0.5990704, 0.5990704]}, \"bounding_box\": {\"center\": [-2.671, 0.08437817, 5.491], \"size\": [0.202996254, 0.0973570049, 0.272159576]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 109, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"MOD_PRO_Clothes_pile_06\", \"obj_transform\": {\"position\": [-2.671, 0.3447, 4.484], \"rotation\": [0.0, -0.6942996, 0.0, 0.719686151], \"scale\": [0.5990703, 0.5990704, 0.59907037]}, \"bounding_box\": {\"center\": [-2.67099953, 0.393378168, 4.484001], \"size\": [0.197071075, 0.0973569751, 0.268044472]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 110, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"MOD_PRO_Clothes_pile_05\", \"obj_transform\": {\"position\": [-2.671, 0.6814, 4.94300032], \"rotation\": [0.0, -0.7180816, 0.0, 0.695959], \"scale\": [0.5990703, 0.5990704, 0.5990704]}, \"bounding_box\": {\"center\": [-2.67099953, 0.730078161, 4.943001], \"size\": [0.195893764, 0.0973570347, 0.2672186]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 111, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"MOD_PRO_Clothes_pile_04\", \"obj_transform\": {\"position\": [-2.671, 1.0138, 3.84500027], \"rotation\": [0.0, -0.6959913, 0.0, 0.718050241], \"scale\": [0.5990703, 0.5990704, 0.5990704]}, \"bounding_box\": {\"center\": [-2.67099953, 1.06247818, 3.84500122], \"size\": [0.195870876, 0.0973570347, 0.267202854]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 112, \"category\": \"Props\", \"class_name\": \"garbagecan\", \"prefab_name\": \"Garbage_can_6\", \"obj_transform\": {\"position\": [-6.162999, 0.0, -0.8199997], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.16363335, 0.207238674, -0.8194628], \"size\": [0.3276125, 0.414477348, 0.32761234]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 113, \"category\": \"Props\", \"class_name\": \"paper\", \"prefab_name\": \"Paper_2a\", \"obj_transform\": {\"position\": [-4.842, 1.0812, -0.5741992], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.842, 1.0812, -0.5741973], \"size\": [0.1960001, 0.00500011444, 0.269999981]}, \"properties\": [\"GRABBABLE\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 114, \"category\": \"Props\", \"class_name\": \"washingsponge\", \"prefab_name\": \"PRE_PRO_Washing_sponge\", \"obj_transform\": {\"position\": [-4.20095348, 1.07004833, -1.06501245], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.19976854, 1.09448028, -1.06501079], \"size\": [0.191892773, 0.0488643944, 0.114323393]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 115, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_2\", \"obj_transform\": {\"position\": [-2.23010015, 1.289, 4.521144], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23010015, 1.289, 4.521144], \"size\": [0.2811513, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 116, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [-2.250163, 1.289, 4.41493273], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.250163, 1.289, 4.41493368], \"size\": [0.2811513, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 117, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [-2.24954271, 1.289, 4.299696], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.24954271, 1.289, 4.299696], \"size\": [0.2811513, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 118, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [-2.25588131, 1.289, 4.188083], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.25588131, 1.289, 4.188084], \"size\": [0.2811513, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 119, \"category\": \"Props\", \"class_name\": \"crayons\", \"prefab_name\": \"Crayons_1\", \"obj_transform\": {\"position\": [-2.192626, 1.67444015, 4.74342537], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.192626, 1.68694019, 4.74342537], \"size\": [0.0999999046, 0.0230000019, 0.109999657]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 120, \"category\": \"Props\", \"class_name\": \"notes\", \"prefab_name\": \"Notes_1\", \"obj_transform\": {\"position\": [-2.22806168, 1.32213855, 5.370354], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.22806168, 1.32713854, 5.370354], \"size\": [0.21999979, 0.00999999, 0.149999619]}, \"properties\": [\"GRABBABLE\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 121, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_04\", \"obj_transform\": {\"position\": [-6.25, 1.585, 6.194], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.249999, 1.585, 6.17004728], \"size\": [2.57938361, 1.10615075, 0.05042243]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 122, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_14\", \"obj_transform\": {\"position\": [-6.8911, 0.087, 5.75568962], \"rotation\": [0.0, -0.931853533, 0.0, 0.3628347], \"scale\": [0.9414535, 0.9414535, 0.9414535]}, \"bounding_box\": {\"center\": [-6.904369, 0.182342619, 5.77205229], \"size\": [0.956319, 0.190685347, 0.9631744]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 123, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_13\", \"obj_transform\": {\"position\": [-5.40199947, 0.497, 5.75599957], \"rotation\": [0.0, -0.460137278, 0.0, 0.8878478], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.38656235, 0.5982717, 5.77219963], \"size\": [1.01997757, 0.202543557, 0.991021752]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 124, \"category\": \"Decor\", \"class_name\": \"candle\", \"prefab_name\": \"PRE_DEC_Candle_01\", \"obj_transform\": {\"position\": [-6.342, 0.525, 5.656], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.341999, 0.5935807, 5.656], \"size\": [0.0827579647, 0.137161791, 0.0827575549]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 125, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_06\", \"obj_transform\": {\"position\": [-2.62, 1.549, 4.1590004], \"rotation\": [0.14171192, 0.9898754, 0.00643935055, 0.004794538], \"scale\": [0.35029465, 0.35029462, 0.350294679]}, \"bounding_box\": {\"center\": [-2.62701321, 1.55105054, 4.15894461], \"size\": [0.141326427, 0.430526733, 0.341032982]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 126, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_01\", \"obj_transform\": {\"position\": [-6.33005047, 1.43955207, 6.19363928], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.33005, 1.43955183, 6.16951227], \"size\": [2.57583141, 1.10530043, 0.04825592]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 127, \"category\": \"Decor\", \"class_name\": \"candle\", \"prefab_name\": \"PRE_DEC_Candle_01\", \"obj_transform\": {\"position\": [-2.663044, 1.355, 4.953684], \"rotation\": [0.0, 0.384727925, 0.0, 0.92303], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.66304421, 1.42358077, 4.953684], \"size\": [0.117036, 0.137161791, 0.117036]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 128, \"category\": \"Decor\", \"class_name\": \"vase\", \"prefab_name\": \"mH_Vase_02\", \"obj_transform\": {\"position\": [-2.67400026, 1.34075654, 4.61888933], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.67400026, 1.72506, 4.618889], \"size\": [0.108091116, 0.768607, 0.108091354]}, \"properties\": [], \"states\": []}, {\"id\": 129, \"category\": \"Furniture\", \"class_name\": \"bench\", \"prefab_name\": \"PRE_FUR_Bench_01_04\", \"obj_transform\": {\"position\": [-7.299999, 0.029, 2.58999968], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-7.29999828, 0.328, 2.59000063], \"size\": [0.350200027, 0.508300066, 1.57760024]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 130, \"category\": \"Furniture\", \"class_name\": \"kitchentable\", \"prefab_name\": \"PRE_FUR_Kitchen_table_01_04\", \"obj_transform\": {\"position\": [-6.00999928, 0.029, 2.52], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.5, 1.0, 1.1]}, \"bounding_box\": {\"center\": [-6.00999832, 0.504, 2.520001], \"size\": [1.63800025, 0.950000048, 2.2]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 131, \"category\": \"Furniture\", \"class_name\": \"bench\", \"prefab_name\": \"PRE_FUR_Bench_01_04\", \"obj_transform\": {\"position\": [-4.82999945, 0.029, 2.50000024], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.829999, 0.328, 2.500001], \"size\": [0.350200027, 0.508300066, 1.57760024]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 132, \"category\": \"Furniture\", \"class_name\": \"tvstand\", \"prefab_name\": \"PRE_FUR_TV_stand_01_08\", \"obj_transform\": {\"position\": [-6.25, 0.0, 5.759], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.251999, 0.246, 5.759], \"size\": [2.15999985, 0.492, 0.759999752]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 133, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-5.161699, 2.05, -0.820199966], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.527199, 2.05115032, -0.986620963], \"size\": [0.7579994, 0.6996989, 0.402154326]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 134, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-3.662699, 2.05, -0.8199997], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.028199, 2.05115032, -0.986420453], \"size\": [0.7580004, 0.6996989, 0.4021548]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 135, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.915899, 2.05, -0.8199992], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.28139925, 2.05115032, -0.986419737], \"size\": [0.7579999, 0.6996989, 0.40215528]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 136, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-4.412999, 2.05, -0.8199997], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.778499, 2.05115032, -0.986420453], \"size\": [0.7580004, 0.6996989, 0.4021548]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 137, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.919799, 2.05, 0.127482891], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.75337625, 2.05115032, -0.146272659], \"size\": [0.402153969, 0.6996989, 0.567739248]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 138, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.9199996, 2.05, 0.6880307], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.75357628, 2.05115032, 0.414275169], \"size\": [0.402153254, 0.6996989, 0.5677383]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 139, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.9199996, 2.05, 1.2502265], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.75357628, 2.05115032, 0.976470947], \"size\": [0.40215373, 0.6996989, 0.5677383]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 140, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.9199996, 2.05, 1.809576], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.75357628, 2.05115032, 1.53582048], \"size\": [0.4021535, 0.6996989, 0.567739248]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 141, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_01_09\", \"obj_transform\": {\"position\": [-4.407999, 0.0, -0.783999443], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.407999, 0.52, -0.804997444], \"size\": [3.014, 1.05, 0.7699995]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 142, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_01\", \"obj_transform\": {\"position\": [-4.407999, 0.225, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.407999, 0.356, -0.786996365], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 143, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_02\", \"obj_transform\": {\"position\": [-4.407999, 0.504, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.407999, 0.635, -0.786996365], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 144, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_03\", \"obj_transform\": {\"position\": [-5.403799, 0.504, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.403799, 0.635, -0.786996841], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 145, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_04\", \"obj_transform\": {\"position\": [-5.403799, 0.225, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.403799, 0.356, -0.786996841], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 146, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_06\", \"obj_transform\": {\"position\": [-3.41599917, 0.779, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.41599941, 0.909999967, -0.786996365], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 147, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_07\", \"obj_transform\": {\"position\": [-3.41599917, 0.225, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.41599941, 0.356, -0.786996365], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 148, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_08\", \"obj_transform\": {\"position\": [-3.41599917, 0.504, -0.809999466], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-3.41599941, 0.635, -0.786996365], \"size\": [0.982000053, 0.272, 0.711999834]}, \"properties\": [], \"states\": []}, {\"id\": 149, \"category\": \"Furniture\", \"class_name\": \"sink\", \"prefab_name\": \"Sink\", \"obj_transform\": {\"position\": [-4.407999, 0.838, -0.7409973], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.0377179533, 0.01, 0.06723919]}, \"bounding_box\": {\"center\": [-4.407999, 0.838, -0.740994453], \"size\": [0.6723918, 2.220446e-18, 0.377179533]}, \"properties\": [\"RECIPIENT\", \"CONTAINERS\"], \"states\": []}, {\"id\": 150, \"category\": \"Furniture\", \"class_name\": \"faucet\", \"prefab_name\": \"Faucet\", \"obj_transform\": {\"position\": [-4.437999, 1.1, -1.08400011], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.437999, 1.1, -1.08399725], \"size\": [0.100000381, 0.0999999046, 0.0999999046]}, \"properties\": [\"HAS_SWITCH\"], \"states\": [\"OFF\"]}, {\"id\": 151, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_03_09\", \"obj_transform\": {\"position\": [-2.722999, 0.0, -0.829999447], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.72499919, 0.535, -0.800997257], \"size\": [0.3160001, 1.07, 0.7699999]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 152, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_04\", \"obj_transform\": {\"position\": [-2.66799974, 0.002, 4.64100027], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.6038772, 0.6038771, 1.0]}, \"bounding_box\": {\"center\": [-2.66799974, 0.671095848, 4.641001], \"size\": [0.193240628, 1.33819175, 2.11399961]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 153, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [-2.8739996, 0.0, 1.39900064], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.85199976, 0.495000035, 1.399003], \"size\": [0.5236, 0.8415001, 0.401200175]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 154, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [-2.8659997, 0.0, 0.29900074], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.84399986, 0.495000035, 0.299003124], \"size\": [0.5236, 0.8415001, 0.401200175]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 155, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"BookShelf_4\", \"obj_transform\": {\"position\": [-8.762235, 0.0, 5.883], \"rotation\": [-0.007200986, 0.7070701, 0.7070701, 0.007200986], \"scale\": [1.0, 1.0, 2.0]}, \"bounding_box\": {\"center\": [-8.762233, 1.05000007, 5.883], \"size\": [1.1874944, 2.10000014, 0.355888844]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 156, \"category\": \"Appliances\", \"class_name\": \"stovefan\", \"prefab_name\": \"StoveFan_2\", \"obj_transform\": {\"position\": [-6.951716, 0.251620442, -0.7856035], \"rotation\": [0.0, -0.707106769, 0.0, 0.707106769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.95171547, 2.39308071, -0.785601556], \"size\": [0.9183407, 0.7193217, 0.532038569]}, \"properties\": [], \"states\": []}, {\"id\": 157, \"category\": \"Appliances\", \"class_name\": \"stove\", \"prefab_name\": \"PRE_APP_Stove_01_02\", \"obj_transform\": {\"position\": [-6.964716, 0.02502042, -0.6886034], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.964715, 0.5350204, -0.7636013], \"size\": [1.002, 1.08, 0.8319998]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\"], \"states\": [\"OFF\", \"CLOSED\"]}, {\"id\": 158, \"category\": \"Appliances\", \"class_name\": \"oventray\", \"prefab_name\": \"MOD_APP_Oven_tray_01\", \"obj_transform\": {\"position\": [-6.964716, 0.5400204, -0.7266035], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.96471643, 0.5507983, -0.7266016], \"size\": [0.933822632, 0.02155888, 0.6174073]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 159, \"category\": \"Appliances\", \"class_name\": \"dishwasher\", \"prefab_name\": \"PRE_APP_Dishwasher_01_04\", \"obj_transform\": {\"position\": [-8.745716, -0.000379562378, -0.8956032], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.745714, 0.5096205, -0.881601334], \"size\": [0.9680001, 1.0200001, 0.789999843]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 160, \"category\": \"Appliances\", \"class_name\": \"coffeemaker\", \"prefab_name\": \"PRE_APP_Coffeemaker_02\", \"obj_transform\": {\"position\": [-8.973716, 1.01762044, -0.586603165], \"rotation\": [0.0, -0.937549353, 0.0, 0.347852319], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.988713, 1.19737017, -0.573698044], \"size\": [0.369590759, 0.35950017, 0.05267787]}, \"properties\": [\"RECIPIENT\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 161, \"category\": \"Appliances\", \"class_name\": \"coffeepot\", \"prefab_name\": \"MOD_PRO_Coffeemaker_01_Pot_01\", \"obj_transform\": {\"position\": [-9.031323, 1.06362045, -0.537031651], \"rotation\": [0.0, -0.937549353, 0.0, 0.347852319], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-9.048183, 1.12956679, -0.5225172], \"size\": [0.289360046, 0.1318934, 0.284372449]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 162, \"category\": \"Appliances\", \"class_name\": \"toaster\", \"prefab_name\": \"PRE_APP_Toaster_05\", \"obj_transform\": {\"position\": [-8.421716, 1.01762044, -0.7426033], \"rotation\": [0.0, -0.9771904, 0.0, -0.212365359], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.382387, 1.12203145, -0.74099493], \"size\": [0.2741661, 0.209531546, 0.3150587]}, \"properties\": [\"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 163, \"category\": \"Appliances\", \"class_name\": \"breadslice\", \"prefab_name\": \"Bread_slice_1\", \"obj_transform\": {\"position\": [-8.395674, 1.21432042, -0.7765579], \"rotation\": [0.468247354, -0.6764042, -0.5298532, 0.206100613], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.398298, 1.21480381, -0.7707739], \"size\": [0.202954441, 0.0415873155, 0.07862676]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 164, \"category\": \"Appliances\", \"class_name\": \"breadslice\", \"prefab_name\": \"Bread_slice_1\", \"obj_transform\": {\"position\": [-8.42452049, 1.21432042, -0.713326454], \"rotation\": [0.468247354, -0.6764042, -0.5298532, 0.206100613], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.427145, 1.21480381, -0.7075424], \"size\": [0.202954441, 0.0415873155, 0.07862676]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 165, \"category\": \"Appliances\", \"class_name\": \"fridge\", \"prefab_name\": \"PRE_APP_Fridge_01_06\", \"obj_transform\": {\"position\": [-9.487717, 2.20537186e-06, 1.3743968], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-9.49852848, 1.062582, 1.3738271], \"size\": [0.7121652, 2.125163, 0.889662147]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\"]}, {\"id\": 166, \"category\": \"Appliances\", \"class_name\": \"fridge\", \"prefab_name\": \"PRE_APP_Fridge_01_06\", \"obj_transform\": {\"position\": [-9.487717, 2.20537186e-06, 2.71439672], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.9999999, 1.0, 0.9999999]}, \"bounding_box\": {\"center\": [-9.49852848, 1.062582, 2.7138257], \"size\": [0.712165058, 2.125163, 0.889662]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\"]}, {\"id\": 167, \"category\": \"Appliances\", \"class_name\": \"microwave\", \"prefab_name\": \"Microwave_1\", \"obj_transform\": {\"position\": [-6.895004, 0.496638536, 5.706451], \"rotation\": [0.0, 0.707106769, 0.707106769, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.89500332, 0.64892447, 5.69632053], \"size\": [0.5393162, 0.304915637, 0.399261475]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 169, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_03_01\", \"obj_transform\": {\"position\": [-4.299999, 0.0, 2.5], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-4.299999, 2.43006635, 2.500001], \"size\": [0.9264263, 0.152424768, 0.932432]}, \"properties\": [], \"states\": []}, {\"id\": 170, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_03_01\", \"obj_transform\": {\"position\": [-7.999999, 0.0, 2.49999976], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-7.999997, 2.43006635, 2.50000072], \"size\": [0.9264263, 0.152424768, 0.932432]}, \"properties\": [], \"states\": []}, {\"id\": 171, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [-3.719999, 1.534, -1.15999937], \"rotation\": [0.49999997, -0.50000006, 0.50000006, 0.49999997], \"scale\": [0.5544367, 0.554436862, 0.554436862]}, \"bounding_box\": {\"center\": [-4.41304541, 1.53400254, -1.11249268], \"size\": [0.478171468, 0.121886775, 0.09500997]}, \"properties\": [], \"states\": []}, {\"id\": 172, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [-6.270999, 1.534, -1.15999985], \"rotation\": [0.49999997, -0.50000006, 0.50000006, 0.49999997], \"scale\": [0.5544367, 0.554436862, 0.554436862]}, \"bounding_box\": {\"center\": [-6.964045, 1.53400254, -1.11249316], \"size\": [0.478171468, 0.121886775, 0.09500997]}, \"properties\": [], \"states\": []}, {\"id\": 173, \"category\": \"Food\", \"class_name\": \"chicken\", \"prefab_name\": \"SMGP_PRE_Chicken_1024\", \"obj_transform\": {\"position\": [-5.646999, 1.121, -0.8590002], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.299999982, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-5.646999, 1.121, -0.8589978], \"size\": [0.248155177, 0.100878, 0.148634985]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 174, \"category\": \"Food\", \"class_name\": \"cutlets\", \"prefab_name\": \"SMGP_PRE_Cutlets_1024\", \"obj_transform\": {\"position\": [-5.24964237, 1.070049, -0.7662425], \"rotation\": [0.0, -0.429706275, 0.0, 0.902968764], \"scale\": [0.300000042, 0.3, 0.300000042]}, \"bounding_box\": {\"center\": [-5.24964237, 1.10085881, -0.7662407], \"size\": [0.3578987, 0.06162097, 0.33982116]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 176, \"category\": \"Food\", \"class_name\": \"poundcake\", \"prefab_name\": \"DHP_PRE_Pound_cake_1024\", \"obj_transform\": {\"position\": [-5.70279932, 0.9955, 2.9469], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-5.702799, 1.04566, 2.94690061], \"size\": [0.2708313, 0.1003212, 0.2708313]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 188, \"category\": \"Food\", \"class_name\": \"dishbowl\", \"prefab_name\": \"FMGP_PRE_Wooden_bowl_1024\", \"obj_transform\": {\"position\": [-6.14878273, 0.9643938, 2.6697793], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.37713337, 1.37713337, 1.37713337]}, \"bounding_box\": {\"center\": [-6.148782, 1.00828922, 2.66978025], \"size\": [0.356691271, 0.08779088, 0.356691271]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 189, \"category\": \"Food\", \"class_name\": \"creamybuns\", \"prefab_name\": \"SMGP_PRE_Creamy_buns_1025\", \"obj_transform\": {\"position\": [-2.7329998, 0.49, 4.71000051], \"rotation\": [0.549587131, 0.444919646, -0.44492, 0.5495878], \"scale\": [0.3166708, 0.316670835, 0.316670865]}, \"bounding_box\": {\"center\": [-2.67086148, 0.490000337, 4.723227], \"size\": [0.141931832, 0.2883473, 0.109393507]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 190, \"category\": \"Food\", \"class_name\": \"creamybuns\", \"prefab_name\": \"SMGP_PRE_Creamy_buns_1024\", \"obj_transform\": {\"position\": [-2.60699987, 0.49, 5.335], \"rotation\": [0.4645295, -0.533115864, 0.5331146, 0.464530557], \"scale\": [0.316670835, 0.3166709, 0.316670865]}, \"bounding_box\": {\"center\": [-2.6699326, 0.4900005, 5.326306], \"size\": [0.137471765, 0.288347542, 0.10138917]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 193, \"category\": \"Food\", \"class_name\": \"chocolatesyrup\", \"prefab_name\": \"SMGP_PRE_Chocolate_syrup_1024\", \"obj_transform\": {\"position\": [-2.68218827, 1.01360035, 4.81137], \"rotation\": [0.0, -0.940318465, 0.0, 0.340295583], \"scale\": [0.242501974, 0.242501974, 0.242501974]}, \"bounding_box\": {\"center\": [-2.68218827, 1.11429024, 4.81137037], \"size\": [0.12382403, 0.202268228, 0.129567534]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 194, \"category\": \"Food\", \"class_name\": \"bottlewater\", \"prefab_name\": \"Bottle_water_1\", \"obj_transform\": {\"position\": [-6.12553072, 1.122, 2.97100043], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.12553, 1.122, 2.97100139], \"size\": [0.07600021, 0.285000026, 0.07600021]}, \"properties\": [\"DRINKABLE\", \"POURABLE\"], \"states\": []}, {\"id\": 195, \"category\": \"Food\", \"class_name\": \"milk\", \"prefab_name\": \"FMGP_PRE_Milk_1024\", \"obj_transform\": {\"position\": [-6.0326767, 0.982, 2.08764076], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.03267574, 1.102379, 2.08764219], \"size\": [0.123023987, 0.240758, 0.123024985]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 196, \"category\": \"Food\", \"class_name\": \"cereal\", \"prefab_name\": \"SMGP_PRE_Cereal_1024\", \"obj_transform\": {\"position\": [-6.04132843, 0.982, 2.32381487], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.252370358, 0.2523704, 0.252370328]}, \"bounding_box\": {\"center\": [-6.04132748, 1.12907231, 2.32381487], \"size\": [0.2370731, 0.294145018, 0.085501276]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 197, \"category\": \"Food\", \"class_name\": \"alcohol\", \"prefab_name\": \"Alcohol_2\", \"obj_transform\": {\"position\": [-2.6741, 1.4966, 3.81960058], \"rotation\": [0.0, -0.7311518, 0.0, 0.682214856], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.6741, 1.4966, 3.81960154], \"size\": [0.138680458, 0.30700016, 0.138680458]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 198, \"category\": \"Rooms\", \"class_name\": \"livingroom\", \"prefab_name\": \"PRE_ROO_Livingroom_02\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 1.25, 2.5], \"size\": [8.0, 3.0, 8.0]}, \"properties\": [], \"states\": []}, {\"id\": 199, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 200, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 201, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 202, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 203, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 204, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [0.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 205, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [0.0, 0.0, 5.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 206, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [2.5, 0.0, 5.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 207, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_03\", \"obj_transform\": {\"position\": [5.0, 0.0, 5.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 208, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_04\", \"obj_transform\": {\"position\": [-2.537, 1.0, 2.92740059], \"rotation\": [0.0, -0.5, 0.0, 0.8660254], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.499643, 0.5, 2.49999619], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 209, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_02\", \"obj_transform\": {\"position\": [-2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.499643, 1.029126, 2.49999619], \"size\": [0.122323036, 2.058256, 0.9283974]}, \"properties\": [], \"states\": []}, {\"id\": 210, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 211, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 212, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 5.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, 4.999991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 213, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 5.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, 4.999991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 214, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 215, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 216, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 217, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 218, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 5.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, 4.999991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 219, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_02\", \"obj_transform\": {\"position\": [-0.5, 0.0, 0.77], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.5, 2.22767544, 0.77], \"size\": [0.531659365, 0.5451052, 0.531659365]}, \"properties\": [], \"states\": []}, {\"id\": 220, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_02\", \"obj_transform\": {\"position\": [3.19, 0.0, 4.45], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.19, 2.22767544, 4.45], \"size\": [0.5316591, 0.5451052, 0.5316591]}, \"properties\": [], \"states\": []}, {\"id\": 221, \"category\": \"Lamps\", \"class_name\": \"tablelamp\", \"prefab_name\": \"PRE_LAM_Table_lamp_02_12\", \"obj_transform\": {\"position\": [1.278, 0.477, 5.524], \"rotation\": [0.0, -0.175141647, 0.0, 0.9845433], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.278, 0.768427253, 5.524], \"size\": [0.352488279, 0.5775016, 0.3406124]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 222, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Straight_03_03\", \"obj_transform\": {\"position\": [1.25, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.24999523, 1.24999988, 6.22], \"size\": [2.50000978, 2.50000882, 0.0600010157]}, \"properties\": [], \"states\": []}, {\"id\": 223, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_03_03\", \"obj_transform\": {\"position\": [-2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 1.25, 1.847744e-06], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 224, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_03_03\", \"obj_transform\": {\"position\": [-1.25, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.24999833, 1.25, 5.0], \"size\": [2.50000429, 2.500009, 2.50000477]}, \"properties\": [], \"states\": []}, {\"id\": 225, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_03_03\", \"obj_transform\": {\"position\": [5.0, 0.0, 5.0], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 1.25, 4.999998], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 226, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_03_03\", \"obj_transform\": {\"position\": [3.75, 0.0, -1.25], \"rotation\": [0.0, 0.7071068, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.749998, 1.25, 1.1920929e-07], \"size\": [2.50000429, 2.500009, 2.50000477]}, \"properties\": [], \"states\": []}, {\"id\": 227, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Doorway_03_03\", \"obj_transform\": {\"position\": [-2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.47000146, 1.24999571, 2.49999547], \"size\": [0.06000357, 2.50000954, 2.500009]}, \"properties\": [], \"states\": []}, {\"id\": 228, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Window_02_03_03\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.9700017, 1.24999344, 2.50000882], \"size\": [0.059997078, 2.50002646, 2.50001764]}, \"properties\": [], \"states\": []}, {\"id\": 229, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Window_02_03_03\", \"obj_transform\": {\"position\": [1.25, 0.0, -1.25], \"rotation\": [0.0, -0.70710665, 0.0, 0.707107], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.250009, 1.24999344, -1.22000146], \"size\": [2.500018, 2.50002646, 0.05999798]}, \"properties\": [], \"states\": []}, {\"id\": 230, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_01\", \"obj_transform\": {\"position\": [3.74, 1.6, -1.2], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 0.832702935]}, \"bounding_box\": {\"center\": [3.73999977, 1.59999967, -1.175873], \"size\": [2.14490223, 1.10530043, 0.0482554436]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 231, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [4.956, 1.54, 4.175], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.93513966, 1.54000008, 4.17500162], \"size\": [0.041721344, 1.2570436, 0.9556303]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 232, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_04\", \"obj_transform\": {\"position\": [4.916, -0.027, 2.5], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.90656137, 2.02788568, 2.49988222], \"size\": [0.0259932633, 0.0333948135, 2.328011]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 233, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_01_01\", \"obj_transform\": {\"position\": [4.911, -0.024, 1.65], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 0.29]}, \"bounding_box\": {\"center\": [4.89139462, 1.46755087, 1.64825952], \"size\": [0.08798599, 1.15232825, 0.308328629]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 234, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_02\", \"obj_transform\": {\"position\": [4.91, -0.024, 3.318], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.88101, 1.46754837, 3.32400942], \"size\": [0.107337952, 1.15232611, 0.5931845]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 235, \"category\": \"Furniture\", \"class_name\": \"tvstand\", \"prefab_name\": \"TVStand_6\", \"obj_transform\": {\"position\": [4.382, -0.04, 0.566], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.382, 0.22300005, 0.5642], \"size\": [0.3760004, 0.526, 2.27520037]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 236, \"category\": \"Furniture\", \"class_name\": \"closet\", \"prefab_name\": \"PRE_FUR_Closet_01_13\", \"obj_transform\": {\"position\": [-1.59922218, 0.0, 0.04350263], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.59219408, 0.99999994, 0.04349637], \"size\": [0.508942842, 2.00000715, 2.00012684]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 237, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_01\", \"obj_transform\": {\"position\": [-1.59422219, 1.617, 0.930502653], \"rotation\": [0.0, 0.7138904, 0.0, 0.70025754], \"scale\": [0.83, 0.83, 0.83]}, \"bounding_box\": {\"center\": [-1.59335756, 1.70673835, 0.93048656], \"size\": [0.390039444, 0.20012641, 0.0200006962]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 238, \"category\": \"Furniture\", \"class_name\": \"clothesshirt\", \"prefab_name\": \"MOD_PRO_Shirt_02\", \"obj_transform\": {\"position\": [-1.60418034, 1.62778986, 0.9306947], \"rotation\": [0.0, 0.7138903, 0.0, 0.7002576], \"scale\": [1.0, 0.917863846, 1.0]}, \"bounding_box\": {\"center\": [-1.60418046, 1.39264858, 0.9306254], \"size\": [0.48099795, 0.612180769, 0.0442409143]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 239, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_02\", \"obj_transform\": {\"position\": [-1.60380518, 1.585, 0.4783007], \"rotation\": [0.0, 0.631089449, 0.0, 0.7757101], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.60278523, 1.69311857, 0.4785133], \"size\": [0.46296072, 0.241116285, 0.11029622]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 240, \"category\": \"Furniture\", \"class_name\": \"clothespants\", \"prefab_name\": \"PRE_PRO_Pants_02\", \"obj_transform\": {\"position\": [-1.603233, 1.586, 0.4804623], \"rotation\": [0.0, -0.7757102, 0.0, 0.6310893], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.603163, 1.2934041, 0.4801249], \"size\": [0.298178434, 0.6125164, 0.101869822]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 241, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_03\", \"obj_transform\": {\"position\": [-1.59367681, 1.617, 0.707012057], \"rotation\": [0.0, 0.7949673, 0.0, 0.6066524], \"scale\": [0.85, 0.85, 0.85]}, \"bounding_box\": {\"center\": [-1.59282243, 1.70890081, 0.7067789], \"size\": [0.3884821, 0.2049489, 0.1177187]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 242, \"category\": \"Furniture\", \"class_name\": \"clothesshirt\", \"prefab_name\": \"MOD_PRO_Shirt_01\", \"obj_transform\": {\"position\": [-1.602842, 1.6323, 0.7121639], \"rotation\": [0.0, 0.7949673, 0.0, 0.6066524], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.6028595, 1.36994386, 0.712095141], \"size\": [0.483998775, 0.683033943, 0.164416626]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 243, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_15\", \"obj_transform\": {\"position\": [1.3210001, 0.0, 5.54], \"rotation\": [0.0, 0.9001497, 0.0, 0.43558076], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.32256842, 0.242000014, 5.53875875], \"size\": [0.122400343, 0.484000027, 1.05072665]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 244, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"PRE_FUR_CPU_table_01_05\", \"obj_transform\": {\"position\": [-0.41, 0.0, 5.5], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.41, 0.475000024, 5.5], \"size\": [2.02800035, 0.950000048, 1.06800044]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 245, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_CPU_chair_03_05\", \"obj_transform\": {\"position\": [-0.467, 0.0, 3.909], \"rotation\": [0.0, 0.967977166, 0.0, -0.251038343], \"scale\": [1.0, 1.0, 1.18598187]}, \"bounding_box\": {\"center\": [-0.455638528, 0.781, 3.90268183], \"size\": [0.9167244, 1.3277, 0.343786836]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 246, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_08\", \"obj_transform\": {\"position\": [-2.249, 0.0, 4.625], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.249, 1.108, 4.625], \"size\": [0.320000023, 2.216, 2.114]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 247, \"category\": \"Furniture\", \"class_name\": \"coffeetable\", \"prefab_name\": \"CoffeeTable_1\", \"obj_transform\": {\"position\": [2.763, 0.0, 0.79], \"rotation\": [2.18556941e-08, 0.0, 0.0, 1.0], \"scale\": [1.0, 0.75, 1.0]}, \"bounding_box\": {\"center\": [2.763, 0.258000016, 0.79], \"size\": [1.22, 0.516, 1.24400008]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 248, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"Sofa_1\", \"obj_transform\": {\"position\": [0.857, 0.0, 0.88], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.857, 0.486000031, 0.88], \"size\": [1.0608, 0.826200068, 2.16410065]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 249, \"category\": \"Food\", \"class_name\": \"alcohol\", \"prefab_name\": \"Alcohol_jack_daniel\", \"obj_transform\": {\"position\": [2.93873549, 0.639, 0.7798098], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.93873549, 0.639, 0.7798098], \"size\": [0.0852160454, 0.248000026, 0.08451927]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 252, \"category\": \"Food\", \"class_name\": \"bananas\", \"prefab_name\": \"FMGP_PRE_Bananas_1024\", \"obj_transform\": {\"position\": [2.58521, 0.524656, 0.6674983], \"rotation\": [-0.00744920131, -0.002676542, -0.09877255, 0.995078564], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.566303, 0.575283051, 0.685202241], \"size\": [0.23349905, 0.140103817, 0.281377077]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 253, \"category\": \"Food\", \"class_name\": \"lime\", \"prefab_name\": \"FMGP_PRE_Lime_1024\", \"obj_transform\": {\"position\": [2.70205045, 0.5343174, 0.568099558], \"rotation\": [0.212750077, 0.0, 0.0, 0.9771067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.70205045, 0.5628449, 0.5811407], \"size\": [0.070012, 0.08616312, 0.0897563845]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 254, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [2.757368, 0.544614255, 0.7014407], \"rotation\": [0.15995273, 0.0334494822, 0.201780975, 0.9657022], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.743724, 0.575838864, 0.7130476], \"size\": [0.10048452, 0.111167528, 0.089490436]}, \"properties\": [], \"states\": []}, {\"id\": 255, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [2.75378227, 0.56260103, 0.6101062], \"rotation\": [0.163131416, -0.133657366, -0.0223127045, 0.977254331], \"scale\": [0.863431454, 0.863431454, 0.863431454]}, \"bounding_box\": {\"center\": [2.75378227, 0.5919976, 0.6202018], \"size\": [0.07446259, 0.08297911, 0.09061618]}, \"properties\": [], \"states\": []}, {\"id\": 256, \"category\": \"Food\", \"class_name\": \"plum\", \"prefab_name\": \"FMGP_PRE_Plum_1024\", \"obj_transform\": {\"position\": [2.64353228, 0.5785044, 0.6688151], \"rotation\": [0.147337615, 0.171003565, 0.635892153, 0.7380316], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.611558, 0.583827257, 0.68447274], \"size\": [0.09671016, 0.06723279, 0.08642173]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 257, \"category\": \"Food\", \"class_name\": \"plum\", \"prefab_name\": \"FMGP_PRE_Plum_1024\", \"obj_transform\": {\"position\": [2.65915585, 0.572781861, 0.5316176], \"rotation\": [0.0, 0.0, 0.661574364, 0.7498796], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.6234386, 0.5772686, 0.5316176], \"size\": [0.0785659254, 0.06574333, 0.057216]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 258, \"category\": \"Food\", \"class_name\": \"dishbowl\", \"prefab_name\": \"FMGP_PRE_Wooden_bowl_1024\", \"obj_transform\": {\"position\": [2.63, 0.513, 0.666], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.37713337, 1.37713337, 1.37713337]}, \"bounding_box\": {\"center\": [2.63, 0.556895435, 0.666], \"size\": [0.3566913, 0.08779088, 0.3566913]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 260, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [4.224, 0.486169219, 1.628], \"rotation\": [0.0, -0.275967658, 0.0, 0.961167], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.224, 0.501933, 1.628], \"size\": [0.0889671445, 0.03152771, 0.0889671743]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 261, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [2.249, 0.5171, 0.982], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.249, 0.5668835, 0.9978037], \"size\": [0.0899078548, 0.0995673, 0.121515974]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 262, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [2.61, 0.523, 1.149], \"rotation\": [1.75519881e-06, 0.244196847, 4.419951e-07, 0.969725668], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.61520624, 0.5453968, 1.14620173], \"size\": [0.367496341, 0.04543648, 0.393436819]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 263, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [-2.237, 0.57, 4.349], \"rotation\": [1.80544544e-06, -0.07085851, -1.28253546e-07, 0.9974864], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23114872, 0.5923968, 4.349837], \"size\": [0.290779352, 0.0454363, 0.3448482]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 264, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [-2.224, 1.127, 3.84], \"rotation\": [0.0, 0.1725636, 0.0, 0.9849984], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.21981478, 1.14386153, 3.83848786], \"size\": [0.256394327, 0.0342060961, 0.285199165]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 265, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [-2.182, 0.57, 5.431], \"rotation\": [1.7671689e-06, 0.216245547, 3.91403375e-07, 0.976339042], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.18045664, 0.6762633, 5.430281], \"size\": [0.136339039, 0.212528616, 0.175088838]}, \"properties\": [], \"states\": []}, {\"id\": 266, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [-2.268, 1.127, 5.4], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.26799965, 1.22431016, 5.4], \"size\": [0.278566, 0.19462195, 0.404684722]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 267, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"Book_19\", \"obj_transform\": {\"position\": [1.087, 0.621, 1.623], \"rotation\": [0.175595939, -0.175595984, -0.684956968, 0.684957], \"scale\": [2.0, 1.3, 1.2]}, \"bounding_box\": {\"center\": [1.08700025, 0.621, 1.62300014], \"size\": [0.370049, 0.06737769, 0.4085183]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 268, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"Book_20\", \"obj_transform\": {\"position\": [0.335, 1.495, 5.343], \"rotation\": [0.07373109, -0.07373112, -0.703252256, 0.703252256], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.3350002, 1.495, 5.343], \"size\": [0.2371167, 0.0336887836, 0.311353683]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 269, \"category\": \"Props\", \"class_name\": \"cellphone\", \"prefab_name\": \"Cellphone_1a\", \"obj_transform\": {\"position\": [3.264, 0.5244, 1.139], \"rotation\": [0.0, 0.3420201, 0.0, 0.9396927], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.264, 0.5244, 1.139], \"size\": [0.121546745, 0.014436841, 0.115137339]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 270, \"category\": \"Props\", \"class_name\": \"crackers\", \"prefab_name\": \"SMGP_PRE_Salt_crackers_1024\", \"obj_transform\": {\"position\": [4.314, 0.2806, -0.2831], \"rotation\": [0.0, 0.236865386, 0.0, 0.9715425], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [4.314, 0.316148072, -0.283100128], \"size\": [0.310014546, 0.0710961, 0.223797232]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 271, \"category\": \"Props\", \"class_name\": \"garbagecan\", \"prefab_name\": \"Garbage_can_8\", \"obj_transform\": {\"position\": [4.537, 0.008, 3.144], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.537, 0.218, 3.144], \"size\": [0.333000183, 0.419999957, 0.333000183]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 272, \"category\": \"Props\", \"class_name\": \"cellphone\", \"prefab_name\": \"Cellphone_11\", \"obj_transform\": {\"position\": [0.882621646, 1.2568, 2.74325562], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.882621646, 1.2568, 2.74325562], \"size\": [0.234999955, 0.008500099, 0.114999771]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 273, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"mH_MovingBoxClosed01\", \"obj_transform\": {\"position\": [2.655216, 1.358297, 5.58], \"rotation\": [0.0, 0.116714016, 0.0, 0.993165553], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.655216, 1.69299579, 5.58], \"size\": [1.30907154, 0.688897252, 1.040658]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 274, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"mH_MovingBoxClosed01\", \"obj_transform\": {\"position\": [4.103374, 1.358297, 5.618444], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.103374, 1.69299579, 5.618444], \"size\": [1.15645885, 0.688897252, 0.7941904]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 275, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"mH_MovingBoxClosed01\", \"obj_transform\": {\"position\": [4.10453, 0.679149, 5.51814], \"rotation\": [0.0, -0.0470542237, 0.0, 0.998892367], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.10453, 1.01384783, 5.51814], \"size\": [1.2259953, 0.6888974, 0.899385452]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 276, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"mH_MovingBoxClosed01\", \"obj_transform\": {\"position\": [2.705901, 0.679149, 5.587964], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.705901, 1.01384783, 5.587964], \"size\": [1.15645933, 0.6888974, 0.7941904]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 277, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"mH_MovingBoxClosed01\", \"obj_transform\": {\"position\": [4.065, 0.0, 5.542553], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.065, 0.334698826, 5.542553], \"size\": [1.15645885, 0.6888973, 0.7941904]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 278, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"mH_MovingBoxClosed01\", \"obj_transform\": {\"position\": [2.671919, 0.0, 5.612925], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.671919, 0.334698826, 5.612925], \"size\": [1.15645933, 0.6888973, 0.7941904]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 279, \"category\": \"Props\", \"class_name\": \"balanceball\", \"prefab_name\": \"mH_BalanceBall\", \"obj_transform\": {\"position\": [3.338, 0.0, 4.22975], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.338, 0.19816272, 4.22975], \"size\": [1.33201838, 0.396325439, 1.33201885]}, \"properties\": [], \"states\": []}, {\"id\": 280, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_06\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.000066, 1.50000024, 2.499999], \"size\": [0.113748126, 1.02450514, 2.11254787]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 281, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_06\", \"obj_transform\": {\"position\": [1.25, 0.0, -1.20000041], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.249999, 1.50000024, -1.20006609], \"size\": [2.112548, 1.02450514, 0.113748394]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 282, \"category\": \"Electronics\", \"class_name\": \"computer\", \"prefab_name\": \"PRE_ELE_CPU_case_01\", \"obj_transform\": {\"position\": [0.288, 0.955, 5.444], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.7, 0.7, 1.0]}, \"bounding_box\": {\"center\": [0.287998766, 1.21259308, 5.44049835], \"size\": [0.258682251, 0.515186965, 0.5221893]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\"], \"states\": [\"OFF\"]}, {\"id\": 283, \"category\": \"Electronics\", \"class_name\": \"cpuscreen\", \"prefab_name\": \"PRE_ELE_CPU_screen_02\", \"obj_transform\": {\"position\": [-0.661, 0.95, 5.698], \"rotation\": [0.0, 0.6195168, 0.0, 0.784983456], \"scale\": [1.0, 1.14016068, 1.3907187]}, \"bounding_box\": {\"center\": [-0.6527079, 1.33628929, 5.663287], \"size\": [1.32043409, 0.772581, 0.5802027]}, \"properties\": [], \"states\": []}, {\"id\": 284, \"category\": \"Electronics\", \"class_name\": \"keyboard\", \"prefab_name\": \"PRE_ELE_Keyboard_03\", \"obj_transform\": {\"position\": [-0.28, 0.955, 5.18], \"rotation\": [0.0, 0.557608366, 0.0, 0.8301042], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-0.279999852, 0.9795669, 5.18], \"size\": [0.738497555, 0.04913636, 0.4726031]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 285, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_03\", \"obj_transform\": {\"position\": [-2.45, 1.475, 1.7], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.447448, 1.475, 1.7], \"size\": [0.005105672, 0.0936371461, 0.06867787]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 286, \"category\": \"Electronics\", \"class_name\": \"mouse\", \"prefab_name\": \"PRE_ELE_Mouse_02\", \"obj_transform\": {\"position\": [-1.05, 0.9640684, 5.23], \"rotation\": [0.0, 0.847492039, 0.0, 0.530808151], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.04999983, 0.9841935, 5.23], \"size\": [0.174598247, 0.0402507074, 0.209400535]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 287, \"category\": \"Electronics\", \"class_name\": \"mousemat\", \"prefab_name\": \"PRE_ELE_Mouse_mat_01\", \"obj_transform\": {\"position\": [-1.054, 0.955, 5.229], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.05399954, 0.9585819, 5.22900152], \"size\": [0.436930478, 0.00716543244, 0.432462156]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 288, \"category\": \"Electronics\", \"class_name\": \"tv\", \"prefab_name\": \"PRE_ELE_TV_01\", \"obj_transform\": {\"position\": [4.379, 0.489, 0.809], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.37899971, 1.12771785, 0.809002638], \"size\": [0.365279466, 1.27743936, 1.71621156]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\", \"HAS_PLUG\"], \"states\": [\"OFF\"]}, {\"id\": 289, \"category\": \"Electronics\", \"class_name\": \"ceilingfan\", \"prefab_name\": \"CeilingFan\", \"obj_transform\": {\"position\": [1.25, 2.5, 2.5], \"rotation\": [-0.7071068, 0.0, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.5, 2.5], \"size\": [0.115446553, 0.0430572964, 0.116814621]}, \"properties\": [], \"states\": []}, {\"id\": 290, \"category\": \"Electronics\", \"class_name\": \"speaker\", \"prefab_name\": \"mH_TallSpeaker\", \"obj_transform\": {\"position\": [0.904, 0.0, 2.72533131], \"rotation\": [0.0, 0.851909041, 0.0, 0.523689747], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.9082617, 0.625, 2.72317481], \"size\": [0.5124372, 1.25, 0.5082269]}, \"properties\": [], \"states\": []}, {\"id\": 291, \"category\": \"Electronics\", \"class_name\": \"speaker\", \"prefab_name\": \"mH_TallSpeaker\", \"obj_transform\": {\"position\": [0.957, 0.0, -0.925], \"rotation\": [0.0, 0.5089126, 0.0, 0.8608182], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.9611848, 0.625, -0.9226978], \"size\": [0.5176867, 1.25, 0.5139215]}, \"properties\": [], \"states\": []}, {\"id\": 292, \"category\": \"Electronics\", \"class_name\": \"speaker\", \"prefab_name\": \"mH_TallSpeaker\", \"obj_transform\": {\"position\": [4.5, 0.0, -0.92], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.49522352, 0.625, -0.919999957], \"size\": [0.384552956, 1.25000024, 0.375000179]}, \"properties\": [], \"states\": []}, {\"id\": 293, \"category\": \"Electronics\", \"class_name\": \"speaker\", \"prefab_name\": \"mH_TallSpeaker\", \"obj_transform\": {\"position\": [4.382, 0.0, 1.99], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.37722349, 0.625, 1.99], \"size\": [0.384552956, 1.25000024, 0.375000119]}, \"properties\": [], \"states\": []}, {\"id\": 294, \"category\": \"Rooms\", \"class_name\": \"bedroom\", \"prefab_name\": \"PRE_ROO_Bedroom_02\", \"obj_transform\": {\"position\": [-11.25, 0.0, 6.228], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.75, 1.25, 6.22800064], \"size\": [8.0, 3.0, 5.5]}, \"properties\": [], \"states\": []}, {\"id\": 295, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_06\", \"obj_transform\": {\"position\": [-16.25, 0.0, 3.74299765], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.2499962, 1.029126, 3.7433548], \"size\": [0.928398132, 2.058256, 0.122323275]}, \"properties\": [], \"states\": []}, {\"id\": 296, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [-9.966001, 1.0, 4.548999], \"rotation\": [0.0, 0.8329211, 0.0, 0.553391755], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.0003567, 0.5, 4.97800446], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 297, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_02\", \"obj_transform\": {\"position\": [-10.0, 0.0, 4.97800064], \"rotation\": [0.0, 0.99999994, 0.0, -5.96046448e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.0003567, 1.029126, 4.97800446], \"size\": [0.122323036, 2.058256, 0.9283972]}, \"properties\": [], \"states\": []}, {\"id\": 298, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_01_03\", \"obj_transform\": {\"position\": [-13.75, 0.0, 3.7280004], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.7499952, 1.24999988, 3.75800157], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 299, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Window_02_01_03\", \"obj_transform\": {\"position\": [-13.75, 0.0, 8.728001], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.7500086, 1.24999344, 8.698002], \"size\": [2.5000174, 2.50002646, 0.0599973723]}, \"properties\": [], \"states\": []}, {\"id\": 300, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [-10.0, 0.0, 7.478], \"rotation\": [0.0, -1.0, 0.0, 8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.25, 1.25, 7.47799826], \"size\": [2.500005, 2.500009, 2.50000453]}, \"properties\": [], \"states\": []}, {\"id\": 301, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [-16.25, 0.0, 8.728001], \"rotation\": [0.0, -0.7071068, 0.0, -0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.2499981, 1.25, 7.47800064], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 302, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_corner_01_01_03\", \"obj_transform\": {\"position\": [-16.25, 0.0, 3.72800064], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.25, 1.2500093, 4.97798729], \"size\": [2.50000048, 2.50002766, 2.500045]}, \"properties\": [], \"states\": []}, {\"id\": 303, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_corner_01_01_03\", \"obj_transform\": {\"position\": [-10.0, 0.0, 4.978], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [0.9999999, 1.0, 0.9999999]}, \"bounding_box\": {\"center\": [-11.2499857, 1.2500093, 4.978001], \"size\": [2.500045, 2.50002766, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 304, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [-11.25, 0.0, 6.228], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.2500086, 2.50000024, 7.47800064], \"size\": [2.5, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 305, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [-11.25, 0.0, 3.7280004], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.2500086, 2.50000024, 4.97800064], \"size\": [2.5, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 306, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [-13.75, 0.0, 3.7280004], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.7500086, 2.50000024, 4.97800064], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 307, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [-13.75, 0.0, 6.22800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.7500086, 2.50000024, 7.47800064], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 308, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [-16.25, 0.0, 6.22800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.25001, 2.50000024, 7.47800064], \"size\": [2.500001, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 309, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [-16.25, 0.0, 3.72800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.25001, 2.50000024, 4.978001], \"size\": [2.500001, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 310, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [-11.25, 0.0, 6.228], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.25, 0.0, 7.47800064], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 311, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [-11.25, 0.0, 3.7280004], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.25, 0.0, 4.97800064], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 312, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [-13.75, 0.0, 3.7280004], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.75, 0.0, 4.97800064], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 313, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [-13.75, 0.0, 6.22800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.75, 0.0, 7.47800064], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 314, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [-16.25, 0.0, 6.22800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.25, 0.0, 7.47800064], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 315, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [-16.25, 0.0, 3.72800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.25, 0.0, 4.978001], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 316, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_08\", \"obj_transform\": {\"position\": [-17.187, 0.0, 5.2930007], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.5, 1.0, 0.72]}, \"bounding_box\": {\"center\": [-17.187, 1.108, 5.2930007], \"size\": [0.4800006, 2.216, 1.52208]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 317, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_CPU_chair_03_01\", \"obj_transform\": {\"position\": [-12.241, 0.0, 6.755], \"rotation\": [0.0, 0.8695935, 0.0, 0.4937683], \"scale\": [1.1659534, 1.0, 1.13576734]}, \"bounding_box\": {\"center\": [-12.2332335, 0.781, 6.76801634], \"size\": [0.2346702, 1.3277, 1.00095165]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 318, \"category\": \"Furniture\", \"class_name\": \"closet\", \"prefab_name\": \"PRE_FUR_Closet_01_01\", \"obj_transform\": {\"position\": [-17.07, 0.0, 7.43800068], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.0629711, 0.99999994, 7.437994], \"size\": [0.508942842, 2.00000715, 2.00012684]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 319, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_03\", \"obj_transform\": {\"position\": [-17.075, 1.623, 8.147001], \"rotation\": [0.0, 0.487473249, 0.0, 0.873138], \"scale\": [0.795059264, 0.7950597, 0.7950597]}, \"bounding_box\": {\"center\": [-17.074295, 1.70896077, 8.147436], \"size\": [0.324188232, 0.191701889, 0.206150055]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 320, \"category\": \"Furniture\", \"class_name\": \"clothesshirt\", \"prefab_name\": \"PRE_PRO_Shirt_06\", \"obj_transform\": {\"position\": [-17.075, 1.623, 8.147001], \"rotation\": [0.0, 0.487473249, 0.0, 0.873138], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.0749645, 1.37760139, 8.146945], \"size\": [0.409328461, 0.6388855, 0.2700081]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 321, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_04\", \"obj_transform\": {\"position\": [-17.0749817, 1.623, 8.030008], \"rotation\": [0.0, 0.6226917, 0.0, 0.782467365], \"scale\": [0.795059562, 0.7950597, 0.79506]}, \"bounding_box\": {\"center\": [-17.074173, 1.70896077, 8.030195], \"size\": [0.366611481, 0.191701889, 0.095500946]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 322, \"category\": \"Furniture\", \"class_name\": \"clothesshirt\", \"prefab_name\": \"PRE_PRO_Shirt_06\", \"obj_transform\": {\"position\": [-17.0749817, 1.623, 8.030008], \"rotation\": [0.0, 0.6226917, 0.0, 0.782467365], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.0749645, 1.37760139, 8.029943], \"size\": [0.455966949, 0.638885736, 0.135974884]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 323, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_05\", \"obj_transform\": {\"position\": [-17.075, 1.623, 7.88900042], \"rotation\": [0.0, 0.6226917, 0.0, 0.782467365], \"scale\": [0.7950597, 0.7950597, 0.7950602]}, \"bounding_box\": {\"center\": [-17.074192, 1.70896077, 7.88918638], \"size\": [0.366611481, 0.191701889, 0.095500946]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 324, \"category\": \"Furniture\", \"class_name\": \"clothespants\", \"prefab_name\": \"PRE_PRO_Pants_05\", \"obj_transform\": {\"position\": [-17.075, 1.623, 7.88900042], \"rotation\": [0.0, 0.6226917, 0.0, 0.782467365], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.0750618, 1.39036894, 7.88926649], \"size\": [0.236698151, 0.4869871, 0.08578682]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 325, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"Desk_1\", \"obj_transform\": {\"position\": [-10.48, 0.0, 6.998], \"rotation\": [0.50000006, 0.49999997, 0.49999997, -0.50000006], \"scale\": [1.2, 1.3, 1.3]}, \"bounding_box\": {\"center\": [-10.48, 0.481000036, 6.998], \"size\": [0.9100002, 0.961999953, 1.92000031]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 326, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"Desk_2\", \"obj_transform\": {\"position\": [-11.229, 0.0, 8.323999], \"rotation\": [-0.49999997, 0.5000001, 0.49999997, 0.49999994], \"scale\": [0.8283346, 1.58060932, 1.32]}, \"bounding_box\": {\"center\": [-11.229, 0.47652, 8.323999], \"size\": [2.24130344, 0.953040242, 0.710711]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 327, \"category\": \"Furniture\", \"class_name\": \"coffeetable\", \"prefab_name\": \"CoffeeTable_2\", \"obj_transform\": {\"position\": [-14.6582775, 0.0, 5.87456131], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-14.65838, 0.18884708, 5.87430334], \"size\": [1.40748966, 0.411176175, 0.9834091]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 328, \"category\": \"Furniture\", \"class_name\": \"cabinet\", \"prefab_name\": \"Cabinet_1\", \"obj_transform\": {\"position\": [-10.915, 0.0, 4.012], \"rotation\": [-0.707106769, 0.0, 0.0, 0.707106769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.915, 0.525, 4.012001], \"size\": [1.18000007, 1.05, 0.379999876]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 329, \"category\": \"Furniture\", \"class_name\": \"bed\", \"prefab_name\": \"Bed_2\", \"obj_transform\": {\"position\": [-14.683, 0.0, 8.004001], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-14.6829987, 0.27, 8.004001], \"size\": [1.78499985, 0.3315, 0.9944999]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\"], \"states\": []}, {\"id\": 330, \"category\": \"Food\", \"class_name\": \"sundae\", \"prefab_name\": \"DHP_PRE_Sundae_1024\", \"obj_transform\": {\"position\": [-10.827, 0.961935639, 6.27], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.299999833, 0.3, 0.299999833]}, \"bounding_box\": {\"center\": [-10.8094215, 1.086261, 6.27], \"size\": [0.1208087, 0.248650819, 0.08554673]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 333, \"category\": \"Food\", \"class_name\": \"juice\", \"prefab_name\": \"SMGP_PRE_Juice_1024\", \"obj_transform\": {\"position\": [-11.583, 0.9527102, 8.07], \"rotation\": [0.0, 0.906234562, 0.0, 0.422775269], \"scale\": [0.399999738, 0.4, 0.399999738]}, \"bounding_box\": {\"center\": [-11.5833054, 1.15574908, 8.069636], \"size\": [0.177776009, 0.4060781, 0.177978665]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 334, \"category\": \"Food\", \"class_name\": \"candybar\", \"prefab_name\": \"SMGP_PRE_Candy_bar_1024\", \"obj_transform\": {\"position\": [-14.2439995, 0.397, 5.84], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.286820948, 0.2868212, 0.286821]}, \"bounding_box\": {\"center\": [-14.2439995, 0.413081229, 5.84], \"size\": [0.0610240065, 0.03216298, 0.201715991]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 335, \"category\": \"Food\", \"class_name\": \"wine\", \"prefab_name\": \"Wine_2\", \"obj_transform\": {\"position\": [-14.9715843, 0.6142, 5.786735], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-14.9715843, 0.6142, 5.786735], \"size\": [0.11009407, 0.4328475, 0.11009407]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 336, \"category\": \"Electronics\", \"class_name\": \"computer\", \"prefab_name\": \"PRE_ELE_CPU_case_01\", \"obj_transform\": {\"position\": [-10.563, 0.221, 6.344], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [0.9031714, 0.863190651, 1.17851579]}, \"bounding_box\": {\"center\": [-10.5675173, 0.538645744, 6.34400129], \"size\": [0.6737522, 0.6352923, 0.304861158]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\"], \"states\": [\"OFF\"]}, {\"id\": 337, \"category\": \"Electronics\", \"class_name\": \"cpuscreen\", \"prefab_name\": \"PRE_ELE_CPU_screen_02\", \"obj_transform\": {\"position\": [-10.439, 0.965, 8.142], \"rotation\": [0.0, 0.986579061, 0.0, 0.163284421], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.4727869, 1.30380249, 8.130503], \"size\": [0.5717747, 0.6776071, 0.970181942]}, \"properties\": [], \"states\": []}, {\"id\": 338, \"category\": \"Electronics\", \"class_name\": \"cpuscreen\", \"prefab_name\": \"PRE_ELE_CPU_screen_02\", \"obj_transform\": {\"position\": [-10.484, 0.965, 6.195], \"rotation\": [0.0, 0.9775429, 0.0, -0.2107366], \"scale\": [0.999999762, 1.0, 0.999999762]}, \"bounding_box\": {\"center\": [-10.5165186, 1.30380249, 6.209706], \"size\": [0.644758344, 0.6776071, 0.9632158]}, \"properties\": [], \"states\": []}, {\"id\": 339, \"category\": \"Electronics\", \"class_name\": \"cpuscreen\", \"prefab_name\": \"PRE_ELE_CPU_screen_02\", \"obj_transform\": {\"position\": [-10.28, 0.965, 7.156], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [0.999999762, 1.0, 0.999999762]}, \"bounding_box\": {\"center\": [-10.3156891, 1.30380249, 7.15600157], \"size\": [0.288628161, 0.6776071, 0.926599562]}, \"properties\": [], \"states\": []}, {\"id\": 340, \"category\": \"Electronics\", \"class_name\": \"keyboard\", \"prefab_name\": \"PRE_ELE_Keyboard_05\", \"obj_transform\": {\"position\": [-10.713, 0.95, 7.02], \"rotation\": [0.0, 0.99803406, 0.0, 0.06267372], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.713, 0.9745669, 7.02], \"size\": [0.308366239, 0.04913636, 0.729370236]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 341, \"category\": \"Electronics\", \"class_name\": \"mousemat\", \"prefab_name\": \"PRE_ELE_Mouse_mat_05\", \"obj_transform\": {\"position\": [-10.69, 0.977, 7.694], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.6899986, 0.980581939, 7.693999], \"size\": [0.4324622, 0.00716543244, 0.4369305]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 342, \"category\": \"Electronics\", \"class_name\": \"mouse\", \"prefab_name\": \"PRE_ELE_Mouse_01\", \"obj_transform\": {\"position\": [-10.75, 0.987, 7.691], \"rotation\": [0.0, 0.9929643, 0.0, -0.118414253], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.75, 1.00712514, 7.691], \"size\": [0.201129735, 0.0402507074, 0.14577423]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 343, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_01\", \"obj_transform\": {\"position\": [-10.0478, 0.151, 5.54310036], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.0558319, 0.151, 5.54310036], \"size\": [0.0160641018, 0.154280722, 0.0908234343]}, \"properties\": [], \"states\": []}, {\"id\": 344, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_03\", \"obj_transform\": {\"position\": [-10.05, 1.128, 5.638], \"rotation\": [0.0, 1.0, 0.0, -1.78813934e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.0525522, 1.128, 5.638], \"size\": [0.005105688, 0.0936371461, 0.068677865]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 345, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_01\", \"obj_transform\": {\"position\": [-10.048, 0.151, 7.041], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.0560322, 0.151, 7.041], \"size\": [0.0160641018, 0.154280722, 0.0908234343]}, \"properties\": [], \"states\": []}, {\"id\": 346, \"category\": \"Electronics\", \"class_name\": \"speaker\", \"prefab_name\": \"Speaker\", \"obj_transform\": {\"position\": [-17.036, 1.857, 5.841], \"rotation\": [1.52426836e-08, 0.7166589, 1.56630762e-08, 0.6974239], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.0330734, 1.90455437, 5.841373], \"size\": [0.435310364, 0.466902852, 0.3041172]}, \"properties\": [], \"states\": []}, {\"id\": 347, \"category\": \"Electronics\", \"class_name\": \"amplifier\", \"prefab_name\": \"Amplifier\", \"obj_transform\": {\"position\": [-13.17, 0.0, 4.06000042], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.17, 0.5659417, 4.059938], \"size\": [0.9321502, 1.12656164, 0.4773721]}, \"properties\": [], \"states\": []}, {\"id\": 348, \"category\": \"Electronics\", \"class_name\": \"speaker\", \"prefab_name\": \"Speaker\", \"obj_transform\": {\"position\": [-17.0659981, 1.857, 4.73800039], \"rotation\": [1.52426836e-08, 0.7166589, 1.56630762e-08, 0.6974239], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.0630722, 1.90455437, 4.73837328], \"size\": [0.435310364, 0.466902852, 0.3041172]}, \"properties\": [], \"states\": []}, {\"id\": 349, \"category\": \"Electronics\", \"class_name\": \"radio\", \"prefab_name\": \"Radio_1\", \"obj_transform\": {\"position\": [-16.9909973, 1.166, 5.114], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-16.9909973, 1.259871, 5.114], \"size\": [0.182548523, 0.18869257, 0.3050003]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"CAN_OPEN\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 350, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_08\", \"obj_transform\": {\"position\": [-11.287, 0.0, 7.36400032], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.5, 1.0, 1.5]}, \"bounding_box\": {\"center\": [-11.287, 0.0069701, 7.36400032], \"size\": [2.54964638, 0.0139463525, 2.54964638]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 351, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_06\", \"obj_transform\": {\"position\": [-13.2059994, 1.438, 8.678], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.2059994, 1.438, 8.656889], \"size\": [0.9584053, 1.25342965, 0.0422532558]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 352, \"category\": \"Decor\", \"class_name\": \"orchid\", \"prefab_name\": \"PRE_DEC_Orchid_01\", \"obj_transform\": {\"position\": [-11.927, 0.959, 8.45], \"rotation\": [0.0, 0.865909457, 0.0, 0.500200868], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.927001, 1.05599213, 8.45], \"size\": [0.2402935, 0.193984866, 0.2402935]}, \"properties\": [], \"states\": []}, {\"id\": 353, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_15\", \"obj_transform\": {\"position\": [-15.4559994, 0.471, 7.95100069], \"rotation\": [0.0, 0.9997768, 0.0, -0.0211298764], \"scale\": [0.674436569, 0.674436569, 0.674436569]}, \"bounding_box\": {\"center\": [-15.47082, 0.539301336, 7.95383644], \"size\": [0.4678892, 0.136602774, 0.5455818]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 354, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [-11.793, 1.745, 3.79600048], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.7929993, 1.74500012, 3.81686068], \"size\": [0.955631256, 1.25704336, 0.041721344]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 355, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [-14.6170006, 1.745, 3.796001], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [0.999999762, 1.0, 0.999999762]}, \"bounding_box\": {\"center\": [-14.6169987, 1.74500012, 3.81686115], \"size\": [0.955631256, 1.25704336, 0.041721344]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 356, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_06\", \"obj_transform\": {\"position\": [-13.75, 0.0, 8.654], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.7498817, 2.05488563, 8.644561], \"size\": [2.3280108, 0.0333948135, 0.0259935856]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 357, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_02\", \"obj_transform\": {\"position\": [-14.531, 0.003, 8.645], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-14.53701, 1.49454832, 8.616011], \"size\": [0.5931854, 1.15232611, 0.107337952]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 358, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_01\", \"obj_transform\": {\"position\": [-12.98, 0.003, 8.648001], \"rotation\": [0.0, 0.7071069, 0.0, 0.70710665], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-12.9739971, 1.49454844, 8.619009], \"size\": [0.5931854, 1.15232587, 0.107337952]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 359, \"category\": \"Decor\", \"class_name\": \"guitar\", \"prefab_name\": \"Guitar1\", \"obj_transform\": {\"position\": [-12.488, 0.003, 4.07300043], \"rotation\": [-0.0714722946, 0.719165266, 0.0748085156, 0.68709296], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-12.5776291, 0.431010485, 4.07710934], \"size\": [0.264242947, 0.8374827, 0.272667557]}, \"properties\": [], \"states\": []}, {\"id\": 360, \"category\": \"Props\", \"class_name\": \"garbagecan\", \"prefab_name\": \"Garbage_can_2\", \"obj_transform\": {\"position\": [-12.372, 0.0, 8.287001], \"rotation\": [0.0, 0.633455455, 0.0, 0.7737792], \"scale\": [1.35000026, 1.35, 1.35000026]}, \"bounding_box\": {\"center\": [-12.3856382, 0.243000016, 8.353182], \"size\": [0.320427924, 0.486000031, 0.3707691]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 361, \"category\": \"Props\", \"class_name\": \"perfume\", \"prefab_name\": \"PRE_PRO_Perfume_01\", \"obj_transform\": {\"position\": [-10.948, 0.9527103, 8.437], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.948, 1.029133, 8.437], \"size\": [0.05325371, 0.152845576, 0.05325371]}, \"properties\": [], \"states\": []}, {\"id\": 362, \"category\": \"Props\", \"class_name\": \"slippers\", \"prefab_name\": \"PRE_PRO_Slippers_01_05\", \"obj_transform\": {\"position\": [-17.1206932, 0.05593574, 5.766], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.129879, 0.09184265, 5.85379267], \"size\": [0.368450165, 0.07181433, 0.321500778]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 363, \"category\": \"Props\", \"class_name\": \"slippers\", \"prefab_name\": \"PRE_PRO_Slippers_01_04\", \"obj_transform\": {\"position\": [-17.1423264, 0.0559357181, 5.386692], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.1515121, 0.09184264, 5.474485], \"size\": [0.368450165, 0.07181433, 0.321500778]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 364, \"category\": \"Props\", \"class_name\": \"glasses\", \"prefab_name\": \"mH_Sunglasses\", \"obj_transform\": {\"position\": [-17.0649986, 1.156, 4.808001], \"rotation\": [0.0, 0.69141227, 0.0, 0.722460449], \"scale\": [0.85, 0.85, 0.85]}, \"bounding_box\": {\"center\": [-17.0649986, 1.156, 4.808001], \"size\": [0.121418, 0.0422956944, 0.120326996]}, \"properties\": [\"GRABBABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 365, \"category\": \"Props\", \"class_name\": \"slippers\", \"prefab_name\": \"PRE_PRO_Slippers_01_02\", \"obj_transform\": {\"position\": [-17.1322212, 0.055935666, 5.01400042], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.141407, 0.09184258, 5.10179329], \"size\": [0.368450165, 0.07181433, 0.321500778]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 366, \"category\": \"Props\", \"class_name\": \"slippers\", \"prefab_name\": \"PRE_PRO_Slippers_01_01\", \"obj_transform\": {\"position\": [-17.1460876, 0.05593556, 4.65000057], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-17.1552734, 0.09184247, 4.73779345], \"size\": [0.368450165, 0.07181433, 0.321500778]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CLOTHES\", \"MOVABLE\"], \"states\": []}, {\"id\": 368, \"category\": \"Props\", \"class_name\": \"longboard\", \"prefab_name\": \"mH_Longboard01\", \"obj_transform\": {\"position\": [-14.95, 0.0, 4.0739994], \"rotation\": [0.0, 0.722768247, 0.0, 0.6910905], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-14.9499979, 0.07589266, 4.074], \"size\": [2.0161345, 0.1513789, 0.489018381]}, \"properties\": [], \"states\": []}, {\"id\": 369, \"category\": \"Props\", \"class_name\": \"boardgame\", \"prefab_name\": \"Boardgame_2\", \"obj_transform\": {\"position\": [-14.61, 0.3943109, 5.87400055], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-14.6112986, 0.398560882, 5.87510061], \"size\": [0.34, 0.0085, 0.339999974]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"LOOKABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 370, \"category\": \"Props\", \"class_name\": \"game\", \"prefab_name\": \"mH_Abacus\", \"obj_transform\": {\"position\": [-10.9129629, 1.053, 4.10638332], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [0.7, 0.7, 0.7]}, \"bounding_box\": {\"center\": [-10.9129629, 1.17677593, 4.10638428], \"size\": [0.2714634, 0.247551918, 0.08363438]}, \"properties\": [], \"states\": []}, {\"id\": 371, \"category\": \"Props\", \"class_name\": \"sportsball\", \"prefab_name\": \"mH_Baseball\", \"obj_transform\": {\"position\": [-17.13299, 1.1712, 4.69929171], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [0.7, 0.7, 0.7]}, \"bounding_box\": {\"center\": [-17.1329861, 1.1712, 4.69929266], \"size\": [0.09152248, 0.0955105945, 0.09272738]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 374, \"category\": \"Props\", \"class_name\": \"magazine\", \"prefab_name\": \"Magazine_4\", \"obj_transform\": {\"position\": [-13.447999, 1.12922227, 4.07457972], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.447998, 1.13422227, 4.07458067], \"size\": [0.209999084, 0.00999999, 0.279999733]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"COVER_OBJECT\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 375, \"category\": \"Props\", \"class_name\": \"toy\", \"prefab_name\": \"Toy_2b\", \"obj_transform\": {\"position\": [-17.096199, 1.12658954, 5.4793], \"rotation\": [0.0, 0.7051446, 0.0, 0.7090636], \"scale\": [1.40000057, 1.5, 1.40000057]}, \"bounding_box\": {\"center\": [-17.0853386, 1.25506639, 5.47936], \"size\": [0.174640656, 0.256345034, 0.248718262]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 376, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_01_02\", \"obj_transform\": {\"position\": [-11.75, 0.0, 6.228], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-11.75, 2.24272943, 6.228], \"size\": [0.326046, 0.515477061, 0.301177979]}, \"properties\": [], \"states\": []}, {\"id\": 377, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_01_02\", \"obj_transform\": {\"position\": [-13.75, 0.0, 6.22800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.75, 2.24272943, 6.22800064], \"size\": [0.326046, 0.515477061, 0.301177979]}, \"properties\": [], \"states\": []}, {\"id\": 378, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_01_02\", \"obj_transform\": {\"position\": [-15.8499994, 0.0, 6.22800064], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-15.8499985, 2.24272943, 6.22800064], \"size\": [0.326046, 0.515477061, 0.301177979]}, \"properties\": [], \"states\": []}, {\"id\": 379, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_06\", \"obj_transform\": {\"position\": [-13.75, 0.0, 8.728001], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-13.750001, 1.50000024, 8.727935], \"size\": [2.11254764, 1.02450514, 0.113748372]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 380, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [-2.7699883465231636, 1.94440949, 0.37796928901532184], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-2.7699876265231635, 2.14682078, 0.37796928901532184], \"size\": [0.157756522, 0.410641223, 0.271924824]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 381, \"category\": \"PRE_PRO_Condiment_01\", \"class_name\": \"condimentbottle\", \"prefab_name\": \"PRE_PRO_Condiment_01\", \"obj_transform\": {\"position\": [-2.781473413178348, 2.17349982, 0.979289418231911], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.781473133178348, 2.27539039, 0.979289418231911], \"size\": [0.0603273846, 0.203781426, 0.06032683]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 382, \"category\": \"PRE_PRO_Plate_01\", \"class_name\": \"plate\", \"prefab_name\": \"PRE_PRO_Plate_01\", \"obj_transform\": {\"position\": [-8.783597498992972, 0.7096026, -0.9274545598486046], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-8.783597498992972, 0.719213963, -0.9274545598486046], \"size\": [0.290419757, 0.0192230251, 0.290419757]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 383, \"category\": \"PRE_PRO_Wine_glass_01 1\", \"class_name\": \"wineglass\", \"prefab_name\": \"PRE_PRO_Wine_glass_01 1\", \"obj_transform\": {\"position\": [-5.925805220066203, 0.9820001, 2.517804370972409], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.925804800066203, 1.077105, 2.517804370972409], \"size\": [0.089546375, 0.190210134, 0.08954637]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 384, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [-6.142448222095, 0.9820001, 2.4732319619775174], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.142448222095, 1.03372312, 2.4732319619775174], \"size\": [0.05739681, 0.103446111, 0.0497071072]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 385, \"category\": \"SMGP_PRE_Salmon_1024\", \"class_name\": \"salmon\", \"prefab_name\": \"SMGP_PRE_Salmon_1024\", \"obj_transform\": {\"position\": [-6.921923566777544, 0.519639432, 5.710352437435026], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-6.921922936777544, 0.543682456, 5.710352437435026], \"size\": [0.248155192, 0.0480879024, 0.148635015]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 386, \"category\": \"PRE_PRO_Wine_glass_01 1\", \"class_name\": \"wineglass\", \"prefab_name\": \"PRE_PRO_Wine_glass_01 1\", \"obj_transform\": {\"position\": [-6.008977763890573, 0.9820001, 2.4622793656600495], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.008977443890573, 1.077105, 2.4622793656600495], \"size\": [0.089546375, 0.190210134, 0.08954637]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 387, \"category\": \"DHP_PRE_Pudding_1024\", \"class_name\": \"pudding\", \"prefab_name\": \"DHP_PRE_Pudding_1024\", \"obj_transform\": {\"position\": [-9.502310390682062, 0.968024969, 2.7308146787553076], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-9.502310390682062, 1.00080621, 2.7308144387553073], \"size\": [0.132924, 0.0655626, 0.126299411]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 388, \"category\": \"PRE_PRO_Water_glass_01\", \"class_name\": \"waterglass\", \"prefab_name\": \"PRE_PRO_Water_glass_01\", \"obj_transform\": {\"position\": [-5.7947004389204375, 0.9820001, 2.542421118154313], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.794699928920438, 1.04372513, 2.542421118154313], \"size\": [0.08951233, 0.123450167, 0.08951233]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 389, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [-6.816009295357058, 0.519638658, 5.803651176265794], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-6.816009295357058, 0.5713616, 5.803651176265794], \"size\": [0.05739681, 0.103446111, 0.0497071072]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 390, \"category\": \"PRE_PRO_Plate_01\", \"class_name\": \"plate\", \"prefab_name\": \"PRE_PRO_Plate_01\", \"obj_transform\": {\"position\": [-9.527225366924682, 0.9680251, 2.693558337400421], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-9.527225366924682, 0.977636456, 2.6935580974004205], \"size\": [0.290419757, 0.0192230251, 0.290419757]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 391, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [-5.779095510917532, 0.982, 2.5924685122438396], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.779095510917532, 1.03493047, 2.5924685122438396], \"size\": [0.104654007, 0.105861, 0.104654007]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 392, \"category\": \"PRE_PRO_Wine_glass_01 1\", \"class_name\": \"wineglass\", \"prefab_name\": \"PRE_PRO_Wine_glass_01 1\", \"obj_transform\": {\"position\": [-5.898209047744761, 0.9820001, 2.4239053336981895], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-5.898208647744761, 1.077105, 2.4239053336981895], \"size\": [0.089546375, 0.190210134, 0.08954637]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 393, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [-9.374619698354213, 0.96802485, 2.862516802229406], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-9.374619698354213, 1.02095532, 2.8625165622294055], \"size\": [0.104654007, 0.105861, 0.104654007]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 394, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [-2.7541272834339936, 2.17349982, 0.9883838413070979], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.7541272834339936, 2.22522283, 0.9883838413070979], \"size\": [0.05739681, 0.103446111, 0.0497071072]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 395, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [-9.517730793484882, 0.967818856, 1.426202222698744], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-9.517730793484882, 1.03247285, 1.426202222698744], \"size\": [0.118259713, 0.128895909, 0.118259408]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 396, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [0.9375802684613793, 0.437909484, 0.8888590166709374], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [0.9375802684613793, 0.640320659, 0.8888585166709374], \"size\": [0.271924824, 0.410641223, 0.1577565]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 397, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [0.9452934511331579, 0.434831321, 0.99138605726951], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.945509593133158, 0.452500075, 0.9914236072695101], \"size\": [0.202, 0.035, 0.082]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 398, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [0.8453394807754413, 0.434793949, 0.6899895702770695], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [0.8453394807754413, 0.499448, 0.6899893702770695], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 399, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [-10.989571041577442, 0.520970166, 4.066104487186873], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-10.989571041577442, 0.723381341, 4.066104487186873], \"size\": [0.157756522, 0.410641223, 0.271924824]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 400, \"category\": \"PRE_PRO_Condiment_01\", \"class_name\": \"condimentbottle\", \"prefab_name\": \"PRE_PRO_Condiment_01\", \"obj_transform\": {\"position\": [-10.98763923605551, 0.774606645, 3.9657643131508657], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-10.98763923605551, 0.876497269, 3.9657643131508657], \"size\": [0.0603273846, 0.203781426, 0.06032683]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}], \"edges\": [{\"from_id\": 12, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 13, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 14, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 15, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 16, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 17, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 18, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 19, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 20, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 21, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 22, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 23, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 24, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 25, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 26, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 27, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 28, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 29, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 30, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 31, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 32, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 34, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 35, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 36, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 37, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 38, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 39, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 40, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 41, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 42, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 43, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 44, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 45, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 46, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 47, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 48, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 49, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 50, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 51, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 52, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 53, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 54, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 55, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 380, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 381, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 382, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 383, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 384, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 385, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 386, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 387, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 388, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 389, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 390, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 391, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 392, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 393, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 394, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 395, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 57, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 58, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 59, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 60, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 61, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 62, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 63, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 64, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 65, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 66, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 67, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 68, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 69, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 70, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 71, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 72, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 73, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 74, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 75, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 76, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 77, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 78, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 79, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 80, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 81, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 82, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 83, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 84, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 85, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 86, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 87, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 88, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 89, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 90, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 91, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 92, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 93, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 94, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 95, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 96, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 97, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 98, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 103, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 108, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 109, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 110, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 111, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 112, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 113, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 114, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 115, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 116, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 117, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 118, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 119, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 120, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 121, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 122, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 123, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 124, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 125, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 126, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 127, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 128, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 129, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 130, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 131, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 132, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 133, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 134, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 135, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 136, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 137, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 138, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 139, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 140, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 141, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 142, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 143, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 144, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 145, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 146, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 147, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 148, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 149, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 150, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 151, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 152, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 153, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 154, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 155, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 156, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 157, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 158, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 159, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 160, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 161, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 162, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 163, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 164, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 165, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 166, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 167, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 169, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 170, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 171, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 172, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 173, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 174, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 176, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 188, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 189, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 190, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 193, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 194, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 195, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 196, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 197, \"to_id\": 56, \"relation_type\": \"INSIDE\"}, {\"from_id\": 396, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 397, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 398, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 199, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 200, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 201, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 202, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 203, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 204, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 205, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 206, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 207, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 208, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 209, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 210, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 211, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 212, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 213, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 214, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 215, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 216, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 217, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 218, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 219, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 220, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 221, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 222, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 223, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 224, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 225, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 226, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 227, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 228, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 229, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 230, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 231, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 232, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 233, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 234, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 235, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 236, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 237, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 238, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 239, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 240, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 241, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 242, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 243, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 244, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 245, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 246, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 247, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 248, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 249, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 252, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 253, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 254, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 255, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 256, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 257, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 258, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 260, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 261, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 262, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 263, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 264, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 265, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 266, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 267, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 268, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 269, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 270, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 271, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 272, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 273, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 274, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 275, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 276, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 277, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 278, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 279, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 280, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 281, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 282, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 283, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 284, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 285, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 286, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 287, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 288, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 289, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 290, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 291, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 292, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 293, \"to_id\": 198, \"relation_type\": \"INSIDE\"}, {\"from_id\": 399, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 400, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 295, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 296, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 297, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 298, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 299, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 300, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 301, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 302, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 303, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 304, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 305, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 306, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 307, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 308, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 309, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 310, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 311, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 312, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 313, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 314, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 315, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 316, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 317, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 318, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 319, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 320, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 321, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 322, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 323, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 324, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 325, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 326, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 327, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 328, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 329, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 330, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 333, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 334, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 335, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 336, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 337, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 338, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 339, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 340, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 341, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 342, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 343, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 344, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 345, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 346, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 347, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 348, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 349, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 350, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 351, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 352, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 353, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 354, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 355, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 356, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 357, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 358, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 359, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 360, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 361, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 362, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 363, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 364, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 365, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 366, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 368, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 369, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 370, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 371, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 374, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 375, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 376, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 377, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 378, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 379, \"to_id\": 294, \"relation_type\": \"INSIDE\"}, {\"from_id\": 25, \"to_id\": 14, \"relation_type\": \"ON\"}, {\"from_id\": 28, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 29, \"to_id\": 20, \"relation_type\": \"ON\"}, {\"from_id\": 32, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 34, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 35, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 36, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 37, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 38, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 42, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 43, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 44, \"to_id\": 26, \"relation_type\": \"ON\"}, {\"from_id\": 47, \"to_id\": 20, \"relation_type\": \"ON\"}, {\"from_id\": 55, \"to_id\": 22, \"relation_type\": \"ON\"}, {\"from_id\": 83, \"to_id\": 227, \"relation_type\": \"ON\"}, {\"from_id\": 89, \"to_id\": 76, \"relation_type\": \"ON\"}, {\"from_id\": 90, \"to_id\": 157, \"relation_type\": \"ON\"}, {\"from_id\": 91, \"to_id\": 157, \"relation_type\": \"ON\"}, {\"from_id\": 92, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 93, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 94, \"to_id\": 96, \"relation_type\": \"ON\"}, {\"from_id\": 94, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 94, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 95, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 95, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 96, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 96, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 97, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 98, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 103, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 108, \"to_id\": 57, \"relation_type\": \"ON\"}, {\"from_id\": 110, \"to_id\": 152, \"relation_type\": \"ON\"}, {\"from_id\": 111, \"to_id\": 152, \"relation_type\": \"ON\"}, {\"from_id\": 112, \"to_id\": 60, \"relation_type\": \"ON\"}, {\"from_id\": 113, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 114, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 120, \"to_id\": 266, \"relation_type\": \"ON\"}, {\"from_id\": 123, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 124, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 125, \"to_id\": 152, \"relation_type\": \"ON\"}, {\"from_id\": 127, \"to_id\": 152, \"relation_type\": \"ON\"}, {\"from_id\": 128, \"to_id\": 152, \"relation_type\": \"ON\"}, {\"from_id\": 130, \"to_id\": 61, \"relation_type\": \"ON\"}, {\"from_id\": 132, \"to_id\": 62, \"relation_type\": \"ON\"}, {\"from_id\": 136, \"to_id\": 78, \"relation_type\": \"ON\"}, {\"from_id\": 139, \"to_id\": 78, \"relation_type\": \"ON\"}, {\"from_id\": 143, \"to_id\": 142, \"relation_type\": \"ON\"}, {\"from_id\": 144, \"to_id\": 145, \"relation_type\": \"ON\"}, {\"from_id\": 146, \"to_id\": 148, \"relation_type\": \"ON\"}, {\"from_id\": 146, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 148, \"to_id\": 147, \"relation_type\": \"ON\"}, {\"from_id\": 150, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 151, \"to_id\": 59, \"relation_type\": \"ON\"}, {\"from_id\": 152, \"to_id\": 57, \"relation_type\": \"ON\"}, {\"from_id\": 155, \"to_id\": 63, \"relation_type\": \"ON\"}, {\"from_id\": 160, \"to_id\": 159, \"relation_type\": \"ON\"}, {\"from_id\": 161, \"to_id\": 159, \"relation_type\": \"ON\"}, {\"from_id\": 162, \"to_id\": 159, \"relation_type\": \"ON\"}, {\"from_id\": 163, \"to_id\": 162, \"relation_type\": \"ON\"}, {\"from_id\": 164, \"to_id\": 162, \"relation_type\": \"ON\"}, {\"from_id\": 165, \"to_id\": 64, \"relation_type\": \"ON\"}, {\"from_id\": 166, \"to_id\": 64, \"relation_type\": \"ON\"}, {\"from_id\": 167, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 173, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 174, \"to_id\": 141, \"relation_type\": \"ON\"}, {\"from_id\": 176, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 188, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 194, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 195, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 196, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 197, \"to_id\": 152, \"relation_type\": \"ON\"}, {\"from_id\": 239, \"to_id\": 240, \"relation_type\": \"ON\"}, {\"from_id\": 243, \"to_id\": 206, \"relation_type\": \"ON\"}, {\"from_id\": 244, \"to_id\": 205, \"relation_type\": \"ON\"}, {\"from_id\": 246, \"to_id\": 205, \"relation_type\": \"ON\"}, {\"from_id\": 247, \"to_id\": 201, \"relation_type\": \"ON\"}, {\"from_id\": 249, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 252, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 253, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 254, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 255, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 256, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 257, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 258, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 260, \"to_id\": 235, \"relation_type\": \"ON\"}, {\"from_id\": 261, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 262, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 268, \"to_id\": 282, \"relation_type\": \"ON\"}, {\"from_id\": 269, \"to_id\": 247, \"relation_type\": \"ON\"}, {\"from_id\": 270, \"to_id\": 235, \"relation_type\": \"ON\"}, {\"from_id\": 271, \"to_id\": 202, \"relation_type\": \"ON\"}, {\"from_id\": 272, \"to_id\": 290, \"relation_type\": \"ON\"}, {\"from_id\": 273, \"to_id\": 276, \"relation_type\": \"ON\"}, {\"from_id\": 274, \"to_id\": 275, \"relation_type\": \"ON\"}, {\"from_id\": 275, \"to_id\": 277, \"relation_type\": \"ON\"}, {\"from_id\": 276, \"to_id\": 278, \"relation_type\": \"ON\"}, {\"from_id\": 279, \"to_id\": 207, \"relation_type\": \"ON\"}, {\"from_id\": 282, \"to_id\": 244, \"relation_type\": \"ON\"}, {\"from_id\": 283, \"to_id\": 244, \"relation_type\": \"ON\"}, {\"from_id\": 284, \"to_id\": 244, \"relation_type\": \"ON\"}, {\"from_id\": 286, \"to_id\": 244, \"relation_type\": \"ON\"}, {\"from_id\": 286, \"to_id\": 287, \"relation_type\": \"ON\"}, {\"from_id\": 287, \"to_id\": 244, \"relation_type\": \"ON\"}, {\"from_id\": 288, \"to_id\": 235, \"relation_type\": \"ON\"}, {\"from_id\": 290, \"to_id\": 203, \"relation_type\": \"ON\"}, {\"from_id\": 291, \"to_id\": 200, \"relation_type\": \"ON\"}, {\"from_id\": 316, \"to_id\": 315, \"relation_type\": \"ON\"}, {\"from_id\": 319, \"to_id\": 320, \"relation_type\": \"ON\"}, {\"from_id\": 321, \"to_id\": 322, \"relation_type\": \"ON\"}, {\"from_id\": 321, \"to_id\": 320, \"relation_type\": \"ON\"}, {\"from_id\": 323, \"to_id\": 324, \"relation_type\": \"ON\"}, {\"from_id\": 325, \"to_id\": 310, \"relation_type\": \"ON\"}, {\"from_id\": 328, \"to_id\": 311, \"relation_type\": \"ON\"}, {\"from_id\": 330, \"to_id\": 325, \"relation_type\": \"ON\"}, {\"from_id\": 333, \"to_id\": 326, \"relation_type\": \"ON\"}, {\"from_id\": 334, \"to_id\": 327, \"relation_type\": \"ON\"}, {\"from_id\": 335, \"to_id\": 327, \"relation_type\": \"ON\"}, {\"from_id\": 337, \"to_id\": 326, \"relation_type\": \"ON\"}, {\"from_id\": 338, \"to_id\": 325, \"relation_type\": \"ON\"}, {\"from_id\": 339, \"to_id\": 325, \"relation_type\": \"ON\"}, {\"from_id\": 340, \"to_id\": 325, \"relation_type\": \"ON\"}, {\"from_id\": 341, \"to_id\": 325, \"relation_type\": \"ON\"}, {\"from_id\": 342, \"to_id\": 325, \"relation_type\": \"ON\"}, {\"from_id\": 342, \"to_id\": 341, \"relation_type\": \"ON\"}, {\"from_id\": 346, \"to_id\": 316, \"relation_type\": \"ON\"}, {\"from_id\": 347, \"to_id\": 312, \"relation_type\": \"ON\"}, {\"from_id\": 348, \"to_id\": 316, \"relation_type\": \"ON\"}, {\"from_id\": 349, \"to_id\": 316, \"relation_type\": \"ON\"}, {\"from_id\": 352, \"to_id\": 326, \"relation_type\": \"ON\"}, {\"from_id\": 353, \"to_id\": 329, \"relation_type\": \"ON\"}, {\"from_id\": 359, \"to_id\": 312, \"relation_type\": \"ON\"}, {\"from_id\": 360, \"to_id\": 310, \"relation_type\": \"ON\"}, {\"from_id\": 361, \"to_id\": 326, \"relation_type\": \"ON\"}, {\"from_id\": 368, \"to_id\": 312, \"relation_type\": \"ON\"}, {\"from_id\": 369, \"to_id\": 327, \"relation_type\": \"ON\"}, {\"from_id\": 370, \"to_id\": 328, \"relation_type\": \"ON\"}, {\"from_id\": 374, \"to_id\": 347, \"relation_type\": \"ON\"}, {\"from_id\": 383, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 384, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 385, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 386, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 388, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 389, \"to_id\": 132, \"relation_type\": \"ON\"}, {\"from_id\": 391, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 392, \"to_id\": 130, \"relation_type\": \"ON\"}, {\"from_id\": 400, \"to_id\": 399, \"relation_type\": \"ON\"}, {\"from_id\": 41, \"to_id\": 25, \"relation_type\": \"INSIDE\"}, {\"from_id\": 39, \"to_id\": 25, \"relation_type\": \"INSIDE\"}, {\"from_id\": 108, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 109, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 110, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 111, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 115, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 116, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 117, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 118, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 119, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 120, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 380, \"to_id\": 138, \"relation_type\": \"INSIDE\"}, {\"from_id\": 394, \"to_id\": 139, \"relation_type\": \"INSIDE\"}, {\"from_id\": 381, \"to_id\": 139, \"relation_type\": \"INSIDE\"}, {\"from_id\": 189, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 193, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 190, \"to_id\": 152, \"relation_type\": \"INSIDE\"}, {\"from_id\": 158, \"to_id\": 157, \"relation_type\": \"INSIDE\"}, {\"from_id\": 382, \"to_id\": 159, \"relation_type\": \"INSIDE\"}, {\"from_id\": 163, \"to_id\": 162, \"relation_type\": \"INSIDE\"}, {\"from_id\": 164, \"to_id\": 162, \"relation_type\": \"INSIDE\"}, {\"from_id\": 395, \"to_id\": 165, \"relation_type\": \"INSIDE\"}, {\"from_id\": 387, \"to_id\": 166, \"relation_type\": \"INSIDE\"}, {\"from_id\": 390, \"to_id\": 166, \"relation_type\": \"INSIDE\"}, {\"from_id\": 393, \"to_id\": 166, \"relation_type\": \"INSIDE\"}, {\"from_id\": 385, \"to_id\": 167, \"relation_type\": \"INSIDE\"}, {\"from_id\": 389, \"to_id\": 167, \"relation_type\": \"INSIDE\"}, {\"from_id\": 240, \"to_id\": 236, \"relation_type\": \"INSIDE\"}, {\"from_id\": 242, \"to_id\": 236, \"relation_type\": \"INSIDE\"}, {\"from_id\": 239, \"to_id\": 236, \"relation_type\": \"INSIDE\"}, {\"from_id\": 238, \"to_id\": 236, \"relation_type\": \"INSIDE\"}, {\"from_id\": 241, \"to_id\": 236, \"relation_type\": \"INSIDE\"}, {\"from_id\": 237, \"to_id\": 236, \"relation_type\": \"INSIDE\"}, {\"from_id\": 263, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 266, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 264, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 265, \"to_id\": 246, \"relation_type\": \"INSIDE\"}, {\"from_id\": 396, \"to_id\": 248, \"relation_type\": \"ON\"}, {\"from_id\": 268, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 284, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 119, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 246, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 115, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 116, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 272, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 117, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 263, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 118, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 290, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 264, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 289, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 279, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 83, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 285, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 231, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 261, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 262, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 271, \"to_id\": 282, \"relation_type\": \"FACING\"}, {\"from_id\": 269, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 249, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 255, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 254, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 253, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 247, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 258, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 256, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 257, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 262, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 252, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 230, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 261, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 267, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 396, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 397, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 398, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 248, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 279, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 281, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 289, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 291, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 290, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 272, \"to_id\": 288, \"relation_type\": \"FACING\"}, {\"from_id\": 375, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 349, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 364, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 371, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 348, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 346, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 363, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 365, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 366, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 362, \"to_id\": 316, \"relation_type\": \"INSIDE\"}, {\"from_id\": 317, \"to_id\": 350, \"relation_type\": \"ON\"}, {\"from_id\": 324, \"to_id\": 318, \"relation_type\": \"INSIDE\"}, {\"from_id\": 322, \"to_id\": 318, \"relation_type\": \"INSIDE\"}, {\"from_id\": 320, \"to_id\": 318, \"relation_type\": \"INSIDE\"}, {\"from_id\": 323, \"to_id\": 318, \"relation_type\": \"INSIDE\"}, {\"from_id\": 321, \"to_id\": 318, \"relation_type\": \"INSIDE\"}, {\"from_id\": 319, \"to_id\": 318, \"relation_type\": \"INSIDE\"}, {\"from_id\": 399, \"to_id\": 328, \"relation_type\": \"INSIDE\"}, {\"from_id\": 400, \"to_id\": 328, \"relation_type\": \"INSIDE\"}, {\"from_id\": 350, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 360, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 359, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 354, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 347, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 351, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 334, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 369, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 379, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 327, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 335, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 329, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 355, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 368, \"to_id\": 336, \"relation_type\": \"FACING\"}, {\"from_id\": 334, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 347, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 317, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 359, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 379, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 351, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 360, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 354, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 352, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 333, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 330, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 336, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 370, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 326, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 338, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 325, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 361, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 339, \"to_id\": 369, \"relation_type\": \"FACING\"}, {\"from_id\": 344, \"to_id\": 369, \"relation_type\": \"FACING\"}]}"]}
Processing
Successfully de-serialized object
alignment took: alignment: 2
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Bathroom_05/SHP_PRE_Toothpaste/Collider"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Kitchen_02/PRE_FUR_Bench_01_04/Collider/GameObject"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Kitchen_02/PRE_FUR_Bench_01_04/Collider/GameObject"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Kitchen_02/PRE_FUR_Bench_01_04/Collider/GameObject"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Kitchen_02/PRE_FUR_Bench_01_04/Collider/GameObject"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Kitchen_02/PRE_FUR_Bench_01_04/Collider/GameObject"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Kitchen_02/PRE_FUR_Bench_01_04/Collider/GameObject"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_02/PRE_ROO_Bedroom_02/Cabinet_1/door2"
Here
Waiting for request
Received request: {"id": "1652819779.930831", "action": "add_character", "stringParams": ["{\"character_resource\": \"Chars/Female1\", \"mode\": \"fix_room\", \"character_position\": {\"x\": 0, \"y\": 0, \"z\": 0}, \"initial_room\": \"kitchen\"}"]}
Processing
Here
Waiting for request
Received request: {"id": "1652819780.056753", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652819780.7833567", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652819785.017718", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652819980.5834765", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820032.4390833", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (56)"]}
Processing
Process...
0
GOAL POSITION: (-5.79, 0.00, 3.93)
processWalkTo time: 21
prepare time: 0
Waiting for request
Received request: {"id": "1652820032.5923023", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820034.4870954", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (56)"]}
Processing
Process...
0
GOAL POSITION: (-5.79, 0.00, 3.93)
processWalkTo time: 1
prepare time: 0
Waiting for request
Received request: {"id": "1652820034.5180206", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820065.4734712", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Processing
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
processWalkTo time: 3
prepare time: 0
Waiting for request
Received request: {"id": "1652820065.5094326", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820066.092982", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Processing
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820066.1255152", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820067.090236", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Processing
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820067.1123781", "action": "environment_graph"}
Processing
Received request: {"id": "1652820067.1271126", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Waiting for request
Processing
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820067.1635344", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820067.6729848", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Processing
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820067.705126", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820068.6570883", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Processing
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820068.6762238", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820159.1962082", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <bedroom> (294)"]}
Processing
Received request: {"id": "1652820159.195767", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Received request: {"id": "1652820159.198649", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Process...
0
GOAL POSITION: (-13.75, 0.00, 6.23)
Received request: {"id": "1652820159.2004592", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
processWalkTo time: 0
prepare time: 0
Waiting for request
Processing
Process...
0
prepare time: 0
Waiting for request
Processing
Process...
0
prepare time: 0
Received request: {"id": "1652820159.3284848", "action": "environment_graph"}
Received request: {"id": "1652820159.3535311", "action": "environment_graph"}
Waiting for request
Processing
Process...
0
prepare time: 0
Received request: {"id": "1652820159.362573", "action": "environment_graph"}
Waiting for request
Processing
Waiting for request
Processing
Received request: {"id": "1652820159.4549258", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Waiting for request
Processing
Waiting for request
Processing
Process...
0
prepare time: 0
Received request: {"id": "1652820159.5056226", "action": "environment_graph"}
Waiting for request
Processing
Waiting for request
Received request: {"id": "1652820159.5787575", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820160.110961", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820160.167724", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820160.7918544", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820160.860865", "action": "environment_graph"}
Processing
Received request: {"id": "1652820161.0103836", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Waiting for request
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820161.0818586", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820161.5041285", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820161.559172", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820162.3108573", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820162.3803232", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820162.873016", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820162.9419162", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820163.322565", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (328)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820163.3964074", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820163.8702085", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <coffeetable> (327)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820163.9140642", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820164.0408092", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <coffeetable> (327)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820164.1087532", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820164.8030574", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820165.0935004", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820165.2111597", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820166.0101988", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820166.3656192", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820166.4902043", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820166.9943395", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820169.0883346", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820169.140869", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820169.5978608", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820169.7098937", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820177.0556011", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <chips> (399)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820177.1698406", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820178.4012756", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <chips> (399)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820178.4612818", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820181.3698754", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <condimentbottle> (400)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820181.5049865", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820199.291678", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820199.3252437", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820199.64652", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820199.6792533", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820200.0261223", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820200.0577364", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820200.340373", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820200.3703387", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820200.719969", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820200.739462", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820201.0507333", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820201.0792823", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820201.3579404", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820201.3893714", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820201.6643903", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820201.6977904", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820201.995292", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820202.013403", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820202.3054655", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820202.3266046", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820202.5980673", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (198)"]}
Processing
Process...
0
GOAL POSITION: (1.55, 0.00, 2.50)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820202.6166008", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820207.3316054", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820207.3494575", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820207.6477575", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820207.6711557", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820207.959324", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820207.9776664", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820208.2643816", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820208.2818346", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820209.4553778", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putback] <chips> (399) <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820209.5007362", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820212.3359814", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putback] <condimentbottle> (400) <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820212.3681974", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820225.641241", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <remotecontrol> (397)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820225.7310927", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820229.6980605", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putback] <remotecontrol> (397) <coffeetable> (247)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820229.731953", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820240.304879", "action": "reset", "intParams": [3]}
Processing
Unloading 5 Unused Serialized files (Serialized files now loaded: 0)
UnloadTime: 30.708733 ms
Unloading 1952 unused Assets to reduce memory usage. Loaded Objects now: 7955.
Total: 13.455921 ms (FindLiveObjects: 1.854654 ms CreateObjectMapping: 0.466090 ms MarkObjects: 7.071263 ms DeleteObjects: 4.057679 ms)
ERROR: Shader Legacy Shaders/Particles/Additive (Soft) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Unlit/Texture shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
HEre
HEre
HEre
HEre
Waiting for request
Processing
HEre
HEre
Waiting for request
Received request: {"id": "1652820240.9392776", "action": "expand_scene", "stringParams": ["{\"randomize\": false, \"random_seed\": -1, \"animate_character\": false, \"ignore_obstacles\": false, \"transfer_transform\": true}", "{\"nodes\": [{\"id\": 11, \"category\": \"Rooms\", \"class_name\": \"kitchen\", \"prefab_name\": \"PRE_ROO_Kitchen_01\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 1.25, 0.0], \"size\": [8.0, 3.0, 8.0]}, \"properties\": [], \"states\": []}, {\"id\": 12, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 13, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 14, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 15, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 16, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [2.5, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, -2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 17, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, -2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 18, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [0.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 19, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [0.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, -2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 20, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 21, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 22, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 23, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 24, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 25, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 26, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 27, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, -2.500009], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 28, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, -2.500009], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 29, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, -2.500009], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 30, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_04_01\", \"obj_transform\": {\"position\": [-1.25, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.24999833, 1.25, 2.5], \"size\": [2.50000429, 2.500009, 2.50000477]}, \"properties\": [], \"states\": []}, {\"id\": 31, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_04_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, -1.0, 0.0, 2.06476813e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 1.25, 2.49999857], \"size\": [2.50000525, 2.500009, 2.50000477]}, \"properties\": [], \"states\": []}, {\"id\": 32, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_04_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, -1.0, 0.0, -4.371139e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.97, 1.24999988, 4.765749e-06], \"size\": [0.06000093, 2.50000882, 2.50000954]}, \"properties\": [], \"states\": []}, {\"id\": 33, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Panel_01\", \"obj_transform\": {\"position\": [-2.431, 1.075, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.43685746, 1.40975678, 2.19299865], \"size\": [0.011715238, 0.669524431, 3.00755262]}, \"properties\": [], \"states\": []}, {\"id\": 34, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Panel_01\", \"obj_transform\": {\"position\": [-2.431, 1.075, -1.839], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.43685746, 1.40975678, -1.83900142], \"size\": [0.011715238, 0.669524431, 3.00755262]}, \"properties\": [], \"states\": []}, {\"id\": 35, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_04_01\", \"obj_transform\": {\"position\": [-2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.46999979, 1.24999988, -4.76837158e-06], \"size\": [0.06000071, 2.50000882, 2.50000954]}, \"properties\": [], \"states\": []}, {\"id\": 36, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Window_02_04_01\", \"obj_transform\": {\"position\": [1.25, 0.0, -3.75], \"rotation\": [0.0, -0.7071069, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25000882, 1.24999344, -3.72000146], \"size\": [2.50001764, 2.50002646, 0.0599979721]}, \"properties\": [], \"states\": []}, {\"id\": 37, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_04_01\", \"obj_transform\": {\"position\": [1.25, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.24999547, 1.24999571, 3.72000146], \"size\": [2.5000093, 2.50000954, 0.0600038767]}, \"properties\": [], \"states\": []}, {\"id\": 38, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_04_01\", \"obj_transform\": {\"position\": [-2.5, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 1.25, -2.499998], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 39, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_corner_01_04_04\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.5], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75001431, 1.2500093, -2.49999976], \"size\": [2.5000453, 2.50002766, 2.50000072]}, \"properties\": [], \"states\": []}, {\"id\": 40, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [0.8029604, 0.995, 3.685], \"rotation\": [0.0, -0.9785831, 0.0, 0.205852628], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.23700392, 0.5, 3.747357], \"size\": [0.9283975, 1.0, 0.9283975]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 41, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_03\", \"obj_transform\": {\"position\": [1.237, 0.0, 3.747], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.23700392, 1.029126, 3.747357], \"size\": [0.928397536, 2.058256, 0.122323155]}, \"properties\": [], \"states\": []}, {\"id\": 42, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_01\", \"obj_transform\": {\"position\": [1.246, 0.0, -3.754], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2459991, 1.50000024, -3.75406575], \"size\": [2.112548, 1.02450514, 0.113748394]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 43, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_01\", \"obj_transform\": {\"position\": [1.424, 0.0, 1.141], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.424, 2.22476625, 1.141], \"size\": [0.531659365, 0.550924063, 0.531659365]}, \"properties\": [], \"states\": []}, {\"id\": 44, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_01\", \"obj_transform\": {\"position\": [1.424, 0.0, -1.231], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.424, 2.22476625, -1.231], \"size\": [0.531659365, 0.550924063, 0.531659365]}, \"properties\": [], \"states\": []}, {\"id\": 45, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [-2.44985533, 1.57204747, -0.5565634], \"rotation\": [0.7070055, 0.0, 0.0, 0.7072081], \"scale\": [0.5815978, 0.5815977, 0.5815976]}, \"bounding_box\": {\"center\": [-2.40002322, 1.57225847, 0.17043376], \"size\": [0.09966432, 0.128001377, 0.5016328]}, \"properties\": [], \"states\": []}, {\"id\": 46, \"category\": \"Food\", \"class_name\": \"milk\", \"prefab_name\": \"FMGP_PRE_Milk_1024\", \"obj_transform\": {\"position\": [1.384, 0.811, -0.826], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.384, 0.9285413, -0.826000452], \"size\": [0.120123953, 0.2350826, 0.120124929]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 49, \"category\": \"Food\", \"class_name\": \"bananas\", \"prefab_name\": \"FMGP_PRE_Bananas_1024\", \"obj_transform\": {\"position\": [-2.06396174, 1.08789182, -1.87522972], \"rotation\": [-0.00744920131, -0.002676542, -0.09877255, 0.995078564], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.08242321, 1.13732529, -1.857943], \"size\": [0.227994919, 0.136801243, 0.274744034]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 50, \"category\": \"Food\", \"class_name\": \"lime\", \"prefab_name\": \"FMGP_PRE_Lime_1024\", \"obj_transform\": {\"position\": [-1.94987559, 1.09732556, -1.97228527], \"rotation\": [0.212750077, 0.0, 0.0, 0.9771067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.94987559, 1.1251806, -1.95955157], \"size\": [0.06836161, 0.0841319859, 0.08764055]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 51, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [-1.895862, 1.10737967, -1.84208739], \"rotation\": [0.15995273, 0.0334494822, 0.201780975, 0.9657022], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.90918434, 1.13786829, -1.830754], \"size\": [0.0981158, 0.108546972, 0.08738087]}, \"properties\": [], \"states\": []}, {\"id\": 52, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [-1.89936316, 1.12494242, -1.93126881], \"rotation\": [0.163131416, -0.133657366, -0.0223127045, 0.977254331], \"scale\": [0.863431454, 0.863431454, 0.863431454]}, \"bounding_box\": {\"center\": [-1.899363, 1.153646, -1.92141128], \"size\": [0.07270728, 0.08102304, 0.0884800851]}, \"properties\": [], \"states\": []}, {\"id\": 53, \"category\": \"Food\", \"class_name\": \"plum\", \"prefab_name\": \"FMGP_PRE_Plum_1024\", \"obj_transform\": {\"position\": [-2.00701427, 1.14047086, -1.87394392], \"rotation\": [0.147337615, 0.171003565, 0.635892153, 0.7380316], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.038235, 1.14566827, -1.85865533], \"size\": [0.09443041, 0.06564791, 0.0843845159]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 54, \"category\": \"Food\", \"class_name\": \"plum\", \"prefab_name\": \"FMGP_PRE_Plum_1024\", \"obj_transform\": {\"position\": [-1.991759, 1.13488328, -2.00790739], \"rotation\": [0.0, 0.0, 0.661574364, 0.7498796], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.02663422, 1.13926423, -2.00790739], \"size\": [0.07671389, 0.06419357, 0.0558672436]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 55, \"category\": \"Food\", \"class_name\": \"dishbowl\", \"prefab_name\": \"FMGP_PRE_Wooden_bowl_1024\", \"obj_transform\": {\"position\": [-2.02022743, 1.07651067, -1.87669265], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.37713337, 1.37713337, 1.37713337]}, \"bounding_box\": {\"center\": [-2.02022743, 1.11937141, -1.87669265], \"size\": [0.348283, 0.08572138, 0.348283]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 56, \"category\": \"Food\", \"class_name\": \"creamybuns\", \"prefab_name\": \"SMGP_PRE_Creamy_buns_1024\", \"obj_transform\": {\"position\": [-2.065436, 1.07651067, -1.328917], \"rotation\": [0.0, -0.316252619, 0.0, 0.948675036], \"scale\": [0.30920592, 0.309205979, 0.309205979]}, \"bounding_box\": {\"center\": [-2.06543565, 1.13854337, -1.32891726], \"size\": [0.235178977, 0.124066733, 0.274914443]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 57, \"category\": \"Food\", \"class_name\": \"chocolatesyrup\", \"prefab_name\": \"SMGP_PRE_Chocolate_syrup_1024\", \"obj_transform\": {\"position\": [1.08481026, 0.807798, -0.196261823], \"rotation\": [0.0, -0.395569235, 0.0, 0.9184362], \"scale\": [0.236785457, 0.236785471, 0.236785471]}, \"bounding_box\": {\"center\": [1.0848105, 0.90611434, -0.196262062], \"size\": [0.1250376, 0.197500154, 0.123310074]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 58, \"category\": \"Food\", \"class_name\": \"cereal\", \"prefab_name\": \"SMGP_PRE_Cereal_1024\", \"obj_transform\": {\"position\": [1.42167759, 0.8114108, -0.617101848], \"rotation\": [0.0, -0.174490035, 0.0, 0.984658957], \"scale\": [0.246421278, 0.246421248, 0.246421233]}, \"bounding_box\": {\"center\": [1.42167783, 0.955016136, -0.6171027], \"size\": [0.2460767, 0.28721112, 0.157946289]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 59, \"category\": \"Food\", \"class_name\": \"candybar\", \"prefab_name\": \"SMGP_PRE_Candy_bar_1024\", \"obj_transform\": {\"position\": [1.63785863, 0.8111569, -0.8358898], \"rotation\": [0.0, -0.420077324, 0.0, 0.907488346], \"scale\": [0.280059874, 0.280059934, 0.280059934]}, \"bounding_box\": {\"center\": [1.63785863, 0.826859057, -0.8358898], \"size\": [0.188725173, 0.0314048, 0.172877476]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 60, \"category\": \"Food\", \"class_name\": \"cutlets\", \"prefab_name\": \"SMGP_PRE_Cutlets_1024\", \"obj_transform\": {\"position\": [-1.866, 1.07016385, 0.911], \"rotation\": [0.0, 0.293042332, 0.0, 0.9560995], \"scale\": [0.29292807, 0.2929281, 0.29292807]}, \"bounding_box\": {\"center\": [-1.86600018, 1.10024738, 0.9109999], \"size\": [0.319978, 0.0601683743, 0.352518916]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 62, \"category\": \"Food\", \"class_name\": \"pancake\", \"prefab_name\": \"DHP_PRE_Pancakes_1024\", \"obj_transform\": {\"position\": [1.35078907, 0.8371885, -0.34008953], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.346208334, 0.346208364, 0.346208364]}, \"bounding_box\": {\"center\": [1.35078907, 0.8781986, -0.34008953], \"size\": [0.1986391, 0.08202022, 0.198639125]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 63, \"category\": \"Food\", \"class_name\": \"crackers\", \"prefab_name\": \"SMGP_PRE_Salt_crackers_1024\", \"obj_transform\": {\"position\": [-2.214634, 1.0766083, -0.747943044], \"rotation\": [0.0, 0.6272869, 0.0, 0.778788269], \"scale\": [0.2929281, 0.2929281, 0.2929281]}, \"bounding_box\": {\"center\": [-2.21463418, 1.11131835, -0.7479431], \"size\": [0.1548538, 0.06942015, 0.305294484]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 64, \"category\": \"Food\", \"class_name\": \"pear\", \"prefab_name\": \"FMGP_PRE_Pear_1024\", \"obj_transform\": {\"position\": [1.353816, 0.859255731, 0.01415819], \"rotation\": [-0.752660453, -0.17147471, -0.12614958, 0.6230449], \"scale\": [0.7397794, 0.7397795, 0.7397795]}, \"bounding_box\": {\"center\": [1.38164568, 0.8482112, -0.04578859], \"size\": [0.124308914, 0.101695254, 0.163693875]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 65, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [1.34356356, 0.8226397, -0.07899294], \"rotation\": [0.0, 0.0, 0.154336885, 0.988018334], \"scale\": [0.976427, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.3328439, 0.8561146, -0.07899294], \"size\": [0.0865443, 0.08779843, 0.06836161]}, \"properties\": [], \"states\": []}, {\"id\": 66, \"category\": \"Food\", \"class_name\": \"crackers\", \"prefab_name\": \"SMGP_PRE_Salt_crackers_1024\", \"obj_transform\": {\"position\": [3.1453, 1.2827, -3.5422], \"rotation\": [0.0, -0.2437721, 0.0, 0.96983254], \"scale\": [0.201127768, 0.201127738, 0.201127738]}, \"bounding_box\": {\"center\": [3.1453, 1.30653226, -3.5422], \"size\": [0.2073316, 0.0476646572, 0.152128547]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 68, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [1.87, 0.0, 0.1], \"rotation\": [0.0, 1.0, 0.0, -4.371139e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.892, 0.495000035, 0.1], \"size\": [0.5236001, 0.8415001, 0.401199967]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 69, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [1.87, 0.0, -0.54], \"rotation\": [0.0, 1.0, 0.0, -4.371139e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.892, 0.495000035, -0.54], \"size\": [0.5236001, 0.8415001, 0.401199967]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 70, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [0.8, 0.0, 0.1], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.778, 0.495000035, 0.1], \"size\": [0.523600042, 0.8415001, 0.401200026]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 71, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [0.8, 0.0, -0.54], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.778, 0.495000035, -0.54], \"size\": [0.523600042, 0.8415001, 0.401200026]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 72, \"category\": \"Furniture\", \"class_name\": \"kitchentable\", \"prefab_name\": \"PRE_FUR_Kitchen_table_02_01\", \"obj_transform\": {\"position\": [1.36, 0.0, -0.24], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.36, 0.404, -0.24], \"size\": [1.22600007, 0.808, 1.67000008]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 73, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.0732, 2.099, -1.0853], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.239623, 2.10015035, -0.719800055], \"size\": [0.402153015, 0.6996989, 0.758]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 74, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, -1.8337], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, -1.4682], \"size\": [0.402153969, 0.6996989, 0.758000135]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 75, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, -2.5843], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, -2.2188], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 76, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, -3.3311], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, -2.9656], \"size\": [0.402153969, 0.6996989, 0.7580004]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 77, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.0732, 2.099, 2.9467], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.239623, 2.10015035, 3.3122], \"size\": [0.402153015, 0.6996989, 0.7580004]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 78, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, 2.19830012], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, 2.5638], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 79, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, 1.4477], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, 1.8132], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 80, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, 0.7009001], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, 1.0664], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 81, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_01_12\", \"obj_transform\": {\"position\": [-2.032, 0.0, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.053, 0.52, 2.193], \"size\": [0.77, 1.05, 3.014]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 82, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_01\", \"obj_transform\": {\"position\": [-2.058, 0.225, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.356, 2.193], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 83, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_02\", \"obj_transform\": {\"position\": [-2.058, 0.504, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.635, 2.193], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 84, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_03\", \"obj_transform\": {\"position\": [-2.058, 0.504, 3.1888], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.635, 3.1888], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 85, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_04\", \"obj_transform\": {\"position\": [-2.058, 0.225, 3.1888], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.356, 3.1888], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 86, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_05\", \"obj_transform\": {\"position\": [-2.058, 0.779, 3.18900013], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.909999967, 3.18900013], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 87, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_06\", \"obj_transform\": {\"position\": [-2.058, 0.779, 1.20100009], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.909999967, 1.20100009], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 88, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_07\", \"obj_transform\": {\"position\": [-2.058, 0.225, 1.20100009], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.356, 1.20100009], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 89, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_08\", \"obj_transform\": {\"position\": [-2.058, 0.504, 1.20100009], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.635, 1.20100009], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 90, \"category\": \"Furniture\", \"class_name\": \"sink\", \"prefab_name\": \"Sink\", \"obj_transform\": {\"position\": [-2.0, 0.9, 2.2], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.03, 0.01, 0.06]}, \"bounding_box\": {\"center\": [-2.0, 0.9, 2.2], \"size\": [0.299999982, 2.220446e-18, 0.599999964]}, \"properties\": [\"RECIPIENT\", \"CONTAINERS\"], \"states\": []}, {\"id\": 91, \"category\": \"Furniture\", \"class_name\": \"faucet\", \"prefab_name\": \"Faucet\", \"obj_transform\": {\"position\": [-2.332, 1.1, 2.223], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.332, 1.1, 2.223], \"size\": [0.0999999046, 0.0999999046, 0.0999999046]}, \"properties\": [\"HAS_SWITCH\"], \"states\": [\"OFF\"]}, {\"id\": 92, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_02_12\", \"obj_transform\": {\"position\": [-2.034, 0.006, -1.839], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.05499983, 0.525999963, -1.839], \"size\": [0.77, 1.05, 3.014]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 93, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_03_12\", \"obj_transform\": {\"position\": [-2.085, 0.003, -3.509], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.056, 0.538000047, -3.507], \"size\": [0.770000041, 1.07, 0.316]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 94, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"PRE_FUR_Sofa_02_02_03_02\", \"obj_transform\": {\"position\": [4.28, 0.0, 0.74], \"rotation\": [0.0, 1.0, 0.0, 3.57627869e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.288, 0.57100004, 0.74], \"size\": [1.03869832, 0.9707001, 2.36470079]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 95, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_12\", \"obj_transform\": {\"position\": [4.319, 0.0, -1.123], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.319, 0.242000014, -1.121], \"size\": [0.748, 0.484000027, 0.748]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 96, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_11\", \"obj_transform\": {\"position\": [4.319, 0.0, 2.599], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.319, 0.242000014, 2.601], \"size\": [0.748, 0.484000027, 0.748]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 97, \"category\": \"Furniture\", \"class_name\": \"wallshelf\", \"prefab_name\": \"PRE_FUR_Shelf_06\", \"obj_transform\": {\"position\": [3.494, 1.845, -3.563], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.494, 1.771366, -3.56300116], \"size\": [1.0, 0.1819556, 0.272273183]}, \"properties\": [], \"states\": []}, {\"id\": 98, \"category\": \"Furniture\", \"class_name\": \"wallshelf\", \"prefab_name\": \"PRE_FUR_Shelf_05\", \"obj_transform\": {\"position\": [3.494, 1.265, -3.563], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.494, 1.191366, -3.56300116], \"size\": [1.0, 0.1819556, 0.272273183]}, \"properties\": [], \"states\": []}, {\"id\": 99, \"category\": \"Appliances\", \"class_name\": \"toaster\", \"prefab_name\": \"PRE_APP_Toaster_04\", \"obj_transform\": {\"position\": [-1.879, 1.06, 1.273], \"rotation\": [0.0, 0.9887695, 0.0, 0.149449229], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.84823287, 1.164411, 1.27408445], \"size\": [0.2952459, 0.209531546, 0.286513567]}, \"properties\": [\"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 100, \"category\": \"Appliances\", \"class_name\": \"breadslice\", \"prefab_name\": \"Bread_slice_1\", \"obj_transform\": {\"position\": [-1.85750473, 1.25669992, 1.236], \"rotation\": [-0.433410436, 0.661842048, 0.558708847, -0.248928219], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.85937214, 1.25718331, 1.24206913], \"size\": [0.211329237, 0.0415872931, 0.0520831347]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 101, \"category\": \"Appliances\", \"class_name\": \"breadslice\", \"prefab_name\": \"Bread_slice_1\", \"obj_transform\": {\"position\": [-1.87804484, 1.25669992, 1.30239534], \"rotation\": [-0.433410436, 0.661842048, 0.558708847, -0.248928219], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.87991226, 1.25718331, 1.30846453], \"size\": [0.211329237, 0.0415872931, 0.0520831347]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 102, \"category\": \"Appliances\", \"class_name\": \"stovefan\", \"prefab_name\": \"PRE_APP_Oven_fan_01\", \"obj_transform\": {\"position\": [-1.979, 0.0, 0.179], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.12914538, 2.08290529, 0.178993121], \"size\": [0.6212864, 0.450402617, 0.9244467]}, \"properties\": [], \"states\": []}, {\"id\": 103, \"category\": \"Appliances\", \"class_name\": \"fridge\", \"prefab_name\": \"PRE_APP_Fridge_01_02\", \"obj_transform\": {\"position\": [2.671, 0.0, 3.303], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.67042828, 1.06257987, 3.31381345], \"size\": [0.889662445, 2.125163, 0.7121654]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\"]}, {\"id\": 104, \"category\": \"Appliances\", \"class_name\": \"dishwasher\", \"prefab_name\": \"PRE_APP_Dishwasher_01_01\", \"obj_transform\": {\"position\": [-2.151, 0.0, -1.841], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.13692236, 0.510003448, -1.841002], \"size\": [0.7900868, 1.02001023, 0.967084765]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 105, \"category\": \"Appliances\", \"class_name\": \"stove\", \"prefab_name\": \"PRE_APP_Stove_01_03\", \"obj_transform\": {\"position\": [-1.952, 0.0, 0.179], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.027, 0.51, 0.179], \"size\": [0.832, 1.08, 1.002]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\"], \"states\": [\"OFF\", \"CLOSED\"]}, {\"id\": 106, \"category\": \"Appliances\", \"class_name\": \"oventray\", \"prefab_name\": \"MOD_APP_Oven_tray_01\", \"obj_transform\": {\"position\": [-1.99, 0.515, 0.179], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.99000084, 0.5257779, 0.179001927], \"size\": [0.6174071, 0.02155888, 0.933822632]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 107, \"category\": \"Appliances\", \"class_name\": \"coffeemaker\", \"prefab_name\": \"PRE_APP_Coffeemaker_03\", \"obj_transform\": {\"position\": [-1.953, 1.07598078, -2.338], \"rotation\": [0.0, -0.5535498, 0.0, 0.8328161], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.936795, 1.25573051, -2.31975627], \"size\": [0.08077896, 0.35950017, 0.367853165]}, \"properties\": [\"RECIPIENT\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 108, \"category\": \"Appliances\", \"class_name\": \"coffeepot\", \"prefab_name\": \"MOD_PRO_Coffeemaker_01_Pot_01\", \"obj_transform\": {\"position\": [-1.9235754, 1.12198079, -2.26792717], \"rotation\": [0.0, -0.5535498, 0.0, 0.8328161], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.91496158, 1.18792713, -2.24741483], \"size\": [0.25369072, 0.1318934, 0.278920174]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 109, \"category\": \"Appliances\", \"class_name\": \"microwave\", \"prefab_name\": \"Microwave_1\", \"obj_transform\": {\"position\": [-2.016, 1.07004833, 3.298], \"rotation\": [-0.429358, 0.561829031, 0.561828852, 0.429357976], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.008336, 1.22233438, 3.29808378], \"size\": [0.522654533, 0.304915428, 0.6082659]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 111, \"category\": \"Props\", \"class_name\": \"washingsponge\", \"prefab_name\": \"PRE_PRO_Washing_sponge\", \"obj_transform\": {\"position\": [-2.234, 1.072, 1.711], \"rotation\": [0.0, 0.325952917, 0.0, 0.945386052], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.2330668, 1.096432, 1.71026945], \"size\": [0.2215752, 0.0488643944, 0.208294809]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 112, \"category\": \"Props\", \"class_name\": \"dishwashingliquid\", \"prefab_name\": \"PRE_PRO_Washing_liquid\", \"obj_transform\": {\"position\": [-2.298, 1.071, 2.593], \"rotation\": [1.80084282e-06, 0.2585148, -4.819267e-07, 0.966007352], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.29799986, 1.21952772, 2.59300041], \"size\": [0.119261861, 0.2970563, 0.13844946]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 113, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_02\", \"obj_transform\": {\"position\": [-2.4181, 1.5079, 1.0721], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.41773367, 1.45994866, 1.07170117], \"size\": [0.0187248047, 0.3164823, 0.04737649]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 114, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_01\", \"obj_transform\": {\"position\": [-2.4182, 1.5295, 1.0047], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.41783357, 1.48179018, 1.00252056], \"size\": [0.0187248047, 0.316965282, 0.0438155681]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 115, \"category\": \"Props\", \"class_name\": \"knifeblock\", \"prefab_name\": \"PRE_PRO_Knife_block_01\", \"obj_transform\": {\"position\": [-2.431, 1.51, 1.231], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.42440486, 1.51, 1.231], \"size\": [0.0131904939, 0.0448102057, 0.5565959]}, \"properties\": [], \"states\": []}, {\"id\": 118, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [-1.95261443, 1.07840872, -0.9732029], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-1.95261443, 1.12701869, -0.9577717], \"size\": [0.0877884552, 0.0972202, 0.118651472]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 119, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [-1.9137969, 1.07621777, -0.4491564], \"rotation\": [-6.123234e-17, 1.0, -1.80999507e-06, 1.10830237e-22], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-1.9137969, 1.12482762, -0.464587748], \"size\": [0.0877884552, 0.09722063, 0.118651822]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 120, \"category\": \"Props\", \"class_name\": \"cookingpot\", \"prefab_name\": \"PRE_PRO_Cooking_pot_01_02\", \"obj_transform\": {\"position\": [-1.815, 1.07, -0.02], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-1.815, 1.12432492, -0.0200710464], \"size\": [0.23948431, 0.108649641, 0.2806234]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 121, \"category\": \"Props\", \"class_name\": \"cookingpot\", \"prefab_name\": \"PRE_PRO_Cooking_pot_02_01\", \"obj_transform\": {\"position\": [-2.208, 1.07, -0.021], \"rotation\": [0.0, -0.4424726, 0.0, 0.8967821], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-2.14191866, 1.1163063, 0.06519167], \"size\": [0.3959679, 0.09261257, 0.436189175]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 122, \"category\": \"Props\", \"class_name\": \"fryingpan\", \"prefab_name\": \"PRE_PRO_Frying_pan_01\", \"obj_transform\": {\"position\": [-1.821, 1.07, 0.378], \"rotation\": [0.0, -0.9308625, 0.0, 0.365369827], \"scale\": [0.9764269, 0.976426959, 0.976427]}, \"bounding_box\": {\"center\": [-1.8988322, 1.10337162, 0.4502269], \"size\": [0.5957612, 0.06674368, 0.584550142]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"CONTAINERS\", \"MOVABLE\"], \"states\": []}, {\"id\": 124, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_02\", \"obj_transform\": {\"position\": [1.361, 0.81, -0.05], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.361, 0.836655736, -0.0500002], \"size\": [0.184048012, 0.0533117764, 0.184048012]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 129, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_01\", \"obj_transform\": {\"position\": [1.352, 0.81, -0.3396], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.850956, 0.850956, 0.850956]}, \"bounding_box\": {\"center\": [1.352, 0.844534755, -0.339600235], \"size\": [0.233043477, 0.06907001, 0.233043477]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 132, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [1.73218143, 0.8153165, -0.356395841], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.77429116, 0.811274052, -0.3548193], \"size\": [0.251150727, 0.00555667048, 0.0189811755]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 135, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [0.994979143, 0.8153165, -0.7069331], \"rotation\": [0.0, -1.0, 0.0, -4.371139e-08], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [0.9528694, 0.811274052, -0.7085096], \"size\": [0.251150727, 0.00555667048, 0.0189811978]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 136, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [0.994979143, 0.8153165, -0.08104344], \"rotation\": [0.0, -1.0, 0.0, -4.371139e-08], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [0.9528694, 0.811274052, -0.08261998], \"size\": [0.251150727, 0.00555667048, 0.0189811978]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 138, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [1.73218143, 0.8153165, 0.262658834], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.77429116, 0.811274052, 0.264235377], \"size\": [0.251150727, 0.00555667048, 0.0189811755]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 144, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [3.392641, 1.8987, -3.55097461], \"rotation\": [0.0, -0.475167066, 0.0, 0.879895568], \"scale\": [0.8092893, 0.8092892, 0.8092893]}, \"bounding_box\": {\"center\": [3.39461565, 1.91234589, -3.54796267], \"size\": [0.242579162, 0.0276826248, 0.231408119]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 145, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [3.4315, 1.8629, -3.5519], \"rotation\": [0.0, -0.705161154, 0.0, 0.7090471], \"scale\": [0.7175736, 0.7175735, 0.7175735]}, \"bounding_box\": {\"center\": [3.43152237, 1.87897134, -3.54765844], \"size\": [0.22542201, 0.0326029919, 0.179953516]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 146, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [3.79, 1.863, -3.565], \"rotation\": [0.0, 0.6602912, 0.0, 0.7510097], \"scale\": [0.6719947, 0.671994746, 0.6719948]}, \"bounding_box\": {\"center\": [3.79, 1.92839193, -3.5650003], \"size\": [0.293674737, 0.130784929, 0.220471844]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 151, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_05\", \"obj_transform\": {\"position\": [3.8262, 1.3536, -3.5547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.8262, 1.38089931, -3.55470014], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 152, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_04\", \"obj_transform\": {\"position\": [3.8262, 1.3295, -3.5547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.8262, 1.35679924, -3.55470014], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 153, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_03\", \"obj_transform\": {\"position\": [3.8262, 1.3072, -3.5547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.8262, 1.33449924, -3.55470014], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 154, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_02\", \"obj_transform\": {\"position\": [3.826204, 1.28307974, -3.55472946], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.826204, 1.310379, -3.5547297], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 155, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [4.1, 0.486, 2.668], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.1, 0.5357835, 2.6838038], \"size\": [0.0899078548, 0.0995673, 0.121515974]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 156, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [4.359, 0.486, 2.651], \"rotation\": [0.0, 0.927708447, 0.0, 0.3733057], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.357772, 0.5922633, 2.649821], \"size\": [0.164550647, 0.212527975, 0.166843191]}, \"properties\": [], \"states\": []}, {\"id\": 157, \"category\": \"Props\", \"class_name\": \"cellphone\", \"prefab_name\": \"Cellphone_1b\", \"obj_transform\": {\"position\": [-1.783, 1.0866, -1.262615], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.783, 1.0866, -1.262615], \"size\": [0.109999895, 0.01443696, 0.0580000877]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 158, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_07\", \"obj_transform\": {\"position\": [1.22053373, 0.0, 2.67763424], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.22053373, 0.00680579338, 2.67763424], \"size\": [1.65969586, 0.0136175957, 1.6596961]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 159, \"category\": \"Decor\", \"class_name\": \"orchid\", \"prefab_name\": \"PRE_DEC_Orchid_02\", \"obj_transform\": {\"position\": [4.253, 0.486, -1.135], \"rotation\": [0.0, 0.9338499, 0.0, -0.35766536], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.25300026, 0.5829921, -1.13499951], \"size\": [0.24200058, 0.193984777, 0.24200058]}, \"properties\": [], \"states\": []}, {\"id\": 160, \"category\": \"Decor\", \"class_name\": \"candle\", \"prefab_name\": \"PRE_DEC_Candle_01\", \"obj_transform\": {\"position\": [3.118534, 1.87617362, -3.52795815], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.118534, 1.94475436, -3.52795839], \"size\": [0.0827575549, 0.137161791, 0.0827579647]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 161, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_14\", \"obj_transform\": {\"position\": [4.95, 1.629, -0.059], \"rotation\": [0.0, 1.0, 0.0, -1.62920685e-07], \"scale\": [0.173196882, 0.173196882, 0.173196882]}, \"bounding_box\": {\"center\": [4.946387, 1.629, -0.0589997768], \"size\": [0.0072259903, 0.217715979, 0.1655122]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 162, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_01\", \"obj_transform\": {\"position\": [4.952, 1.544, 0.414], \"rotation\": [0.0, 1.0, 0.0, 3.57627869e-07], \"scale\": [0.2666046, 0.2666046, 0.2666046]}, \"bounding_box\": {\"center\": [4.945568, 1.54399991, 0.413999915], \"size\": [0.0128650665, 0.2946782, 0.6867285]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 163, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_11\", \"obj_transform\": {\"position\": [4.953, 2.007, 0.159], \"rotation\": [0.0, 1.0, 0.0, 3.57627869e-07], \"scale\": [0.376796454, 0.3767965, 0.3767965]}, \"bounding_box\": {\"center\": [4.943909, 2.007, 0.15899986], \"size\": [0.0181818, 0.4164734, 0.970564246]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 164, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_06\", \"obj_transform\": {\"position\": [4.953, 1.842, 1.082], \"rotation\": [0.0, 1.0, 0.0, -1.62920685e-07], \"scale\": [0.5238574, 0.5238574, 0.5238574]}, \"bounding_box\": {\"center\": [4.94207239, 1.842, 1.08200073], \"size\": [0.021856308, 0.658511639, 0.500614166]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 165, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [4.955, 1.79, 1.636], \"rotation\": [0.0, 1.0, 0.0, -1.62920685e-07], \"scale\": [0.352065176, 0.3520654, 0.3520654]}, \"bounding_box\": {\"center\": [4.94765568, 1.79, 1.63600051], \"size\": [0.0146884918, 0.442561626, 0.336444378]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 166, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_06\", \"obj_transform\": {\"position\": [1.25, -0.032, -3.667], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.24988234, 2.02288556, -3.65756178], \"size\": [2.32801127, 0.0333948135, 0.0259931087]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 167, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_02\", \"obj_transform\": {\"position\": [2.03100014, -0.029000001, -3.658], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.03700972, 1.46254826, -3.6290102], \"size\": [0.593184352, 1.15232611, 0.107337952]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 168, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_01\", \"obj_transform\": {\"position\": [0.4799999, -0.029000001, -3.66100025], \"rotation\": [0.0, -0.707106769, 0.0, 0.7071069], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.473998129, 1.46254838, -3.63200855], \"size\": [0.593184233, 1.15232587, 0.107337952]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 169, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_02\", \"obj_transform\": {\"position\": [1.866, 1.338, 3.7], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.866, 1.338, 3.697508], \"size\": [0.0670589358, 0.09142984, 0.004985324]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 170, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_02\", \"obj_transform\": {\"position\": [1.801, 0.147, 3.7], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.80100012, 0.147, 3.69215727], \"size\": [0.08868245, 0.150643855, 0.015685413]}, \"properties\": [], \"states\": []}, {\"id\": 171, \"category\": \"Electronics\", \"class_name\": \"wallphone\", \"prefab_name\": \"PRE_ELE_Wall_phone_01\", \"obj_transform\": {\"position\": [-0.698, 1.437, 3.702], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-0.6980001, 1.437, 3.6925478], \"size\": [0.09113765, 0.2635858, 0.01890421]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 172, \"category\": \"Rooms\", \"class_name\": \"bathroom\", \"prefab_name\": \"PRE_ROO_Bathroom_03\", \"obj_transform\": {\"position\": [1.228, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.478, 1.25, 6.25], \"size\": [5.5, 3.0, 5.5]}, \"properties\": [], \"states\": []}, {\"id\": 173, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Doorway_corner_01_06_04\", \"obj_transform\": {\"position\": [1.22799981, 0.0, 3.75000024], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22800016, 1.2500093, 4.99998665], \"size\": [2.50000072, 2.50002766, 2.5000453]}, \"properties\": [], \"states\": []}, {\"id\": 174, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_06_03\", \"obj_transform\": {\"position\": [1.22800028, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.228002, 1.25, 7.5], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 175, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_06_03\", \"obj_transform\": {\"position\": [4.978, 0.0, 7.49999952], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799921, 1.25, 7.49999762], \"size\": [2.500005, 2.500009, 2.50000453]}, \"properties\": [], \"states\": []}, {\"id\": 176, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_06_03\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 3.75], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.727997, 1.25, 5.000001], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 177, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [1.228, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2279911, 2.50000024, 7.5], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 178, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [1.22799981, 0.0, 3.75000024], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22799087, 2.50000024, 5.0], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 179, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799087, 2.50000024, 5.0], \"size\": [2.50000048, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 180, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799087, 2.50000024, 7.5], \"size\": [2.50000048, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 181, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [1.228, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22800016, 0.0, 7.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 182, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [1.22799981, 0.0, 3.75000024], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22799993, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 183, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799969, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 184, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799969, 0.0, 7.5], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 185, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [0.592000365, 0.193, 8.7], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.591995955, 1.443, 8.614318], \"size\": [0.219838738, 0.8624453, 0.171362981]}, \"properties\": [], \"states\": []}, {\"id\": 186, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_03_01\", \"obj_transform\": {\"position\": [2.478, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.47799945, 2.43006635, 6.25], \"size\": [0.926426053, 0.152424768, 0.9324323]}, \"properties\": [], \"states\": []}, {\"id\": 187, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [4.413, 0.193, 8.699999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.41299343, 1.443, 8.614318], \"size\": [0.219838738, 0.8624453, 0.171362981]}, \"properties\": [], \"states\": []}, {\"id\": 188, \"category\": \"Furniture\", \"class_name\": \"toilet\", \"prefab_name\": \"PRE_FUR_Toilet_02\", \"obj_transform\": {\"position\": [2.61699963, -0.093, 3.90600014], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.71828413, 0.27147913, 4.30416], \"size\": [0.7693824, 0.542430043, 0.7984217]}, \"properties\": [\"SITTABLE\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 189, \"category\": \"Furniture\", \"class_name\": \"stall\", \"prefab_name\": \"PRE_FUR_Toilet_stall_02_02\", \"obj_transform\": {\"position\": [2.61699963, 0.0, 4.407], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.61701083, 1.25, 4.573511], \"size\": [1.56272185, 2.50001717, 1.56474018]}, \"properties\": [], \"states\": []}, {\"id\": 190, \"category\": \"Furniture\", \"class_name\": \"bathroomcabinet\", \"prefab_name\": \"PRE_FUR_Bathroom_cabinet_02_04_w_lamps\", \"obj_transform\": {\"position\": [2.47800016, 0.042, 8.636999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.477993, 1.856972, 8.631079], \"size\": [2.85160756, 0.757355332, 0.135947749]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 191, \"category\": \"Furniture\", \"class_name\": \"stall\", \"prefab_name\": \"PRE_FUR_Shower_stall_06_02\", \"obj_transform\": {\"position\": [4.15499973, 0.001, 4.40699959], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.15501, 1.25068724, 4.57351], \"size\": [1.56272185, 2.50064278, 1.56474018]}, \"properties\": [], \"states\": []}, {\"id\": 192, \"category\": \"Furniture\", \"class_name\": \"curtains\", \"prefab_name\": \"MOD_FUR_Shower_stall_01_Curtain_01\", \"obj_transform\": {\"position\": [4.15499973, 0.001, 5.198], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.64892769, 1.24817312, 5.300999], \"size\": [0.3018598, 2.29940414, 0.05150947]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 193, \"category\": \"Furniture\", \"class_name\": \"bathroomcounter\", \"prefab_name\": \"PRE_FUR_Bathroom_counter_04\", \"obj_transform\": {\"position\": [2.47800016, 0.0, 8.372999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.47799969, 0.77, 8.377998], \"size\": [2.86199975, 0.39, 0.6520002]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 194, \"category\": \"Furniture\", \"class_name\": \"faucet\", \"prefab_name\": \"Faucet\", \"obj_transform\": {\"position\": [2.50800014, 1.01, 8.632999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.50799942, 1.01, 8.632999], \"size\": [0.0999999046, 0.0999999642, 0.100000381]}, \"properties\": [\"HAS_SWITCH\"], \"states\": [\"OFF\"]}, {\"id\": 195, \"category\": \"Furniture\", \"class_name\": \"sink\", \"prefab_name\": \"Sink\", \"obj_transform\": {\"position\": [2.48399925, 0.915, 8.372999], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [0.0300000161, 0.01, 0.0600000322]}, \"bounding_box\": {\"center\": [2.48399878, 0.915, 8.372999], \"size\": [0.600000262, 2.220446e-18, 0.300000131]}, \"properties\": [\"RECIPIENT\", \"CONTAINERS\"], \"states\": []}, {\"id\": 196, \"category\": \"Props\", \"class_name\": \"garbagecan\", \"prefab_name\": \"Garbage_can_6\", \"obj_transform\": {\"position\": [4.478, 0.0, 7.78899956], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.4786334, 0.207238674, 7.788464], \"size\": [0.32761243, 0.414477348, 0.3276124]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 197, \"category\": \"Props\", \"class_name\": \"toothbrush\", \"prefab_name\": \"PRE_PRO_Toothbrush_01\", \"obj_transform\": {\"position\": [2.828, 1.095, 8.565], \"rotation\": [-0.223769292, 0.777987361, 0.564205945, 0.162279785], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.83344, 1.09283185, 8.556581], \"size\": [0.0259375013, 0.2375056, 0.101253361]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 199, \"category\": \"Props\", \"class_name\": \"barsoap\", \"prefab_name\": \"PRE_PRO_Hand_soap_01\", \"obj_transform\": {\"position\": [2.07200027, 0.977, 8.591], \"rotation\": [0.0, 0.46845454, 0.0, 0.8834877], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.072, 0.998697, 8.591], \"size\": [0.150434583, 0.0433942862, 0.136254564]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 200, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [3.256, 0.977, 8.597], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.25599837, 1.0502038, 8.597], \"size\": [0.04111537, 0.1464077, 0.04111485]}, \"properties\": [], \"states\": []}, {\"id\": 201, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [3.184, 0.977, 8.518], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.1839993, 0.992763758, 8.518], \"size\": [0.06455387, 0.03152771, 0.0645537749]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 202, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Conditioner_01\", \"obj_transform\": {\"position\": [3.08100033, 0.977, 8.59], \"rotation\": [0.0, 0.794362247, 0.0, 0.607444346], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.08099937, 1.06751776, 8.59], \"size\": [0.0907172561, 0.181035683, 0.09071696]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 203, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Shampoo_01\", \"obj_transform\": {\"position\": [2.95000029, 0.977, 8.577999], \"rotation\": [0.0, 0.8526156, 0.0, 0.5225386], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.94999981, 1.06751776, 8.577999], \"size\": [0.09943132, 0.181035683, 0.09943113]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 204, \"category\": \"Props\", \"class_name\": \"toothpaste\", \"prefab_name\": \"SHP_PRE_Toothpaste\", \"obj_transform\": {\"position\": [2.966, 0.977, 8.438999], \"rotation\": [0.0, 0.822284341, 0.0, 0.5690769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.953586, 0.993777931, 8.443672], \"size\": [0.185952365, 0.0335556157, 0.108884752]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\", \"CREAM\"], \"states\": [\"CLOSED\"]}, {\"id\": 205, \"category\": \"Props\", \"class_name\": \"toiletpaper\", \"prefab_name\": \"MOD_PRO_Toilet_paper_01\", \"obj_transform\": {\"position\": [3.30599976, 0.973, 5.138], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.22767138, 0.9356487, 5.114679], \"size\": [0.1566548, 0.178975016, 0.2160594]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CUTTABLE\", \"COVER_OBJECT\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 206, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_03_07\", \"obj_transform\": {\"position\": [2.47800016, 0.003, 7.37899971], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [0.813431442, 0.8134315, 0.8134315]}, \"bounding_box\": {\"center\": [2.47800016, 0.0122244153, 7.37900066], \"size\": [2.91699839, 0.0184521638, 0.9234824]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 207, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [4.932, 1.47, 7.0199995], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [0.567573667, 0.567573667, 0.75]}, \"bounding_box\": {\"center\": [4.92016029, 1.47, 7.02000046], \"size\": [0.0236797333, 0.713464737, 0.7167225]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 208, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_02\", \"obj_transform\": {\"position\": [0.662999868, 1.255, 3.80000019], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.663, 1.255, 3.80255318], \"size\": [0.068677865, 0.0936371461, 0.00510568]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 209, \"category\": \"Appliances\", \"class_name\": \"washingmachine\", \"prefab_name\": \"Dark_Grey_Washing_Machine\", \"obj_transform\": {\"position\": [4.49999952, 0.0, 7.0], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [1.20000029, 1.2, 1.20000029]}, \"bounding_box\": {\"center\": [4.499999, 0.499382854, 7.0], \"size\": [0.6621626, 0.9977087, 0.724769831]}, \"properties\": [\"RECIPIENT\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 210, \"category\": \"Rooms\", \"class_name\": \"bedroom\", \"prefab_name\": \"PRE_ROO_Bedroom_03\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.5, 1.25, -3.706], \"size\": [5.5, 3.0, 5.5]}, \"properties\": [], \"states\": []}, {\"id\": 211, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_02\", \"obj_transform\": {\"position\": [6.90400028, 0.001, -1.47500014], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.945553064, 0.945553362, 0.945553362]}, \"bounding_box\": {\"center\": [6.90400028, 1.04867315, -1.47500014], \"size\": [1.99890018, 2.09534621, 0.302577257]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 212, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_03\", \"obj_transform\": {\"position\": [8.0, 0.0, -2.28700018], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.97799969, 0.495000035, -2.28700018], \"size\": [0.523600042, 0.8415001, 0.401200026]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 213, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"PRE_FUR_CPU_table_01_02\", \"obj_transform\": {\"position\": [9.375999, 0.0, -2.298], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.375999, 0.475000024, -2.298], \"size\": [1.06800008, 0.950000048, 2.028]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 214, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_05\", \"obj_transform\": {\"position\": [5.485, 0.0, -3.547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.485, 0.242000014, -3.545], \"size\": [0.748, 0.484000027, 0.748]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 215, \"category\": \"Furniture\", \"class_name\": \"bed\", \"prefab_name\": \"PRE_FUR_Bed_01_01_03\", \"obj_transform\": {\"position\": [6.278, 0.0, -5.08600044], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.27825975, 0.3244711, -5.08600044], \"size\": [2.4011755, 0.6478033, 1.99163246]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\"], \"states\": []}, {\"id\": 216, \"category\": \"Furniture\", \"class_name\": \"cabinet\", \"prefab_name\": \"Cabinet_1\", \"obj_transform\": {\"position\": [9.246608, 0.0, -5.89356661], \"rotation\": [-0.7071068, 0.0, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.246608, 0.525000036, -5.89356661], \"size\": [1.18, 1.05, 0.3800001]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 217, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_01\", \"obj_transform\": {\"position\": [9.95, 1.248, -5.532], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.947448, 1.248, -5.532], \"size\": [0.005105672, 0.0936371461, 0.06867787]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 218, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_01\", \"obj_transform\": {\"position\": [5.052, 0.149, -1.91200006], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.060032, 0.149, -1.912], \"size\": [0.01606408, 0.154280722, 0.09082343]}, \"properties\": [], \"states\": []}, {\"id\": 219, \"category\": \"Electronics\", \"class_name\": \"radio\", \"prefab_name\": \"Radio_6\", \"obj_transform\": {\"position\": [5.641, 0.486169219, -3.558], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.641, 0.662425756, -3.558], \"size\": [0.3399868, 0.365140557, 0.8000002]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"CAN_OPEN\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 220, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [6.631, 0.585, -1.4690001], \"rotation\": [1.4413281e-06, -0.6048808, -1.09483142e-06, 0.7963161], \"scale\": [0.897573531, 0.8975736, 0.89757365]}, \"bounding_box\": {\"center\": [6.632422, 0.6051027, -1.46388876], \"size\": [0.3304212, 0.0407823548, 0.2906683]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 221, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [7.65499973, 1.618, -1.47], \"rotation\": [0.0, 0.3600753, 0.0, 0.932923257], \"scale\": [0.900000036, 0.900000036, 0.900000036]}, \"bounding_box\": {\"center\": [7.65796661, 1.63317549, -1.47269022], \"size\": [0.267383873, 0.030785488, 0.270356059]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 222, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_01\", \"obj_transform\": {\"position\": [6.163, 1.066, -1.4690001], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.163, 1.10658348, -1.46900034], \"size\": [0.273860782, 0.08116754, 0.273860782]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 223, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [7.65400028, 1.584, -1.47100008], \"rotation\": [0.0, 0.184763581, 0.0, 0.982783], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.658147, 1.60086155, -1.47261536], \"size\": [0.2602262, 0.0342060961, 0.28749916]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 224, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [6.633, 0.541, -1.47], \"rotation\": [1.288784e-06, -0.702141643, -1.270873e-06, 0.7120373], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.63308144, 0.5633968, -1.46408963], \"size\": [0.3162357, 0.04543597, 0.253418356]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 225, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [7.685, 1.066, -1.51400018], \"rotation\": [1.49871221e-06, 0.5606986, 1.01486171e-06, 0.828020036], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.68563175, 1.17226326, -1.515581], \"size\": [0.174618617, 0.212528437, 0.1300216]}, \"properties\": [], \"states\": []}, {\"id\": 226, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [6.65, 1.584, -1.47], \"rotation\": [0.0, 0.748798668, 0.0, 0.6627976], \"scale\": [0.891715765, 0.891715765, 0.8917158]}, \"bounding_box\": {\"center\": [6.65, 1.670773, -1.47000027], \"size\": [0.388350457, 0.173547462, 0.290372938]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 227, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [7.159, 1.066, -1.52700007], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.159, 1.08176374, -1.52700019], \"size\": [0.0645537749, 0.03152771, 0.06455387]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 228, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [7.083, 1.066, -1.455], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.083, 1.13920379, -1.45500028], \"size\": [0.04111485, 0.1464077, 0.04111537]}, \"properties\": [], \"states\": []}, {\"id\": 229, \"category\": \"Props\", \"class_name\": \"perfume\", \"prefab_name\": \"PRE_PRO_Perfume_01\", \"obj_transform\": {\"position\": [7.008, 1.066, -1.53200006], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.008, 1.14242268, -1.53200018], \"size\": [0.0532537177, 0.152845576, 0.0532537177]}, \"properties\": [], \"states\": []}, {\"id\": 241, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"FMGP_PRE_Wooden_bowl_1024\", \"obj_transform\": {\"position\": [9.314, 0.937, -2.361], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.37713337, 1.37713337, 1.37713337]}, \"bounding_box\": {\"center\": [9.314, 0.9808954, -2.361], \"size\": [0.3566913, 0.08779088, 0.3566913]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 242, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"FMGP_PRE_Wooden_box_1024\", \"obj_transform\": {\"position\": [6.309, 2.098, -1.47800016], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.5925134, 0.5925134, 0.5925134]}, \"bounding_box\": {\"center\": [6.309, 2.157594, -1.47800016], \"size\": [0.457236648, 0.119188808, 0.263480037]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 243, \"category\": \"Props\", \"class_name\": \"painkillers\", \"prefab_name\": \"SHP_PRE_Painkillers\", \"obj_transform\": {\"position\": [7.25324869, 1.06625056, -1.470225], \"rotation\": [1.73277635e-06, 0.288971841, 5.23037556e-07, 0.9573376], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.25324869, 1.12934339, -1.47022486], \"size\": [0.09543787, 0.126186147, 0.09495075]}, \"properties\": [], \"states\": []}, {\"id\": 246, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"Book_1\", \"obj_transform\": {\"position\": [7.349, 0.685, -1.476], \"rotation\": [0.5000001, 0.5, 0.5, 0.49999994], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.349, 0.685, -1.476], \"size\": [0.05725479, 0.2769183, 0.221235037]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 247, \"category\": \"Props\", \"class_name\": \"notes\", \"prefab_name\": \"Notes_1\", \"obj_transform\": {\"position\": [6.513, 1.113, -1.432], \"rotation\": [0.0, 0.0, -0.20949927, 0.977808833], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.5150485, 1.1175611, -1.432], \"size\": [0.204785347, 0.09925628, 0.1500001]}, \"properties\": [\"GRABBABLE\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 248, \"category\": \"Props\", \"class_name\": \"cellphone\", \"prefab_name\": \"Cellphone_6a\", \"obj_transform\": {\"position\": [8.925063, 0.96, -2.7723577], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.2, 1.2, 1.2]}, \"bounding_box\": {\"center\": [8.925063, 0.96, -2.7723577], \"size\": [0.0540008545, 0.0191999674, 0.131999969]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 249, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_04\", \"obj_transform\": {\"position\": [5.005, 0.0, -2.473], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.004643, 1.029126, -2.47299623], \"size\": [0.122323029, 2.058256, 0.9283974]}, \"properties\": [], \"states\": []}, {\"id\": 250, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [5.038, 0.995, -2.90500021], \"rotation\": [0.0, 0.702525735, 0.0, 0.711658359], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.004643, 0.5, -2.47299623], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 251, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_09\", \"obj_transform\": {\"position\": [7.17, 0.0, -2.877], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.17, 0.0069701, -2.877], \"size\": [1.69976425, 0.0139463525, 1.69976473]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 252, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"HSHP_PRE_DEC_Pillow_01_01\", \"obj_transform\": {\"position\": [5.515328, 0.440117121, -4.61856651], \"rotation\": [0.0, 0.06153321, 0.0, 0.9981051], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.536895, 0.541388869, -4.62453365], \"size\": [0.7523226, 0.202543557, 0.857013345]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 253, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"HSHP_PRE_DEC_Pillow_01_01\", \"obj_transform\": {\"position\": [5.57285357, 0.6463858, -5.46487045], \"rotation\": [0.077141434, -3.37195916e-09, -0.9970202, -4.35811351e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.55148363, 0.54511404, -5.47150946], \"size\": [0.77368474, 0.202543631, 0.874123454]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 254, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_05\", \"obj_transform\": {\"position\": [7.5, 0.0, -3.706], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.5, 2.22767544, -3.706], \"size\": [0.5316591, 0.5451052, 0.5316596]}, \"properties\": [], \"states\": []}, {\"id\": 255, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [7.5, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 0.0, -2.456], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 256, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 0.0, -2.456], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 257, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 0.0, -4.95600033], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 258, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [7.5, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 0.0, -4.95600033], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 259, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [7.5, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 2.50000024, -2.45600915], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 260, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [10.0, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 2.50000024, -2.45600915], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 261, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 2.50000024, -4.95600939], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 262, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [7.5, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 2.50000024, -4.95600939], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 263, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_02_02\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.456], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.24998569, 1.2500093, -2.45600057], \"size\": [2.50004578, 2.50002766, 2.50000119]}, \"properties\": [], \"states\": []}, {\"id\": 264, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Corner_02_02_02\", \"obj_transform\": {\"position\": [5.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 1.25, -4.95599842], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 265, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Corner_02_02_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -2.456], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 1.25, -2.456002], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 266, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_02_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.7071068, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.750014, 1.2500093, -4.95600033], \"size\": [2.50004578, 2.50002766, 2.50000119]}, \"properties\": [], \"states\": []}, {\"id\": 267, \"category\": \"Rooms\", \"class_name\": \"livingroom\", \"prefab_name\": \"PRE_ROO_Livingroom_08\", \"obj_transform\": {\"position\": [11.25, 0.0, -6.1842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75, 1.25, -4.9342], \"size\": [8.0, 3.0, 8.0]}, \"properties\": [], \"states\": []}, {\"id\": 268, \"category\": \"Furniture\", \"class_name\": \"coffeetable\", \"prefab_name\": \"PRE_FUR_Coffee_table_01_12\", \"obj_transform\": {\"position\": [15.976, 0.0, -6.02619934], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.9759979, 0.122000009, -6.02619934], \"size\": [1.28000009, 0.244000018, 1.27999973]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 269, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_08\", \"obj_transform\": {\"position\": [10.238, 0.0, -2.7602], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.238, 1.108, -2.7602005], \"size\": [0.320000023, 2.216, 2.114]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 270, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"PRE_FUR_CPU_table_01_04\", \"obj_transform\": {\"position\": [13.171999, 0.0, -1.8072], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.171999, 0.475000024, -1.80720186], \"size\": [2.02799988, 0.950000048, 1.06799984]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 271, \"category\": \"Furniture\", \"class_name\": \"tvstand\", \"prefab_name\": \"PRE_FUR_TV_stand_01_11\", \"obj_transform\": {\"position\": [15.9939995, 0.002, -4.38419962], \"rotation\": [0.0, 0.7071059, 0.0, 0.707107663], \"scale\": [0.6734972, 0.6734972, 0.6734972]}, \"bounding_box\": {\"center\": [15.9953451, 0.167680323, -4.3842], \"size\": [1.45475507, 0.331360638, 0.5118543]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 272, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_09\", \"obj_transform\": {\"position\": [10.238, 0.0, -7.06719971], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.238, 1.108, -7.06719971], \"size\": [0.320000023, 2.216, 2.114]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 273, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Recliner_01_01_01\", \"obj_transform\": {\"position\": [13.1369743, 0.0, -3.38419986], \"rotation\": [0.0, -0.854045749, 0.0, 0.520198], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.1833115, 0.617000043, -3.473944], \"size\": [0.909217, 1.04890013, 0.282441258]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 274, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_08\", \"obj_transform\": {\"position\": [13.978, 0.0, -7.94619942], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.9759979, 0.242000014, -7.94619942], \"size\": [0.748, 0.484000027, 0.747999966]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 275, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"PRE_FUR_Sofa_02_02_01_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -6.13419962], \"rotation\": [0.0, -1.25169754e-06, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.742, 0.57100004, -6.13419962], \"size\": [1.03869379, 0.9707001, 2.36470222]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 276, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"PRE_FUR_Sofa_02_02_01_02\", \"obj_transform\": {\"position\": [15.946, 0.0, -7.98619938], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.9459982, 0.57100004, -7.99419928], \"size\": [2.36469984, 0.9707001, 1.03869963]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 277, \"category\": \"Furniture\", \"class_name\": \"closet\", \"prefab_name\": \"PRE_FUR_Closet_02_02_01\", \"obj_transform\": {\"position\": [17.1099987, 0.0, -2.55419946], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 1.1825217, -2.43220782], \"size\": [0.623867035, 2.36524463, 1.49973154]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 278, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_01\", \"obj_transform\": {\"position\": [17.111, 1.797, -2.54419947], \"rotation\": [0.0, 0.7071066, 0.0, -0.707106948], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099529, 1.90511858, -2.54420161], \"size\": [0.469722748, 0.241116285, 0.0150446892]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 279, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_02\", \"obj_transform\": {\"position\": [17.1109962, 1.797, -2.41712761], \"rotation\": [0.0, 0.7310622, 0.0, -0.682310939], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.109951, 1.90511858, -2.41720152], \"size\": [0.469642639, 0.241116285, 0.04737425]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 280, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_03\", \"obj_transform\": {\"position\": [17.111, 1.797, -2.31919956], \"rotation\": [0.0, 0.7071066, 0.0, -0.707106948], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099529, 1.90511858, -2.31920171], \"size\": [0.469722748, 0.241116285, 0.0150446892]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 281, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_04\", \"obj_transform\": {\"position\": [17.1109982, 1.797, -2.217263], \"rotation\": [0.0, 0.685278058, 0.0, -0.7282815], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099548, 1.90511858, -2.21720171], \"size\": [0.469768524, 0.241116285, 0.04357004]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 282, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_05\", \"obj_transform\": {\"position\": [17.115, 1.797, -2.1172], \"rotation\": [0.0, 0.6866626, 0.0, -0.7269762], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1139565, 1.90511858, -2.11714363], \"size\": [0.469818115, 0.241116285, 0.0417890549]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 283, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_06\", \"obj_transform\": {\"position\": [17.122, 1.797, -1.84619951], \"rotation\": [0.0, 0.7238253, 0.0, -0.6899833], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1209564, 1.90511858, -1.84625244], \"size\": [0.469905853, 0.241116285, 0.0375015736]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 284, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_07\", \"obj_transform\": {\"position\": [17.13, 1.797, -1.99019957], \"rotation\": [0.0, 0.7238253, 0.0, -0.6899833], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1289558, 1.90511858, -1.99025249], \"size\": [0.469905853, 0.241116285, 0.0375016928]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 285, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_01\", \"obj_transform\": {\"position\": [17.1054, 0.828, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1053963, 0.928222537, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 286, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_02\", \"obj_transform\": {\"position\": [17.1099987, 0.5991, -2.92779946], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 0.6993225, -2.9278], \"size\": [0.565374732, 0.200446546, 0.459288418]}, \"properties\": [], \"states\": []}, {\"id\": 287, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_03\", \"obj_transform\": {\"position\": [17.1099987, 0.37, -2.92819953], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 0.470222533, -2.9282], \"size\": [0.565374732, 0.200446546, 0.459288418]}, \"properties\": [], \"states\": []}, {\"id\": 288, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_04\", \"obj_transform\": {\"position\": [17.105, 0.598, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1049957, 0.6982225, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 289, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_05\", \"obj_transform\": {\"position\": [17.105, 0.3673, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1049957, 0.467522532, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 290, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_06\", \"obj_transform\": {\"position\": [17.1099987, 0.1393, -2.92819953], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 0.239522517, -2.9282], \"size\": [0.565374732, 0.200446546, 0.459288418]}, \"properties\": [], \"states\": []}, {\"id\": 291, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_07\", \"obj_transform\": {\"position\": [17.105, 0.1386, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1049957, 0.23882255, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 292, \"category\": \"Electronics\", \"class_name\": \"computer\", \"prefab_name\": \"PRE_ELE_CPU_case_01\", \"obj_transform\": {\"position\": [13.872, 0.0, -1.98720026], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.8719988, 0.367990226, -1.99220407], \"size\": [0.258682221, 0.7359814, 0.7459847]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\"], \"states\": [\"OFF\"]}, {\"id\": 293, \"category\": \"Electronics\", \"class_name\": \"cpuscreen\", \"prefab_name\": \"PRE_ELE_CPU_screen_02\", \"obj_transform\": {\"position\": [13.1519995, 0.95, -1.84719992], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.1519976, 1.2888025, -1.88289154], \"size\": [0.9265996, 0.6776071, 0.288628072]}, \"properties\": [], \"states\": []}, {\"id\": 294, \"category\": \"Electronics\", \"class_name\": \"keyboard\", \"prefab_name\": \"PRE_ELE_Keyboard_05\", \"obj_transform\": {\"position\": [13.112999, 0.95, -2.16719961], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.112999, 0.9745669, -2.167202], \"size\": [0.707199037, 0.04913636, 0.221636161]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 295, \"category\": \"Electronics\", \"class_name\": \"mousemat\", \"prefab_name\": \"PRE_ELE_Mouse_mat_05\", \"obj_transform\": {\"position\": [13.8119993, 0.95, -2.06720018], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.8119984, 0.9535819, -2.067201], \"size\": [0.436930478, 0.00716543244, 0.432462156]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 296, \"category\": \"Electronics\", \"class_name\": \"mouse\", \"prefab_name\": \"PRE_ELE_Mouse_01\", \"obj_transform\": {\"position\": [13.9049988, 0.96, -1.97919989], \"rotation\": [0.0, 0.8364398, 0.0, 0.548059], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.9049988, 0.98012507, -1.97920191], \"size\": [0.169668853, 0.0402507074, 0.2085543]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 297, \"category\": \"Electronics\", \"class_name\": \"tv\", \"prefab_name\": \"PRE_ELE_TV_01\", \"obj_transform\": {\"position\": [15.9769993, 0.337, -4.34519958], \"rotation\": [0.0, 0.7071059, 0.0, 0.707107663], \"scale\": [0.6734972, 0.6734972, 0.6734972]}, \"bounding_box\": {\"center\": [15.9769955, 0.7671747, -4.34519958], \"size\": [1.15586412, 0.8603518, 0.246017545]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\", \"HAS_PLUG\"], \"states\": [\"OFF\"]}, {\"id\": 298, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_01\", \"obj_transform\": {\"position\": [10.0478, 0.151, -5.4993], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.0558319, 0.151, -5.4993], \"size\": [0.01606408, 0.154280722, 0.09082343]}, \"properties\": [], \"states\": []}, {\"id\": 299, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_03\", \"obj_transform\": {\"position\": [10.051, 1.128, -4.3222], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.0535517, 1.128, -4.322201], \"size\": [0.00510567147, 0.0936371461, 0.068677865]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 300, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_08\", \"obj_transform\": {\"position\": [11.287, 0.0, -4.9132], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.287, 0.0069701, -4.9132], \"size\": [1.69976425, 0.0139463525, 1.69976425]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 301, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_06\", \"obj_transform\": {\"position\": [13.206, 1.438, -8.634199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.206, 1.438, -8.613089], \"size\": [0.9584053, 1.25342965, 0.0422530174]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 302, \"category\": \"Decor\", \"class_name\": \"orchid\", \"prefab_name\": \"PRE_DEC_Orchid_01\", \"obj_transform\": {\"position\": [15.9499989, 0.246, -5.98419952], \"rotation\": [0.0, -0.500201, 0.0, 0.865909338], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.95, 0.342992067, -5.98419952], \"size\": [0.2402935, 0.193984792, 0.2402935]}, \"properties\": [], \"states\": []}, {\"id\": 303, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [12.42, 1.473, -8.6352], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [12.420002, 1.47300017, -8.61434], \"size\": [0.955631256, 1.2570436, 0.041721344]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 304, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_06\", \"obj_transform\": {\"position\": [17.4119987, -0.036, -4.934199], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.40256, 2.01888561, -4.934317], \"size\": [0.0259928685, 0.0333948135, 2.328011]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 305, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_02\", \"obj_transform\": {\"position\": [17.403, -0.033, -4.15319872], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.374012, 1.45854831, -4.14719], \"size\": [0.107336044, 1.15232611, 0.593183756]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 306, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_01\", \"obj_transform\": {\"position\": [17.406, -0.033, -5.704199], \"rotation\": [0.0, -1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.37701, 1.45854843, -5.71020126], \"size\": [0.107336044, 1.15232587, 0.5931835]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 307, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_14\", \"obj_transform\": {\"position\": [13.894, 0.652, -5.67319965], \"rotation\": [0.156342983, 0.0256116986, -0.00408370048, 0.987362266], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.917572, 0.7493275, -5.646211], \"size\": [0.7022148, 0.434173822, 0.8392429]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 308, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_13\", \"obj_transform\": {\"position\": [13.8949747, 0.5832388, -6.1096], \"rotation\": [0.0, -0.124900252, 0.0, 0.992169261], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.9172306, 0.6845105, -6.10728455], \"size\": [0.8344189, 0.202543557, 0.921215]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 309, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_12\", \"obj_transform\": {\"position\": [15.4901476, 0.7394661, -8.160517], \"rotation\": [0.2239785, -0.6849591, -0.3087206, 0.620770752], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.4982691, 0.795521736, -8.073635], \"size\": [0.8736327, 0.713223338, 0.643139541]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 310, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_11\", \"obj_transform\": {\"position\": [16.5313454, 0.583238661, -7.867544], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.5346165, 0.6845104, -7.845407], \"size\": [0.7817019, 0.202543557, 0.661311567]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 311, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"PRE_PRO_Clothes_pile_09\", \"obj_transform\": {\"position\": [10.218, 0.568, -6.8082], \"rotation\": [0.0, -0.7757056, 0.0, 0.631095052], \"scale\": [0.7687373, 0.7687374, 0.7687374]}, \"bounding_box\": {\"center\": [10.2180014, 0.6304647, -6.8082], \"size\": [0.304214478, 0.124930143, 0.377536774]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 312, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"PRE_PRO_Clothes_pile_04\", \"obj_transform\": {\"position\": [10.222, 0.57, -2.48220038], \"rotation\": [0.0, -0.645543, 0.0, 0.763724], \"scale\": [0.807375968, 0.807375968, 0.807376]}, \"bounding_box\": {\"center\": [10.2220011, 0.635604262, -2.48220158], \"size\": [0.308263779, 0.131209373, 0.3896227]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 313, \"category\": \"Props\", \"class_name\": \"perfume\", \"prefab_name\": \"PRE_PRO_Perfume_01\", \"obj_transform\": {\"position\": [10.2406654, 1.12658966, -7.447302], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2406654, 1.20301235, -7.447302], \"size\": [0.05325372, 0.152845576, 0.05325372]}, \"properties\": [], \"states\": []}, {\"id\": 314, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [10.2370014, 1.12658954, -7.276342], \"rotation\": [0.0, 0.278419465, 0.0, 0.9604596], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.23844, 1.23285282, -7.27725267], \"size\": [0.149286941, 0.212527975, 0.174105883]}, \"properties\": [], \"states\": []}, {\"id\": 315, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [10.2406206, 1.12658966, -3.00135446], \"rotation\": [0.0, -0.00674444437, 0.0, 0.999977231], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2406206, 1.14235342, -3.00135565], \"size\": [0.06541863, 0.03152771, 0.06541873]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 316, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [10.2892666, 1.12658954, -3.11244464], \"rotation\": [0.0, -0.141818076, 0.0, 0.98989284], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2892666, 1.19979334, -3.11244583], \"size\": [0.0510049462, 0.1464077, 0.0510052964]}, \"properties\": [], \"states\": []}, {\"id\": 317, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Conditioner_01\", \"obj_transform\": {\"position\": [10.215, 1.674, -2.45920014], \"rotation\": [0.0, 0.1577926, 0.0, 0.9874723], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.215, 1.76451778, -2.45920157], \"size\": [0.09328605, 0.181035683, 0.09328632]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 318, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Shampoo_01\", \"obj_transform\": {\"position\": [10.2761278, 1.67444026, -2.59102273], \"rotation\": [0.0, 0.00144836307, 0.0, 0.9999989], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2761278, 1.764958, -2.591024], \"size\": [0.07414263, 0.181035683, 0.07414305]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 319, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_02\", \"obj_transform\": {\"position\": [10.205, 1.6753, -6.77219963], \"rotation\": [0.0, 0.9855776, 0.0, -0.169224411], \"scale\": [0.709448, 0.709448, 0.709448]}, \"bounding_box\": {\"center\": [10.205, 1.74433649, -6.77219963], \"size\": [0.2820773, 0.138074145, 0.3365816]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 320, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [10.2361, 1.124, -3.5352], \"rotation\": [0.0, -0.151940525, 0.0, 0.9883896], \"scale\": [0.6644365, 0.6644365, 0.6644365]}, \"bounding_box\": {\"center\": [10.2361, 1.18865645, -3.535201], \"size\": [0.257304579, 0.129313931, 0.3120644]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 324, \"category\": \"Props\", \"class_name\": \"milkshake\", \"prefab_name\": \"DHP_PRE_Milkshake_1024\", \"obj_transform\": {\"position\": [15.6958609, 0.245397717, -6.30516], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [15.69586, 0.397076219, -6.321452], \"size\": [0.0915312, 0.302952021, 0.122949891]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 326, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [10.249, 1.282, -2.51700068], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.249, 1.282, -2.51700115], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 327, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_2\", \"obj_transform\": {\"position\": [10.2413273, 1.282, -2.8736105], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2413273, 1.282, -2.8736105], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 328, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [10.246, 1.282, -2.613], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.246, 1.282, -2.613], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 329, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_4\", \"obj_transform\": {\"position\": [10.244, 1.282, -2.70800066], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.244, 1.282, -2.70800114], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 330, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_08\", \"obj_transform\": {\"position\": [12.5, 0.0, -4.9342], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [12.5, 2.22767544, -4.93420029], \"size\": [0.5316601, 0.5451052, 0.5316591]}, \"properties\": [], \"states\": []}, {\"id\": 331, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [12.1629992, 0.747, -1.23220015], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [0.595147252, 0.595147252, 0.595147252]}, \"bounding_box\": {\"center\": [12.1629963, 1.490934, -1.283195], \"size\": [0.130836412, 0.513281941, 0.101986192]}, \"properties\": [], \"states\": []}, {\"id\": 332, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [14.197, 0.747, -1.23220015], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [14.1969957, 1.49093378, -1.283195], \"size\": [0.130836353, 0.513281763, 0.101986155]}, \"properties\": [], \"states\": []}, {\"id\": 333, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [11.3810005, 0.747, -8.634199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [11.3810034, 1.49093378, -8.583206], \"size\": [0.130836353, 0.513281763, 0.101986155]}, \"properties\": [], \"states\": []}, {\"id\": 334, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [13.415, 0.747, -8.634199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [13.4150009, 1.49093378, -8.583206], \"size\": [0.130836353, 0.513281763, 0.101986155]}, \"properties\": [], \"states\": []}, {\"id\": 335, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [17.446, 0.747, -3.510199], \"rotation\": [0.0, -1.00000012, 0.0, -4.21404839e-05], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [17.3950062, 1.49093378, -3.51020169], \"size\": [0.101997212, 0.513281763, 0.130845]}, \"properties\": [], \"states\": []}, {\"id\": 336, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_03\", \"obj_transform\": {\"position\": [17.446, 0.747, -6.408199], \"rotation\": [0.0, -1.00000012, 0.0, -4.21404839e-05], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [17.3950062, 1.49093378, -6.40820026], \"size\": [0.101997212, 0.513281763, 0.130845]}, \"properties\": [], \"states\": []}, {\"id\": 337, \"category\": \"Lamps\", \"class_name\": \"tablelamp\", \"prefab_name\": \"PRE_LAM_Table_lamp_02_09\", \"obj_transform\": {\"position\": [13.9831829, 0.486169219, -7.94010735], \"rotation\": [0.0, -0.5040835, 0.0, 0.8636549], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.983181, 0.7775964, -7.94010735], \"size\": [0.364088058, 0.577501655, 0.371665955]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 338, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_01_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -8.684199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.7500029, 1.24999988, -8.654199], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 339, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_01_03\", \"obj_transform\": {\"position\": [13.749999, 0.0, -1.18419981], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.7499933, 1.24999988, -1.21420193], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 340, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_01_03\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.9342], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.0299988, 1.24999571, -4.934205], \"size\": [0.06000357, 2.50000954, 2.500009]}, \"properties\": [], \"states\": []}, {\"id\": 341, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Window_02_01_03\", \"obj_transform\": {\"position\": [17.5, 0.0, -4.934199], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.4700012, 1.24999344, -4.93419075], \"size\": [0.0599976741, 2.50002646, 2.50001764]}, \"properties\": [], \"states\": []}, {\"id\": 342, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -1.18420029], \"rotation\": [0.0, -0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.2500019, 1.25, -2.43420219], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 343, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [10.0, 0.0, -7.4342], \"rotation\": [0.0, 8.940697e-08, 0.0, -1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25, 1.25, -7.43419743], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 344, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -8.684199], \"rotation\": [0.0, 0.7071068, 0.0, -0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.2499981, 1.25, -7.43419838], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 345, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_01_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -1.18419981], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 1.2500093, -2.43418741], \"size\": [2.50000143, 2.50002766, 2.500046]}, \"properties\": [], \"states\": []}, {\"id\": 346, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [11.25, 0.0, -6.1842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25001, 2.50000024, -7.43420029], \"size\": [2.5, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 347, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [11.25, 0.0, -3.6842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25001, 2.50000024, -4.93420029], \"size\": [2.5, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 348, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [11.25, 0.0, -1.18420029], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.2500086, 2.50000024, -2.43420029], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 349, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [13.749999, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.7500086, 2.50000024, -2.43419981], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 350, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [13.75, 0.0, -3.68419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75001, 2.50000024, -4.9342], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 351, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [13.75, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75001, 2.50000024, -7.43419933], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 352, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [16.25, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25001, 2.50000024, -7.43419933], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 353, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [16.25, 0.0, -3.68419957], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25001, 2.50000024, -4.93419933], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 354, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [16.25, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25001, 2.50000024, -2.43419981], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 355, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -6.1842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25, 0.0, -7.43420029], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 356, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -3.6842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25, 0.0, -4.93420029], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 357, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -1.18420029], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.249999, 0.0, -2.43420029], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 358, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [13.749999, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.749999, 0.0, -2.43419981], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 359, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -3.68419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75, 0.0, -4.9342], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 360, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75, 0.0, -7.43419933], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 361, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 0.0, -7.43419933], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 362, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -3.68419957], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 0.0, -4.93419933], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 363, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 0.0, -2.43419981], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 364, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.9362], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.999643, 1.029126, -4.93619633], \"size\": [0.122323252, 2.058256, 0.9283974]}, \"properties\": [], \"states\": []}, {\"id\": 365, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_05\", \"obj_transform\": {\"position\": [16.23, 0.0, -1.183001], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.2300034, 1.029126, -1.18264413], \"size\": [0.928398132, 2.058256, 0.122323155]}, \"properties\": [], \"states\": []}, {\"id\": 366, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [10.033, 0.995, -5.3722], \"rotation\": [0.0, -0.926572442, 0.0, -0.3761163], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.999643, 0.5, -4.93619633], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 367, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_06\", \"obj_transform\": {\"position\": [17.5, 0.0, -4.93419933], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.5000648, 1.50000024, -4.934201], \"size\": [0.113748126, 1.02450514, 2.11254787]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 368, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [-2.0140967029920236, 0.5363512, 0.11129435493951083], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-2.0140967029920236, 0.601005256, 0.11129420093951083], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 369, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [1.4905642219851611, 0.8109554, -0.27770796982958457], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [1.4905642219851611, 0.875609457, -0.2777081238295846], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 370, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [1.49940183869247, 0.8111615, -0.11608166856579936], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.49940183869247, 0.864092, -0.11608166856579936], \"size\": [0.104654, 0.105861, 0.104654]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 371, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [-2.2299446673260883, 2.22249985, -3.006583998509498], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.2299446673260883, 2.27543044, -3.006583998509498], \"size\": [0.104654, 0.105861, 0.104654]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 372, \"category\": \"PRE_PRO_Wine_glass_01 1\", \"class_name\": \"wineglass\", \"prefab_name\": \"PRE_PRO_Wine_glass_01 1\", \"obj_transform\": {\"position\": [1.1681561308636845, 0.811161637, -0.1402307237643052], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.1681561308636845, 0.90626657, -0.1402312227643052], \"size\": [0.08954637, 0.190210134, 0.089546375]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 373, \"category\": \"PRE_PRO_Plate_01\", \"class_name\": \"plate\", \"prefab_name\": \"PRE_PRO_Plate_01\", \"obj_transform\": {\"position\": [-2.0064858770089673, 1.09304845, 3.3614186980355316], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.0064858770089673, 1.10265982, 3.3614186980355316], \"size\": [0.290419757, 0.0192230251, 0.290419757]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 374, \"category\": \"PRE_PRO_Plate_01\", \"class_name\": \"plate\", \"prefab_name\": \"PRE_PRO_Plate_01\", \"obj_transform\": {\"position\": [-2.1109023212072917, 0.709982157, -1.7771983390698334], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.1109023212072917, 0.7195935, -1.7771984690698335], \"size\": [0.290419757, 0.0192230251, 0.290419757]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 375, \"category\": \"PRE_PRO_Fork_01\", \"class_name\": \"cutleryfork\", \"prefab_name\": \"PRE_PRO_Fork_01\", \"obj_transform\": {\"position\": [1.2678633300067141, 0.818146944, 0.07001249478624999], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.3088790600067142, 0.820860565, 0.07001250598624999], \"size\": [0.26143527, 0.0193981566, 0.0257531479]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 376, \"category\": \"PRE_PRO_Plate_01\", \"class_name\": \"plate\", \"prefab_name\": \"PRE_PRO_Plate_01\", \"obj_transform\": {\"position\": [-2.0944283494769005, 0.536557436, 0.1840207127483504], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.0944283494769005, 0.5461688, 0.18402065274835042], \"size\": [0.290419757, 0.0192230251, 0.290419757]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 377, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [1.4165741430597019, 0.811161637, -0.2539924513050158], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.4165741430597019, 0.8628846, -0.25399246630501576], \"size\": [0.0497071035, 0.103446111, 0.0573968068]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 378, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [4.228993565916918, 0.583069861, 0.8116473485103007], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.229209565916918, 0.6007386, 0.8116848895103007], \"size\": [0.202, 0.035, 0.082]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 379, \"category\": \"PRE_PRO_Water_glass_01\", \"class_name\": \"waterglass\", \"prefab_name\": \"PRE_PRO_Water_glass_01\", \"obj_transform\": {\"position\": [4.270737421285663, 0.5832387, 0.8460603356049778], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.270737421285663, 0.6449637, 0.8460599936049779], \"size\": [0.08951233, 0.123450167, 0.08951233]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 380, \"category\": \"PRE_PRO_Water_glass_01\", \"class_name\": \"waterglass\", \"prefab_name\": \"PRE_PRO_Water_glass_01\", \"obj_transform\": {\"position\": [1.2276627844251558, 0.811161637, -0.2580394505585064], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2276627844251558, 0.8728866, -0.25803983055850643], \"size\": [0.08951233, 0.123450167, 0.08951233]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 381, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [1.7398047456821173, 0.81407094, -0.23076594395854466], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [1.7398047456821173, 1.01648211, -0.23076639595854465], \"size\": [0.271924824, 0.410641223, 0.1577565]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 382, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [-1.8603093676230695, 1.09304845, 3.41648740623474], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.8603093676230695, 1.14477146, 3.41648740623474], \"size\": [0.0497071035, 0.103446111, 0.0573968068]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 383, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [1.0174518255327905, 0.81407094, -0.35097695972039866], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [1.0174518255327905, 1.01648211, -0.3509774067203987], \"size\": [0.271924824, 0.410641223, 0.1577565]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 384, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [1.0659179376590355, 0.81407094, -0.5322789260446567], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [1.0659179376590355, 1.01648211, -0.5322793840446567], \"size\": [0.271924824, 0.410641223, 0.1577565]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 385, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [4.207133486116334, 0.586148, 0.5254770797034688], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [4.207133486116334, 0.7885592, 0.5254766177034688], \"size\": [0.271924824, 0.410641223, 0.1577565]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 386, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [9.242075794016074, 0.774400651, -5.904298999154816], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [9.242075794016074, 0.8390547, -5.904298999154816], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 387, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [9.361346350691866, 0.774400651, -5.864483100048638], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [9.361346350691866, 0.8390547, -5.864483100048638], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 388, \"category\": \"PRE_PRO_Water_glass_01\", \"class_name\": \"waterglass\", \"prefab_name\": \"PRE_PRO_Water_glass_01\", \"obj_transform\": {\"position\": [9.224653028842795, 0.7746069, -5.857767518321572], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.224653028842795, 0.836331844, -5.857768038321572], \"size\": [0.08951233, 0.123450167, 0.08951233]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 389, \"category\": \"PRE_PRO_Water_glass_01\", \"class_name\": \"waterglass\", \"prefab_name\": \"PRE_PRO_Water_glass_01\", \"obj_transform\": {\"position\": [9.104107223313973, 0.774607, -5.871723214333811], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.104107223313973, 0.836331964, -5.871723914333812], \"size\": [0.08951233, 0.123450167, 0.08951233]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 390, \"category\": \"PRE_PRO_Condiment_01\", \"class_name\": \"condimentbottle\", \"prefab_name\": \"PRE_PRO_Condiment_01\", \"obj_transform\": {\"position\": [9.268368818970236, 0.7746069, -5.94363567784432], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.268368818970236, 0.8764975, -5.94363628784432], \"size\": [0.0603268258, 0.203781426, 0.06032738]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}], \"edges\": [{\"from_id\": 368, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 369, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 370, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 371, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 372, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 373, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 374, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 375, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 376, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 377, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 378, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 379, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 380, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 381, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 382, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 383, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 384, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 385, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 12, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 13, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 14, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 15, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 16, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 17, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 18, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 19, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 20, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 21, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 22, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 23, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 24, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 25, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 26, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 27, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 28, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 29, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 30, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 31, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 32, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 33, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 34, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 35, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 36, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 37, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 38, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 39, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 40, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 41, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 42, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 43, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 44, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 45, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 46, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 49, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 50, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 51, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 52, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 53, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 54, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 55, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 56, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 57, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 58, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 59, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 60, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 62, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 63, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 64, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 65, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 66, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 68, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 69, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 70, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 71, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 72, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 73, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 74, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 75, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 76, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 77, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 78, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 79, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 80, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 81, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 82, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 83, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 84, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 85, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 86, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 87, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 88, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 89, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 90, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 91, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 92, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 93, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 94, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 95, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 96, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 97, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 98, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 99, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 100, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 101, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 102, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 103, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 104, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 105, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 106, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 107, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 108, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 109, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 111, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 112, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 113, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 114, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 115, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 118, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 119, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 120, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 121, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 122, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 124, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 129, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 132, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 135, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 136, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 138, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 144, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 145, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 146, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 151, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 152, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 153, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 154, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 155, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 156, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 157, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 158, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 159, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 160, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 161, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 162, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 163, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 164, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 165, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 166, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 167, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 168, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 169, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 170, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 171, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 173, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 174, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 175, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 176, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 177, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 178, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 179, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 180, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 181, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 182, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 183, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 184, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 185, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 186, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 187, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 188, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 189, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 190, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 191, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 192, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 193, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 194, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 195, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 196, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 197, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 199, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 200, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 201, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 202, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 203, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 204, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 205, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 206, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 207, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 208, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 209, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 386, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 387, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 388, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 389, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 390, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 211, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 212, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 213, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 214, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 215, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 216, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 217, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 218, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 219, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 220, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 221, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 222, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 223, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 224, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 225, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 226, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 227, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 228, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 229, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 241, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 242, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 243, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 246, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 247, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 248, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 249, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 250, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 251, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 252, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 253, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 254, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 255, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 256, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 257, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 258, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 259, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 260, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 261, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 262, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 263, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 264, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 265, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 266, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 268, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 269, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 270, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 271, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 272, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 273, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 274, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 275, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 276, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 277, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 278, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 279, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 280, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 281, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 282, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 283, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 284, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 285, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 286, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 287, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 288, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 289, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 290, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 291, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 292, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 293, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 294, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 295, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 296, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 297, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 298, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 299, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 300, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 301, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 302, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 303, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 304, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 305, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 306, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 307, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 308, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 309, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 310, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 311, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 312, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 313, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 314, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 315, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 316, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 317, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 318, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 319, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 320, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 324, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 326, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 327, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 328, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 329, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 330, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 331, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 332, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 333, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 334, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 335, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 336, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 337, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 338, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 339, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 340, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 341, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 342, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 343, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 344, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 345, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 346, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 347, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 348, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 349, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 350, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 351, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 352, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 353, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 354, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 355, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 356, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 357, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 358, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 359, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 360, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 361, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 362, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 363, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 364, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 365, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 366, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 367, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 46, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 49, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 49, \"to_id\": 104, \"relation_type\": \"ON\"}, {\"from_id\": 50, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 51, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 52, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 53, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 54, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 55, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 56, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 57, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 58, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 59, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 60, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 60, \"to_id\": 87, \"relation_type\": \"ON\"}, {\"from_id\": 62, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 63, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 64, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 65, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 66, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 72, \"to_id\": 13, \"relation_type\": \"ON\"}, {\"from_id\": 74, \"to_id\": 38, \"relation_type\": \"ON\"}, {\"from_id\": 83, \"to_id\": 82, \"relation_type\": \"ON\"}, {\"from_id\": 84, \"to_id\": 85, \"relation_type\": \"ON\"}, {\"from_id\": 86, \"to_id\": 84, \"relation_type\": \"ON\"}, {\"from_id\": 86, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 87, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 87, \"to_id\": 89, \"relation_type\": \"ON\"}, {\"from_id\": 89, \"to_id\": 88, \"relation_type\": \"ON\"}, {\"from_id\": 91, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 92, \"to_id\": 19, \"relation_type\": \"ON\"}, {\"from_id\": 93, \"to_id\": 19, \"relation_type\": \"ON\"}, {\"from_id\": 95, \"to_id\": 14, \"relation_type\": \"ON\"}, {\"from_id\": 96, \"to_id\": 15, \"relation_type\": \"ON\"}, {\"from_id\": 99, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 99, \"to_id\": 87, \"relation_type\": \"ON\"}, {\"from_id\": 100, \"to_id\": 99, \"relation_type\": \"ON\"}, {\"from_id\": 101, \"to_id\": 99, \"relation_type\": \"ON\"}, {\"from_id\": 107, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 108, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 109, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 111, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 112, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 118, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 119, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 120, \"to_id\": 105, \"relation_type\": \"ON\"}, {\"from_id\": 121, \"to_id\": 105, \"relation_type\": \"ON\"}, {\"from_id\": 122, \"to_id\": 105, \"relation_type\": \"ON\"}, {\"from_id\": 124, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 129, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 132, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 135, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 136, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 138, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 144, \"to_id\": 145, \"relation_type\": \"ON\"}, {\"from_id\": 144, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 145, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 146, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 151, \"to_id\": 153, \"relation_type\": \"ON\"}, {\"from_id\": 151, \"to_id\": 154, \"relation_type\": \"ON\"}, {\"from_id\": 152, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 152, \"to_id\": 154, \"relation_type\": \"ON\"}, {\"from_id\": 153, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 154, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 155, \"to_id\": 96, \"relation_type\": \"ON\"}, {\"from_id\": 156, \"to_id\": 96, \"relation_type\": \"ON\"}, {\"from_id\": 157, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 159, \"to_id\": 95, \"relation_type\": \"ON\"}, {\"from_id\": 160, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 162, \"to_id\": 32, \"relation_type\": \"ON\"}, {\"from_id\": 163, \"to_id\": 32, \"relation_type\": \"ON\"}, {\"from_id\": 188, \"to_id\": 183, \"relation_type\": \"ON\"}, {\"from_id\": 190, \"to_id\": 174, \"relation_type\": \"ON\"}, {\"from_id\": 191, \"to_id\": 183, \"relation_type\": \"ON\"}, {\"from_id\": 194, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 196, \"to_id\": 184, \"relation_type\": \"ON\"}, {\"from_id\": 197, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 199, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 200, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 201, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 202, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 203, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 204, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 206, \"to_id\": 184, \"relation_type\": \"ON\"}, {\"from_id\": 209, \"to_id\": 184, \"relation_type\": \"ON\"}, {\"from_id\": 211, \"to_id\": 255, \"relation_type\": \"ON\"}, {\"from_id\": 213, \"to_id\": 256, \"relation_type\": \"ON\"}, {\"from_id\": 214, \"to_id\": 255, \"relation_type\": \"ON\"}, {\"from_id\": 215, \"to_id\": 258, \"relation_type\": \"ON\"}, {\"from_id\": 216, \"to_id\": 257, \"relation_type\": \"ON\"}, {\"from_id\": 219, \"to_id\": 214, \"relation_type\": \"ON\"}, {\"from_id\": 220, \"to_id\": 224, \"relation_type\": \"ON\"}, {\"from_id\": 221, \"to_id\": 223, \"relation_type\": \"ON\"}, {\"from_id\": 241, \"to_id\": 213, \"relation_type\": \"ON\"}, {\"from_id\": 242, \"to_id\": 211, \"relation_type\": \"ON\"}, {\"from_id\": 248, \"to_id\": 213, \"relation_type\": \"ON\"}, {\"from_id\": 268, \"to_id\": 362, \"relation_type\": \"ON\"}, {\"from_id\": 269, \"to_id\": 357, \"relation_type\": \"ON\"}, {\"from_id\": 270, \"to_id\": 358, \"relation_type\": \"ON\"}, {\"from_id\": 271, \"to_id\": 362, \"relation_type\": \"ON\"}, {\"from_id\": 272, \"to_id\": 355, \"relation_type\": \"ON\"}, {\"from_id\": 274, \"to_id\": 360, \"relation_type\": \"ON\"}, {\"from_id\": 285, \"to_id\": 288, \"relation_type\": \"ON\"}, {\"from_id\": 286, \"to_id\": 287, \"relation_type\": \"ON\"}, {\"from_id\": 287, \"to_id\": 290, \"relation_type\": \"ON\"}, {\"from_id\": 288, \"to_id\": 289, \"relation_type\": \"ON\"}, {\"from_id\": 289, \"to_id\": 291, \"relation_type\": \"ON\"}, {\"from_id\": 293, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 294, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 295, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 296, \"to_id\": 295, \"relation_type\": \"ON\"}, {\"from_id\": 296, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 297, \"to_id\": 271, \"relation_type\": \"ON\"}, {\"from_id\": 302, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 308, \"to_id\": 275, \"relation_type\": \"ON\"}, {\"from_id\": 319, \"to_id\": 272, \"relation_type\": \"ON\"}, {\"from_id\": 324, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 337, \"to_id\": 274, \"relation_type\": \"ON\"}, {\"from_id\": 368, \"to_id\": 106, \"relation_type\": \"ON\"}, {\"from_id\": 369, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 370, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 372, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 373, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 375, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 376, \"to_id\": 106, \"relation_type\": \"ON\"}, {\"from_id\": 377, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 380, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 381, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 382, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 383, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 384, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 371, \"to_id\": 76, \"relation_type\": \"INSIDE\"}, {\"from_id\": 109, \"to_id\": 86, \"relation_type\": \"ON\"}, {\"from_id\": 379, \"to_id\": 94, \"relation_type\": \"ON\"}, {\"from_id\": 385, \"to_id\": 94, \"relation_type\": \"ON\"}, {\"from_id\": 100, \"to_id\": 99, \"relation_type\": \"INSIDE\"}, {\"from_id\": 101, \"to_id\": 99, \"relation_type\": \"INSIDE\"}, {\"from_id\": 374, \"to_id\": 104, \"relation_type\": \"INSIDE\"}, {\"from_id\": 107, \"to_id\": 104, \"relation_type\": \"ON\"}, {\"from_id\": 376, \"to_id\": 105, \"relation_type\": \"INSIDE\"}, {\"from_id\": 106, \"to_id\": 105, \"relation_type\": \"INSIDE\"}, {\"from_id\": 368, \"to_id\": 105, \"relation_type\": \"INSIDE\"}, {\"from_id\": 108, \"to_id\": 107, \"relation_type\": \"INSIDE\"}, {\"from_id\": 373, \"to_id\": 109, \"relation_type\": \"INSIDE\"}, {\"from_id\": 382, \"to_id\": 109, \"relation_type\": \"INSIDE\"}, {\"from_id\": 229, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 228, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 227, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 243, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 247, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 220, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 224, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 246, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 226, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 222, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 225, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 223, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 221, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 212, \"to_id\": 251, \"relation_type\": \"ON\"}, {\"from_id\": 253, \"to_id\": 215, \"relation_type\": \"ON\"}, {\"from_id\": 252, \"to_id\": 215, \"relation_type\": \"ON\"}, {\"from_id\": 386, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 388, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 389, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 387, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 390, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 329, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 327, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 328, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 315, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 326, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 316, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 312, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 318, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 317, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 320, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 314, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 313, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 311, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 319, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 307, \"to_id\": 275, \"relation_type\": \"ON\"}, {\"from_id\": 309, \"to_id\": 276, \"relation_type\": \"ON\"}, {\"from_id\": 310, \"to_id\": 276, \"relation_type\": \"ON\"}, {\"from_id\": 285, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 288, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 286, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 279, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 278, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 280, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 281, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 289, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 282, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 284, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 287, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 283, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 291, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 290, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 295, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 273, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 297, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 271, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 287, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 290, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 286, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 307, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 316, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 300, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 320, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 302, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 299, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 268, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 324, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 271, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 302, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 367, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 268, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 324, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 307, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 308, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 275, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 310, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 276, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 309, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 337, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 274, \"to_id\": 297, \"relation_type\": \"FACING\"}]}"]}
Processing
Successfully de-serialized object
alignment took: alignment: 2
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_04_/PRE_ROO_Bathroom_03/SHP_PRE_Toothpaste/Collider"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_04_/PRE_ROO_Bedroom_03/Cabinet_1/door2"
HEre
HEre
Waiting for request
Received request: {"id": "1652820241.1492436", "action": "add_character", "stringParams": ["{\"character_resource\": \"Chars/Female1\", \"mode\": \"fix_room\", \"character_position\": {\"x\": 0, \"y\": 0, \"z\": 0}, \"initial_room\": \"bedroom\"}"]}
Processing
HEre
HEre
Waiting for request
Received request: {"id": "1652820241.2772222", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820242.202332", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820242.5325954", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820256.5799348", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <cabinet> (216)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820256.6373734", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820260.4127474", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <cupcake> (387)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820260.5357082", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820262.8286834", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <cupcake> (386)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820262.9504218", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820267.446978", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820267.4774246", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820267.7607627", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820267.7886345", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820268.1206295", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820268.1396961", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820268.451264", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820268.4767087", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820268.780937", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820268.81206", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820269.1533294", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652820269.182841", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820272.8253508", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820272.8603878", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820273.2092812", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820273.227149", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820273.5817473", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820273.610663", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820273.9518514", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820273.9807856", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820274.3449705", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820274.3805528", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820276.2030354", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820280.1122482", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820282.6837413", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820289.9122372", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (73)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820289.9567463", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820290.3019488", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (73)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820290.3368578", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820290.704314", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (73)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820290.7236757", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820291.0660682", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (73)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820291.1002617", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820292.344627", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820295.9700048", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820304.625283", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putback] <cupcake> (387) <kitchencounter> (92)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820304.668738", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820308.1739297", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820308.20484", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820308.5367196", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820308.5649767", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820308.8304794", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820308.8495579", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820309.23485", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820309.2676556", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820310.9966638", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820311.0479379", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820313.8776846", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putin] <cupcake> (386) <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820313.913241", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820320.4025338", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (76)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820320.4333036", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820320.7514405", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (76)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820320.7838104", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652820321.076868", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchencabinet> (76)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652820321.1071694", "action": "environment_graph"}
Processing