-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdebug.log
More file actions
6720 lines (5120 loc) · 529 KB
/
debug.log
File metadata and controls
6720 lines (5120 loc) · 529 KB
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
2025-03-12 03:13:45,532 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0033', '0.0042', '0.0000', '0.0027', '0.0028', '0.0029', '0.0017', '0.0025', '0.0041', '0.0021', '0.0035', '0.0049', '0.0036', '0.0021', '0.0056', '0.0049', '0.0041', '0.0059', '0.0097', '0.0083', '0.0079', '0.0079', '0.0097', '0.0091', '0.0067', '0.0136', '0.0093', '0.0032', '0.0041', '0.0055', '0.0035', '0.0043', '0.0084', '0.0026', '0.0038', '0.0090', '0.0041', '0.0052', '0.0086', '0.0029', '0.0068', '0.0056', '0.0028', '0.0024', '0.0071', '0.0043', '0.0044', '0.0076', '0.0058', '0.0041', '0.0076', '0.0035', '0.0075', '0.0063', '0.0031', '0.0047', '0.0072', '0.0035', '0.0073', '0.0076', '0.0045', '0.0084', '0.0080']
2025-03-12 03:13:45,533 -
After abs normalization: ['0.0694', '0.0882', '0.0000', '0.0563', '0.0588', '0.0622', '0.0354', '0.0526', '0.0875', '0.0441', '0.0749', '0.1047', '0.0752', '0.0455', '0.1189', '0.1043', '0.0864', '0.1243', '0.2063', '0.1755', '0.1677', '0.1665', '0.2065', '0.1920', '0.1413', '0.2886', '0.1980', '0.0684', '0.0861', '0.1163', '0.0746', '0.0914', '0.1789', '0.0551', '0.0813', '0.1897', '0.0863', '0.1101', '0.1826', '0.0605', '0.1436', '0.1188', '0.0599', '0.0515', '0.1494', '0.0919', '0.0925', '0.1612', '0.1228', '0.0862', '0.1618', '0.0750', '0.1589', '0.1345', '0.0653', '0.0988', '0.1518', '0.0749', '0.1554', '0.1602', '0.0958', '0.1774', '0.1705']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0023 units
Y (height): 0.0037 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0295 units
Normalized dimensions (relative proportions):
X: 0.0786
Y: 0.1256
Z: 0.0000
2025-03-12 03:13:45,535 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0032', '0.0030', '0.0000', '0.0028', '0.0047', '0.0056', '0.0054', '0.0065', '0.0066', '0.0063', '0.0063', '0.0064', '0.0043', '0.0040', '0.0060', '0.0029', '0.0053', '0.0055', '0.0066', '0.0066', '0.0065', '0.0067', '0.0048', '0.0081', '0.0064', '0.0048', '0.0088', '0.0015', '0.0049', '0.0051', '0.0082', '0.0047', '0.0088', '0.0060', '0.0043', '0.0095', '0.0054', '0.0048', '0.0095', '0.0017', '0.0057', '0.0100', '0.0067', '0.0029', '0.0139', '0.0054', '0.0052', '0.0148', '0.0053', '0.0071', '0.0149', '0.0027', '0.0072', '0.0153', '0.0050', '0.0023', '0.0184', '0.0049', '0.0038', '0.0190', '0.0046', '0.0055', '0.0194']
2025-03-12 03:13:45,536 -
After abs normalization: ['0.0515', '0.0481', '0.0000', '0.0453', '0.0764', '0.0903', '0.0871', '0.1051', '0.1062', '0.1027', '0.1024', '0.1035', '0.0697', '0.0652', '0.0969', '0.0464', '0.0852', '0.0886', '0.1075', '0.1074', '0.1052', '0.1092', '0.0782', '0.1317', '0.1030', '0.0771', '0.1431', '0.0242', '0.0790', '0.0827', '0.1336', '0.0768', '0.1422', '0.0980', '0.0704', '0.1536', '0.0867', '0.0784', '0.1533', '0.0279', '0.0917', '0.1626', '0.1081', '0.0474', '0.2248', '0.0872', '0.0842', '0.2400', '0.0853', '0.1153', '0.2414', '0.0435', '0.1158', '0.2477', '0.0802', '0.0379', '0.2978', '0.0799', '0.0613', '0.3080', '0.0747', '0.0891', '0.3147']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0017 units
Y (height): 0.0021 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0272 units
Normalized dimensions (relative proportions):
X: 0.0626
Y: 0.0791
Z: 0.0000
2025-03-12 03:13:45,538 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0026', '0.0048', '0.0000', '0.0029', '0.0050', '0.0043', '0.0028', '0.0049', '0.0057', '0.0033', '0.0062', '0.0061', '0.0042', '0.0080', '0.0066', '0.0036', '0.0045', '0.0049', '0.0066', '0.0049', '0.0061', '0.0059', '0.0039', '0.0079', '0.0036', '0.0039', '0.0092', '0.0031', '0.0048', '0.0057', '0.0070', '0.0044', '0.0086', '0.0060', '0.0034', '0.0104', '0.0040', '0.0038', '0.0115', '0.0030', '0.0054', '0.0076', '0.0055', '0.0058', '0.0098', '0.0044', '0.0033', '0.0111', '0.0043', '0.0042', '0.0118', '0.0046', '0.0065', '0.0093', '0.0063', '0.0054', '0.0108', '0.0073', '0.0047', '0.0113', '0.0088', '0.0065', '0.0116']
2025-03-12 03:13:45,539 -
After abs normalization: ['0.0510', '0.0938', '0.0000', '0.0562', '0.0973', '0.0829', '0.0535', '0.0954', '0.1105', '0.0638', '0.1199', '0.1189', '0.0818', '0.1549', '0.1277', '0.0708', '0.0882', '0.0956', '0.1277', '0.0953', '0.1194', '0.1146', '0.0758', '0.1542', '0.0700', '0.0751', '0.1786', '0.0611', '0.0927', '0.1106', '0.1354', '0.0863', '0.1671', '0.1175', '0.0663', '0.2026', '0.0769', '0.0747', '0.2229', '0.0575', '0.1049', '0.1476', '0.1068', '0.1117', '0.1895', '0.0847', '0.0646', '0.2157', '0.0831', '0.0824', '0.2295', '0.0898', '0.1254', '0.1813', '0.1232', '0.1053', '0.2098', '0.1414', '0.0922', '0.2196', '0.1700', '0.1268', '0.2262']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0016 units
Y (height): 0.0021 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0251 units
Normalized dimensions (relative proportions):
X: 0.0632
Y: 0.0848
Z: 0.0000
2025-03-12 03:13:45,541 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0028', '0.0057', '0.0000', '0.0015', '0.0032', '0.0039', '0.0021', '0.0015', '0.0060', '0.0026', '0.0022', '0.0072', '0.0019', '0.0041', '0.0077', '0.0033', '0.0078', '0.0066', '0.0072', '0.0073', '0.0104', '0.0079', '0.0045', '0.0124', '0.0083', '0.0043', '0.0135', '0.0030', '0.0100', '0.0089', '0.0053', '0.0045', '0.0134', '0.0054', '0.0022', '0.0161', '0.0056', '0.0024', '0.0183', '0.0029', '0.0101', '0.0112', '0.0054', '0.0052', '0.0149', '0.0068', '0.0024', '0.0177', '0.0070', '0.0033', '0.0198', '0.0033', '0.0097', '0.0135', '0.0044', '0.0046', '0.0164', '0.0044', '0.0034', '0.0186', '0.0038', '0.0045', '0.0205']
2025-03-12 03:13:45,542 -
After abs normalization: ['0.0404', '0.0812', '0.0000', '0.0217', '0.0449', '0.0554', '0.0293', '0.0207', '0.0856', '0.0375', '0.0314', '0.1019', '0.0276', '0.0584', '0.1095', '0.0475', '0.1110', '0.0938', '0.1029', '0.1037', '0.1488', '0.1120', '0.0641', '0.1772', '0.1186', '0.0619', '0.1916', '0.0421', '0.1430', '0.1266', '0.0749', '0.0635', '0.1906', '0.0770', '0.0320', '0.2293', '0.0801', '0.0340', '0.2611', '0.0406', '0.1441', '0.1600', '0.0776', '0.0739', '0.2120', '0.0968', '0.0341', '0.2524', '0.0992', '0.0468', '0.2814', '0.0472', '0.1374', '0.1927', '0.0631', '0.0654', '0.2336', '0.0633', '0.0479', '0.2649', '0.0537', '0.0645', '0.2918']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0020 units
Y (height): 0.0023 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0396 units
Normalized dimensions (relative proportions):
X: 0.0506
Y: 0.0580
Z: 0.0000
2025-03-12 03:13:45,544 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0034', '0.0024', '0.0000', '0.0014', '0.0018', '0.0051', '0.0014', '0.0027', '0.0076', '0.0028', '0.0034', '0.0084', '0.0046', '0.0032', '0.0088', '0.0030', '0.0015', '0.0098', '0.0069', '0.0036', '0.0129', '0.0064', '0.0026', '0.0144', '0.0058', '0.0040', '0.0150', '0.0031', '0.0024', '0.0066', '0.0035', '0.0025', '0.0079', '0.0025', '0.0017', '0.0080', '0.0033', '0.0034', '0.0088', '0.0026', '0.0027', '0.0042', '0.0039', '0.0038', '0.0064', '0.0046', '0.0035', '0.0084', '0.0067', '0.0059', '0.0095', '0.0022', '0.0038', '0.0053', '0.0035', '0.0040', '0.0073', '0.0042', '0.0037', '0.0085', '0.0043', '0.0036', '0.0092']
2025-03-12 03:13:45,544 -
After abs normalization: ['0.0721', '0.0499', '0.0000', '0.0306', '0.0387', '0.1087', '0.0304', '0.0580', '0.1614', '0.0595', '0.0730', '0.1793', '0.0970', '0.0673', '0.1862', '0.0637', '0.0319', '0.2083', '0.1459', '0.0774', '0.2747', '0.1355', '0.0549', '0.3067', '0.1231', '0.0840', '0.3185', '0.0662', '0.0511', '0.1391', '0.0744', '0.0540', '0.1683', '0.0524', '0.0370', '0.1704', '0.0710', '0.0719', '0.1878', '0.0561', '0.0564', '0.0894', '0.0825', '0.0800', '0.1352', '0.0966', '0.0747', '0.1787', '0.1424', '0.1243', '0.2027', '0.0458', '0.0814', '0.1128', '0.0740', '0.0853', '0.1546', '0.0890', '0.0788', '0.1795', '0.0919', '0.0769', '0.1946']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0015 units
Y (height): 0.0014 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0259 units
Normalized dimensions (relative proportions):
X: 0.0575
Y: 0.0553
Z: 0.0000
2025-03-12 03:13:45,548 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.2079', '0.1674', '0.0000', '0.1842', '0.1496', '0.0305', '0.2002', '0.1190', '0.0381', '0.2206', '0.1053', '0.0401', '0.2418', '0.0949', '0.0448', '0.2458', '0.1062', '0.0643', '0.2387', '0.1800', '0.0697', '0.2940', '0.1635', '0.0635', '0.3502', '0.1993', '0.0600', '0.2467', '0.1190', '0.0658', '0.2415', '0.1916', '0.0741', '0.3120', '0.1689', '0.0723', '0.3745', '0.1401', '0.0760', '0.2427', '0.1258', '0.0645', '0.2412', '0.1878', '0.0730', '0.3055', '0.1707', '0.0833', '0.3641', '0.1442', '0.0949', '0.2361', '0.1277', '0.0625', '0.2333', '0.1594', '0.0717', '0.2787', '0.1586', '0.0805', '0.3320', '0.1511', '0.0879']
2025-03-12 03:13:45,548 -
After abs normalization: ['0.1426', '0.1148', '0.0000', '0.1263', '0.1026', '0.0209', '0.1373', '0.0816', '0.0261', '0.1513', '0.0722', '0.0275', '0.1658', '0.0651', '0.0307', '0.1686', '0.0728', '0.0441', '0.1638', '0.1235', '0.0478', '0.2017', '0.1122', '0.0435', '0.2402', '0.1367', '0.0412', '0.1692', '0.0816', '0.0451', '0.1657', '0.1314', '0.0508', '0.2140', '0.1159', '0.0496', '0.2569', '0.0961', '0.0521', '0.1665', '0.0863', '0.0443', '0.1654', '0.1288', '0.0501', '0.2095', '0.1171', '0.0571', '0.2498', '0.0989', '0.0651', '0.1620', '0.0876', '0.0429', '0.1600', '0.1094', '0.0492', '0.1912', '0.1088', '0.0552', '0.2278', '0.1037', '0.0603']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.1829 units
Y (height): 0.1362 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.3885 units
Normalized dimensions (relative proportions):
X: 0.1317
Y: 0.0981
Z: 0.0000
2025-03-12 03:13:45,551 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1527', '0.1427', '0.0000', '0.1674', '0.1539', '0.0197', '0.1855', '0.1448', '0.0260', '0.2018', '0.1382', '0.0267', '0.2154', '0.1386', '0.0281', '0.2224', '0.1136', '0.0379', '0.2243', '0.1696', '0.0409', '0.2771', '0.1774', '0.0466', '0.3331', '0.1714', '0.0497', '0.2229', '0.1156', '0.0385', '0.2251', '0.1833', '0.0445', '0.2934', '0.1757', '0.0514', '0.3568', '0.1620', '0.0554', '0.2178', '0.1114', '0.0363', '0.2232', '0.1704', '0.0392', '0.2894', '0.1644', '0.0519', '0.3503', '0.1614', '0.0643', '0.2094', '0.1033', '0.0341', '0.2144', '0.1482', '0.0423', '0.2631', '0.1529', '0.0522', '0.3155', '0.1481', '0.0640']
2025-03-12 03:13:45,552 -
After abs normalization: ['0.1120', '0.1047', '0.0000', '0.1228', '0.1129', '0.0145', '0.1361', '0.1062', '0.0191', '0.1480', '0.1014', '0.0196', '0.1580', '0.1017', '0.0206', '0.1632', '0.0834', '0.0278', '0.1645', '0.1244', '0.0300', '0.2033', '0.1302', '0.0342', '0.2444', '0.1257', '0.0365', '0.1636', '0.0848', '0.0282', '0.1651', '0.1345', '0.0327', '0.2153', '0.1289', '0.0377', '0.2618', '0.1188', '0.0407', '0.1598', '0.0817', '0.0266', '0.1637', '0.1250', '0.0288', '0.2123', '0.1206', '0.0380', '0.2570', '0.1184', '0.0472', '0.1537', '0.0758', '0.0250', '0.1573', '0.1087', '0.0310', '0.1930', '0.1122', '0.0383', '0.2315', '0.1087', '0.0470']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.1527 units
Y (height): 0.1276 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.3042 units
Normalized dimensions (relative proportions):
X: 0.1171
Y: 0.0978
Z: 0.0000
2025-03-12 03:13:45,555 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.2443', '0.1468', '0.0000', '0.2353', '0.1498', '0.0232', '0.2474', '0.1248', '0.0326', '0.2727', '0.1096', '0.0394', '0.2976', '0.1039', '0.0458', '0.3010', '0.1154', '0.0602', '0.2927', '0.1671', '0.0610', '0.3510', '0.1566', '0.0638', '0.4095', '0.1499', '0.0674', '0.3090', '0.1202', '0.0516', '0.3002', '0.1726', '0.0535', '0.3748', '0.1525', '0.0501', '0.4413', '0.1472', '0.0577', '0.3098', '0.1241', '0.0478', '0.3040', '0.1674', '0.0497', '0.3733', '0.1486', '0.0437', '0.4369', '0.1364', '0.0530', '0.3062', '0.1240', '0.0497', '0.2986', '0.1493', '0.0565', '0.3361', '0.1423', '0.0595', '0.3886', '0.1409', '0.0655']
2025-03-12 03:13:45,555 -
After abs normalization: ['0.1468', '0.0882', '0.0000', '0.1414', '0.0900', '0.0140', '0.1486', '0.0750', '0.0196', '0.1639', '0.0659', '0.0237', '0.1788', '0.0624', '0.0275', '0.1809', '0.0693', '0.0362', '0.1759', '0.1004', '0.0367', '0.2109', '0.0941', '0.0384', '0.2460', '0.0901', '0.0405', '0.1857', '0.0722', '0.0310', '0.1804', '0.1037', '0.0321', '0.2252', '0.0916', '0.0301', '0.2652', '0.0884', '0.0347', '0.1861', '0.0746', '0.0287', '0.1826', '0.1006', '0.0298', '0.2243', '0.0893', '0.0263', '0.2625', '0.0820', '0.0318', '0.1840', '0.0745', '0.0298', '0.1794', '0.0897', '0.0339', '0.2019', '0.0855', '0.0357', '0.2335', '0.0846', '0.0393']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.2375 units
Y (height): 0.1404 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.5915 units
Normalized dimensions (relative proportions):
X: 0.1492
Y: 0.0882
Z: 0.0000
2025-03-12 03:13:45,557 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.2259', '0.1025', '0.0000', '0.2328', '0.1192', '0.0297', '0.2393', '0.1036', '0.0397', '0.2476', '0.0938', '0.0442', '0.2676', '0.0881', '0.0451', '0.2685', '0.0715', '0.0581', '0.2655', '0.1101', '0.0675', '0.3160', '0.1004', '0.0722', '0.3804', '0.0811', '0.0776', '0.2630', '0.0706', '0.0463', '0.2676', '0.0996', '0.0597', '0.3387', '0.0942', '0.0680', '0.4107', '0.0803', '0.0761', '0.2557', '0.0673', '0.0415', '0.2633', '0.0858', '0.0457', '0.3302', '0.0852', '0.0467', '0.3979', '0.0764', '0.0570', '0.2472', '0.0611', '0.0381', '0.2569', '0.0701', '0.0376', '0.3016', '0.0812', '0.0380', '0.3613', '0.0846', '0.0461']
2025-03-12 03:13:45,558 -
After abs normalization: ['0.1567', '0.0711', '0.0000', '0.1615', '0.0827', '0.0206', '0.1660', '0.0719', '0.0275', '0.1718', '0.0650', '0.0307', '0.1856', '0.0611', '0.0313', '0.1863', '0.0496', '0.0403', '0.1841', '0.0763', '0.0468', '0.2192', '0.0696', '0.0501', '0.2639', '0.0563', '0.0538', '0.1824', '0.0489', '0.0321', '0.1856', '0.0691', '0.0414', '0.2349', '0.0654', '0.0472', '0.2849', '0.0557', '0.0528', '0.1774', '0.0467', '0.0288', '0.1826', '0.0595', '0.0317', '0.2290', '0.0591', '0.0324', '0.2760', '0.0530', '0.0395', '0.1715', '0.0423', '0.0264', '0.1782', '0.0487', '0.0261', '0.2092', '0.0563', '0.0264', '0.2506', '0.0587', '0.0320']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.1990 units
Y (height): 0.1025 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.3931 units
Normalized dimensions (relative proportions):
X: 0.1428
Y: 0.0736
Z: 0.0000
2025-03-12 03:13:45,561 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.2240', '0.0971', '0.0000', '0.2345', '0.0917', '0.0225', '0.2468', '0.0795', '0.0362', '0.2628', '0.0813', '0.0413', '0.2716', '0.0832', '0.0430', '0.2863', '0.1102', '0.0826', '0.2885', '0.1412', '0.0892', '0.3311', '0.1335', '0.0766', '0.3785', '0.1366', '0.0649', '0.2864', '0.1178', '0.0832', '0.2895', '0.1452', '0.0916', '0.3478', '0.1360', '0.0717', '0.4027', '0.1288', '0.0616', '0.2800', '0.1217', '0.0834', '0.2864', '0.1525', '0.0877', '0.3413', '0.1413', '0.0725', '0.3934', '0.1300', '0.0708', '0.2710', '0.1324', '0.0812', '0.2790', '0.1524', '0.0898', '0.3208', '0.1451', '0.0882', '0.3656', '0.1336', '0.0873']
2025-03-12 03:13:45,561 -
After abs normalization: ['0.1435', '0.0622', '0.0000', '0.1502', '0.0587', '0.0144', '0.1582', '0.0510', '0.0232', '0.1684', '0.0521', '0.0265', '0.1740', '0.0533', '0.0275', '0.1835', '0.0706', '0.0529', '0.1848', '0.0905', '0.0572', '0.2121', '0.0855', '0.0491', '0.2425', '0.0875', '0.0416', '0.1835', '0.0755', '0.0533', '0.1855', '0.0930', '0.0587', '0.2228', '0.0872', '0.0460', '0.2580', '0.0825', '0.0395', '0.1794', '0.0780', '0.0534', '0.1835', '0.0977', '0.0562', '0.2187', '0.0905', '0.0465', '0.2521', '0.0833', '0.0454', '0.1737', '0.0848', '0.0520', '0.1788', '0.0977', '0.0575', '0.2056', '0.0930', '0.0565', '0.2342', '0.0856', '0.0560']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.2189 units
Y (height): 0.0818 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.4353 units
Normalized dimensions (relative proportions):
X: 0.1525
Y: 0.0570
Z: 0.0000
2025-03-12 03:13:45,564 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0037', '0.0079', '0.0000', '0.0030', '0.0066', '0.0023', '0.0017', '0.0076', '0.0038', '0.0019', '0.0074', '0.0050', '0.0019', '0.0069', '0.0064', '0.0028', '0.0076', '0.0048', '0.0027', '0.0083', '0.0062', '0.0045', '0.0088', '0.0070', '0.0077', '0.0093', '0.0078', '0.0020', '0.0072', '0.0048', '0.0013', '0.0068', '0.0066', '0.0030', '0.0058', '0.0073', '0.0044', '0.0060', '0.0077', '0.0017', '0.0072', '0.0048', '0.0013', '0.0069', '0.0067', '0.0025', '0.0060', '0.0072', '0.0032', '0.0060', '0.0075', '0.0024', '0.0077', '0.0055', '0.0019', '0.0067', '0.0076', '0.0026', '0.0058', '0.0086', '0.0033', '0.0053', '0.0092']
2025-03-12 03:13:45,564 -
After abs normalization: ['0.0810', '0.1712', '0.0000', '0.0650', '0.1423', '0.0495', '0.0379', '0.1643', '0.0814', '0.0402', '0.1615', '0.1081', '0.0413', '0.1495', '0.1391', '0.0602', '0.1648', '0.1038', '0.0578', '0.1799', '0.1344', '0.0976', '0.1907', '0.1515', '0.1673', '0.2005', '0.1682', '0.0424', '0.1562', '0.1034', '0.0274', '0.1483', '0.1434', '0.0642', '0.1257', '0.1575', '0.0946', '0.1290', '0.1675', '0.0362', '0.1553', '0.1042', '0.0283', '0.1493', '0.1455', '0.0549', '0.1308', '0.1571', '0.0693', '0.1310', '0.1636', '0.0531', '0.1665', '0.1182', '0.0415', '0.1452', '0.1653', '0.0561', '0.1249', '0.1861', '0.0723', '0.1150', '0.1991']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0017 units
Y (height): 0.0076 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0344 units
Normalized dimensions (relative proportions):
X: 0.0491
Y: 0.2217
Z: 0.0000
2025-03-12 03:13:45,567 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0018', '0.0041', '0.0000', '0.0019', '0.0016', '0.0031', '0.0014', '0.0037', '0.0056', '0.0023', '0.0040', '0.0076', '0.0024', '0.0037', '0.0095', '0.0021', '0.0032', '0.0068', '0.0043', '0.0068', '0.0096', '0.0053', '0.0100', '0.0111', '0.0077', '0.0125', '0.0118', '0.0020', '0.0027', '0.0057', '0.0021', '0.0050', '0.0090', '0.0035', '0.0063', '0.0097', '0.0055', '0.0065', '0.0095', '0.0025', '0.0037', '0.0046', '0.0021', '0.0047', '0.0072', '0.0024', '0.0043', '0.0078', '0.0031', '0.0035', '0.0077', '0.0028', '0.0048', '0.0039', '0.0022', '0.0029', '0.0062', '0.0022', '0.0025', '0.0071', '0.0028', '0.0033', '0.0075']
2025-03-12 03:13:45,567 -
After abs normalization: ['0.0403', '0.0907', '0.0000', '0.0427', '0.0362', '0.0682', '0.0299', '0.0811', '0.1233', '0.0504', '0.0884', '0.1665', '0.0529', '0.0823', '0.2086', '0.0468', '0.0703', '0.1484', '0.0943', '0.1501', '0.2106', '0.1160', '0.2192', '0.2434', '0.1684', '0.2736', '0.2582', '0.0442', '0.0584', '0.1260', '0.0470', '0.1095', '0.1969', '0.0771', '0.1376', '0.2130', '0.1204', '0.1435', '0.2097', '0.0539', '0.0803', '0.1017', '0.0459', '0.1025', '0.1587', '0.0531', '0.0938', '0.1713', '0.0685', '0.0769', '0.1681', '0.0616', '0.1047', '0.0850', '0.0484', '0.0642', '0.1352', '0.0480', '0.0554', '0.1550', '0.0613', '0.0719', '0.1646']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0009 units
Y (height): 0.0014 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0211 units
Normalized dimensions (relative proportions):
X: 0.0440
Y: 0.0672
Z: 0.0000
2025-03-12 03:13:45,571 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0030', '0.0042', '0.0000', '0.0028', '0.0038', '0.0040', '0.0022', '0.0031', '0.0053', '0.0017', '0.0032', '0.0061', '0.0040', '0.0037', '0.0070', '0.0025', '0.0069', '0.0040', '0.0026', '0.0070', '0.0049', '0.0025', '0.0057', '0.0060', '0.0021', '0.0037', '0.0069', '0.0030', '0.0060', '0.0026', '0.0030', '0.0053', '0.0045', '0.0028', '0.0049', '0.0058', '0.0028', '0.0040', '0.0067', '0.0034', '0.0049', '0.0025', '0.0032', '0.0039', '0.0041', '0.0028', '0.0025', '0.0055', '0.0034', '0.0038', '0.0064', '0.0034', '0.0047', '0.0036', '0.0034', '0.0041', '0.0044', '0.0038', '0.0047', '0.0055', '0.0042', '0.0071', '0.0063']
2025-03-12 03:13:45,571 -
After abs normalization: ['0.0864', '0.1187', '0.0000', '0.0783', '0.1074', '0.1130', '0.0622', '0.0895', '0.1509', '0.0477', '0.0912', '0.1723', '0.1141', '0.1067', '0.1990', '0.0699', '0.1969', '0.1138', '0.0754', '0.1988', '0.1388', '0.0721', '0.1621', '0.1711', '0.0609', '0.1053', '0.1973', '0.0844', '0.1695', '0.0745', '0.0860', '0.1512', '0.1272', '0.0810', '0.1409', '0.1663', '0.0794', '0.1125', '0.1919', '0.0960', '0.1401', '0.0717', '0.0902', '0.1101', '0.1172', '0.0800', '0.0705', '0.1564', '0.0970', '0.1071', '0.1815', '0.0963', '0.1344', '0.1015', '0.0962', '0.1175', '0.1259', '0.1092', '0.1350', '0.1560', '0.1195', '0.2016', '0.1797']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0013 units
Y (height): 0.0031 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0162 units
Normalized dimensions (relative proportions):
X: 0.0810
Y: 0.1924
Z: 0.0000
2025-03-12 03:13:45,574 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0029', '0.0023', '0.0000', '0.0021', '0.0055', '0.0027', '0.0023', '0.0055', '0.0035', '0.0026', '0.0041', '0.0040', '0.0021', '0.0036', '0.0047', '0.0032', '0.0046', '0.0038', '0.0017', '0.0035', '0.0053', '0.0016', '0.0031', '0.0063', '0.0021', '0.0026', '0.0069', '0.0026', '0.0036', '0.0040', '0.0014', '0.0017', '0.0063', '0.0012', '0.0030', '0.0074', '0.0015', '0.0037', '0.0081', '0.0026', '0.0035', '0.0046', '0.0013', '0.0020', '0.0070', '0.0015', '0.0022', '0.0081', '0.0016', '0.0024', '0.0086', '0.0029', '0.0039', '0.0052', '0.0018', '0.0041', '0.0076', '0.0016', '0.0039', '0.0090', '0.0023', '0.0040', '0.0098']
2025-03-12 03:13:45,574 -
After abs normalization: ['0.0844', '0.0668', '0.0000', '0.0606', '0.1590', '0.0787', '0.0658', '0.1586', '0.1010', '0.0738', '0.1174', '0.1154', '0.0605', '0.1046', '0.1367', '0.0920', '0.1329', '0.1094', '0.0491', '0.1022', '0.1540', '0.0470', '0.0906', '0.1815', '0.0616', '0.0760', '0.1981', '0.0754', '0.1027', '0.1149', '0.0409', '0.0499', '0.1816', '0.0335', '0.0858', '0.2125', '0.0424', '0.1055', '0.2332', '0.0753', '0.1002', '0.1316', '0.0370', '0.0583', '0.2007', '0.0425', '0.0629', '0.2333', '0.0459', '0.0679', '0.2479', '0.0827', '0.1117', '0.1506', '0.0505', '0.1177', '0.2196', '0.0468', '0.1131', '0.2602', '0.0656', '0.1158', '0.2826']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0011 units
Y (height): 0.0008 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0148 units
Normalized dimensions (relative proportions):
X: 0.0745
Y: 0.0507
Z: 0.0000
2025-03-12 03:13:45,577 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0030', '0.0084', '0.0000', '0.0020', '0.0083', '0.0034', '0.0016', '0.0095', '0.0060', '0.0025', '0.0094', '0.0083', '0.0033', '0.0084', '0.0104', '0.0007', '0.0080', '0.0062', '0.0017', '0.0078', '0.0087', '0.0016', '0.0071', '0.0102', '0.0017', '0.0066', '0.0111', '0.0010', '0.0071', '0.0057', '0.0018', '0.0069', '0.0086', '0.0025', '0.0073', '0.0099', '0.0029', '0.0073', '0.0106', '0.0012', '0.0068', '0.0057', '0.0016', '0.0062', '0.0081', '0.0016', '0.0070', '0.0092', '0.0017', '0.0079', '0.0097', '0.0021', '0.0068', '0.0060', '0.0019', '0.0064', '0.0080', '0.0020', '0.0072', '0.0092', '0.0027', '0.0084', '0.0099']
2025-03-12 03:13:45,577 -
After abs normalization: ['0.0581', '0.1605', '0.0000', '0.0388', '0.1583', '0.0645', '0.0307', '0.1803', '0.1146', '0.0480', '0.1800', '0.1584', '0.0620', '0.1600', '0.1991', '0.0137', '0.1527', '0.1183', '0.0322', '0.1482', '0.1667', '0.0314', '0.1362', '0.1950', '0.0317', '0.1260', '0.2123', '0.0182', '0.1354', '0.1093', '0.0341', '0.1317', '0.1637', '0.0471', '0.1385', '0.1885', '0.0549', '0.1401', '0.2018', '0.0228', '0.1292', '0.1078', '0.0300', '0.1174', '0.1554', '0.0309', '0.1342', '0.1747', '0.0319', '0.1499', '0.1841', '0.0391', '0.1304', '0.1136', '0.0361', '0.1230', '0.1531', '0.0374', '0.1378', '0.1756', '0.0513', '0.1596', '0.1887']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0009 units
Y (height): 0.0081 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0352 units
Normalized dimensions (relative proportions):
X: 0.0254
Y: 0.2301
Z: 0.0000
2025-03-12 03:13:45,579 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1239', '0.1486', '0.0000', '0.1531', '0.1698', '0.0445', '0.1389', '0.1789', '0.0793', '0.1015', '0.2025', '0.1148', '0.1260', '0.2886', '0.1467', '0.1446', '0.1409', '0.1918', '0.1072', '0.1081', '0.1788', '0.1160', '0.1120', '0.1500', '0.1623', '0.0900', '0.1506', '0.1052', '0.1582', '0.1950', '0.1057', '0.1567', '0.2018', '0.0992', '0.1341', '0.1711', '0.0744', '0.1013', '0.1552', '0.0922', '0.1891', '0.1859', '0.1319', '0.2318', '0.1781', '0.1042', '0.1811', '0.1737', '0.0684', '0.1585', '0.1853', '0.0900', '0.2363', '0.1691', '0.1391', '0.3075', '0.1857', '0.1530', '0.3761', '0.2177', '0.2052', '0.4580', '0.2574']
2025-03-12 03:13:45,581 -
After abs normalization: ['0.0896', '0.1075', '0.0000', '0.1107', '0.1228', '0.0322', '0.1005', '0.1294', '0.0573', '0.0734', '0.1465', '0.0831', '0.0912', '0.2088', '0.1061', '0.1046', '0.1019', '0.1387', '0.0775', '0.0782', '0.1293', '0.0839', '0.0810', '0.1085', '0.1174', '0.0651', '0.1089', '0.0761', '0.1145', '0.1411', '0.0764', '0.1134', '0.1460', '0.0718', '0.0970', '0.1237', '0.0538', '0.0733', '0.1123', '0.0667', '0.1368', '0.1344', '0.0954', '0.1677', '0.1288', '0.0754', '0.1310', '0.1256', '0.0495', '0.1147', '0.1340', '0.0651', '0.1710', '0.1223', '0.1006', '0.2224', '0.1344', '0.1107', '0.2721', '0.1575', '0.1484', '0.3313', '0.1862']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0592 units
Y (height): 0.0737 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.8069 units
Normalized dimensions (relative proportions):
X: 0.0733
Y: 0.0913
Z: 0.0000
2025-03-12 03:13:45,583 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0461', '0.1154', '0.0000', '0.0575', '0.1210', '0.0670', '0.0519', '0.1232', '0.0923', '0.0776', '0.1820', '0.1073', '0.0900', '0.2161', '0.1211', '0.1332', '0.0953', '0.0821', '0.1053', '0.1559', '0.1162', '0.0823', '0.1587', '0.1231', '0.0696', '0.1124', '0.1226', '0.1229', '0.1465', '0.0792', '0.1001', '0.2035', '0.1207', '0.0763', '0.1810', '0.1227', '0.1005', '0.1324', '0.1190', '0.1154', '0.2034', '0.0809', '0.1097', '0.2636', '0.1162', '0.0903', '0.2256', '0.1205', '0.0837', '0.1876', '0.1176', '0.1206', '0.2494', '0.0876', '0.1263', '0.3210', '0.1043', '0.1177', '0.3738', '0.1143', '0.1237', '0.4102', '0.1225']
2025-03-12 03:13:45,584 -
After abs normalization: ['0.0387', '0.0970', '0.0000', '0.0483', '0.1017', '0.0563', '0.0436', '0.1036', '0.0775', '0.0652', '0.1529', '0.0901', '0.0757', '0.1816', '0.1018', '0.1119', '0.0801', '0.0690', '0.0884', '0.1310', '0.0977', '0.0691', '0.1333', '0.1035', '0.0585', '0.0945', '0.1030', '0.1032', '0.1231', '0.0666', '0.0841', '0.1710', '0.1014', '0.0641', '0.1521', '0.1031', '0.0844', '0.1113', '0.1000', '0.0970', '0.1710', '0.0680', '0.0922', '0.2215', '0.0977', '0.0759', '0.1896', '0.1013', '0.0704', '0.1576', '0.0989', '0.1013', '0.2096', '0.0736', '0.1061', '0.2698', '0.0876', '0.0989', '0.3141', '0.0960', '0.1040', '0.3447', '0.1030']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0260 units
Y (height): 0.0530 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.7678 units
Normalized dimensions (relative proportions):
X: 0.0338
Y: 0.0690
Z: 0.0000
2025-03-12 03:13:45,586 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0568', '0.0710', '0.0000', '0.0680', '0.0753', '0.0192', '0.0850', '0.1145', '0.0264', '0.0636', '0.1307', '0.0400', '0.0452', '0.1345', '0.0542', '0.1457', '0.0662', '0.0424', '0.0939', '0.1023', '0.0377', '0.0881', '0.1675', '0.0397', '0.1240', '0.1896', '0.0529', '0.1224', '0.1155', '0.0466', '0.0418', '0.1553', '0.0535', '0.0483', '0.1138', '0.0441', '0.0562', '0.1177', '0.0345', '0.1062', '0.1645', '0.0460', '0.0631', '0.2055', '0.0552', '0.0595', '0.1590', '0.0417', '0.0700', '0.1473', '0.0423', '0.1041', '0.2027', '0.0447', '0.0934', '0.2639', '0.0567', '0.1017', '0.3237', '0.0728', '0.1399', '0.3773', '0.0892']
2025-03-12 03:13:45,586 -
After abs normalization: ['0.0600', '0.0751', '0.0000', '0.0719', '0.0797', '0.0203', '0.0899', '0.1210', '0.0279', '0.0672', '0.1382', '0.0423', '0.0478', '0.1422', '0.0573', '0.1540', '0.0700', '0.0448', '0.0993', '0.1082', '0.0399', '0.0931', '0.1771', '0.0420', '0.1312', '0.2005', '0.0559', '0.1294', '0.1221', '0.0493', '0.0442', '0.1642', '0.0566', '0.0511', '0.1203', '0.0466', '0.0594', '0.1245', '0.0365', '0.1123', '0.1739', '0.0486', '0.0667', '0.2172', '0.0584', '0.0629', '0.1681', '0.0441', '0.0741', '0.1557', '0.0447', '0.1101', '0.2143', '0.0472', '0.0988', '0.2791', '0.0600', '0.1075', '0.3422', '0.0770', '0.1479', '0.3989', '0.0943']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0372 units
Y (height): 0.0346 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.6290 units
Normalized dimensions (relative proportions):
X: 0.0591
Y: 0.0549
Z: 0.0000
2025-03-12 03:13:45,590 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1374', '0.1821', '0.0000', '0.1441', '0.1455', '0.0530', '0.1378', '0.1701', '0.0785', '0.1222', '0.1742', '0.0992', '0.1225', '0.2243', '0.1166', '0.2006', '0.1255', '0.1365', '0.1080', '0.1720', '0.1337', '0.1301', '0.2124', '0.1104', '0.1645', '0.1539', '0.1070', '0.1850', '0.1673', '0.1405', '0.1138', '0.2044', '0.1522', '0.1148', '0.2027', '0.1295', '0.1557', '0.1972', '0.1301', '0.1533', '0.2128', '0.1353', '0.1329', '0.2018', '0.1533', '0.1280', '0.1826', '0.1484', '0.1341', '0.1732', '0.1542', '0.1523', '0.2548', '0.1262', '0.1547', '0.2976', '0.1610', '0.2207', '0.3502', '0.1890', '0.2925', '0.4075', '0.2185']
2025-03-12 03:13:45,590 -
After abs normalization: ['0.0990', '0.1311', '0.0000', '0.1038', '0.1048', '0.0382', '0.0993', '0.1226', '0.0565', '0.0880', '0.1255', '0.0715', '0.0882', '0.1615', '0.0840', '0.1445', '0.0904', '0.0983', '0.0778', '0.1239', '0.0963', '0.0937', '0.1530', '0.0795', '0.1185', '0.1109', '0.0771', '0.1333', '0.1205', '0.1012', '0.0820', '0.1472', '0.1096', '0.0827', '0.1460', '0.0933', '0.1122', '0.1420', '0.0937', '0.1104', '0.1533', '0.0974', '0.0957', '0.1454', '0.1104', '0.0922', '0.1316', '0.1069', '0.0966', '0.1248', '0.1111', '0.1097', '0.1835', '0.0909', '0.1114', '0.2144', '0.1160', '0.1590', '0.2523', '0.1362', '0.2107', '0.2935', '0.1574']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0643 units
Y (height): 0.0629 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.8015 units
Normalized dimensions (relative proportions):
X: 0.0802
Y: 0.0785
Z: 0.0000
2025-03-12 03:13:45,593 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0678', '0.2174', '0.0000', '0.0713', '0.1558', '0.0366', '0.0831', '0.1247', '0.0523', '0.0644', '0.1466', '0.0634', '0.0720', '0.2398', '0.0782', '0.1452', '0.1149', '0.0644', '0.0938', '0.1175', '0.0663', '0.0721', '0.1389', '0.0639', '0.0815', '0.1310', '0.0691', '0.1314', '0.1437', '0.0677', '0.0936', '0.1873', '0.0743', '0.0732', '0.1785', '0.0653', '0.0567', '0.1653', '0.0603', '0.1219', '0.1869', '0.0680', '0.1257', '0.2331', '0.0875', '0.0899', '0.2111', '0.0874', '0.0568', '0.1627', '0.0831', '0.1345', '0.2327', '0.0685', '0.1621', '0.3004', '0.0919', '0.1436', '0.3612', '0.0967', '0.1354', '0.3989', '0.1129']
2025-03-12 03:13:45,593 -
After abs normalization: ['0.0600', '0.1923', '0.0000', '0.0630', '0.1378', '0.0324', '0.0735', '0.1103', '0.0463', '0.0570', '0.1297', '0.0561', '0.0637', '0.2121', '0.0691', '0.1284', '0.1016', '0.0570', '0.0830', '0.1040', '0.0586', '0.0638', '0.1229', '0.0566', '0.0721', '0.1159', '0.0611', '0.1162', '0.1271', '0.0598', '0.0828', '0.1657', '0.0657', '0.0647', '0.1579', '0.0578', '0.0502', '0.1462', '0.0533', '0.1078', '0.1654', '0.0602', '0.1112', '0.2062', '0.0774', '0.0795', '0.1868', '0.0773', '0.0503', '0.1439', '0.0735', '0.1190', '0.2058', '0.0606', '0.1434', '0.2658', '0.0813', '0.1270', '0.3195', '0.0855', '0.1198', '0.3528', '0.0999']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0285 units
Y (height): 0.1059 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.7211 units
Normalized dimensions (relative proportions):
X: 0.0395
Y: 0.1468
Z: 0.0000
2025-03-12 03:13:45,596 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0323', '0.1216', '0.0000', '0.0212', '0.1027', '0.0314', '0.0190', '0.0915', '0.0450', '0.0381', '0.1052', '0.0545', '0.0607', '0.1005', '0.0615', '0.0150', '0.1399', '0.0548', '0.0295', '0.1461', '0.0739', '0.0390', '0.1427', '0.0832', '0.0496', '0.1405', '0.0889', '0.0169', '0.1495', '0.0440', '0.0259', '0.1153', '0.0599', '0.0550', '0.1181', '0.0603', '0.0980', '0.1506', '0.0581', '0.0217', '0.1469', '0.0326', '0.0271', '0.1321', '0.0458', '0.0374', '0.1166', '0.0468', '0.0418', '0.1159', '0.0447', '0.0252', '0.1376', '0.0221', '0.0239', '0.1400', '0.0330', '0.0319', '0.1415', '0.0403', '0.0375', '0.1462', '0.0470']
2025-03-12 03:13:45,596 -
After abs normalization: ['0.0484', '0.1821', '0.0000', '0.0318', '0.1537', '0.0470', '0.0285', '0.1369', '0.0673', '0.0570', '0.1575', '0.0815', '0.0908', '0.1505', '0.0920', '0.0224', '0.2095', '0.0820', '0.0442', '0.2188', '0.1106', '0.0583', '0.2137', '0.1246', '0.0742', '0.2104', '0.1330', '0.0253', '0.2238', '0.0659', '0.0387', '0.1726', '0.0897', '0.0823', '0.1768', '0.0903', '0.1468', '0.2254', '0.0869', '0.0324', '0.2200', '0.0488', '0.0406', '0.1978', '0.0686', '0.0560', '0.1746', '0.0701', '0.0625', '0.1735', '0.0669', '0.0377', '0.2060', '0.0332', '0.0358', '0.2096', '0.0495', '0.0477', '0.2118', '0.0603', '0.0561', '0.2190', '0.0704']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0226 units
Y (height): 0.1205 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.5810 units
Normalized dimensions (relative proportions):
X: 0.0389
Y: 0.2075
Z: 0.0000
2025-03-12 03:13:45,599 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0854', '0.1648', '0.0000', '0.0808', '0.1502', '0.0621', '0.0591', '0.1269', '0.1019', '0.0545', '0.1273', '0.1272', '0.0528', '0.1161', '0.1504', '0.0910', '0.2049', '0.1192', '0.0748', '0.2109', '0.1610', '0.0627', '0.1981', '0.1819', '0.0480', '0.1900', '0.1931', '0.0819', '0.2139', '0.0995', '0.0475', '0.2024', '0.1423', '0.0637', '0.1906', '0.1535', '0.0796', '0.1899', '0.1560', '0.0695', '0.2072', '0.0802', '0.0386', '0.1976', '0.1124', '0.0329', '0.1995', '0.1149', '0.0353', '0.2009', '0.1113', '0.0653', '0.1934', '0.0671', '0.0490', '0.1849', '0.0888', '0.0427', '0.1798', '0.0959', '0.0393', '0.1835', '0.1005']
2025-03-12 03:13:45,599 -
After abs normalization: ['0.0809', '0.1560', '0.0000', '0.0765', '0.1422', '0.0588', '0.0559', '0.1202', '0.0965', '0.0516', '0.1206', '0.1205', '0.0500', '0.1099', '0.1425', '0.0862', '0.1940', '0.1129', '0.0708', '0.1997', '0.1525', '0.0593', '0.1876', '0.1722', '0.0454', '0.1799', '0.1829', '0.0776', '0.2025', '0.0942', '0.0449', '0.1916', '0.1348', '0.0603', '0.1805', '0.1454', '0.0754', '0.1798', '0.1477', '0.0659', '0.1962', '0.0759', '0.0365', '0.1871', '0.1065', '0.0312', '0.1889', '0.1088', '0.0334', '0.1903', '0.1053', '0.0618', '0.1831', '0.0635', '0.0464', '0.1751', '0.0841', '0.0404', '0.1702', '0.0908', '0.0372', '0.1738', '0.0952']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0766 units
Y (height): 0.1584 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.9640 units
Normalized dimensions (relative proportions):
X: 0.0795
Y: 0.1644
Z: 0.0000
2025-03-12 03:13:45,605 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0751', '0.1669', '0.0000', '0.0780', '0.1491', '0.0409', '0.0644', '0.1167', '0.0616', '0.0426', '0.0925', '0.0749', '0.0263', '0.0809', '0.0858', '0.0783', '0.1903', '0.0730', '0.0606', '0.1861', '0.0980', '0.0495', '0.1703', '0.1093', '0.0419', '0.1601', '0.1147', '0.0733', '0.2026', '0.0592', '0.0544', '0.1923', '0.0896', '0.1275', '0.1929', '0.0970', '0.2190', '0.2076', '0.0961', '0.0654', '0.1983', '0.0452', '0.0335', '0.1787', '0.0685', '0.0250', '0.1664', '0.0827', '0.0320', '0.1641', '0.0904', '0.0581', '0.1849', '0.0410', '0.0507', '0.1702', '0.0692', '0.0450', '0.2056', '0.0939', '0.0477', '0.2433', '0.1122']
2025-03-12 03:13:45,605 -
After abs normalization: ['0.0785', '0.1746', '0.0000', '0.0816', '0.1560', '0.0428', '0.0674', '0.1220', '0.0644', '0.0445', '0.0968', '0.0783', '0.0275', '0.0846', '0.0898', '0.0819', '0.1991', '0.0764', '0.0634', '0.1947', '0.1026', '0.0518', '0.1781', '0.1144', '0.0439', '0.1675', '0.1200', '0.0767', '0.2120', '0.0620', '0.0569', '0.2012', '0.0937', '0.1334', '0.2018', '0.1015', '0.2292', '0.2171', '0.1005', '0.0684', '0.2074', '0.0473', '0.0350', '0.1870', '0.0717', '0.0261', '0.1741', '0.0865', '0.0335', '0.1717', '0.0946', '0.0608', '0.1934', '0.0428', '0.0531', '0.1781', '0.0724', '0.0471', '0.2150', '0.0983', '0.0499', '0.2546', '0.1174']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0734 units
Y (height): 0.1669 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.8315 units
Normalized dimensions (relative proportions):
X: 0.0883
Y: 0.2007
Z: 0.0000
2025-03-12 03:13:45,609 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0633', '0.0925', '0.0000', '0.0558', '0.0731', '0.0345', '0.0545', '0.0657', '0.0545', '0.0764', '0.0738', '0.0664', '0.1001', '0.0869', '0.0776', '0.0259', '0.0689', '0.0652', '0.0276', '0.0619', '0.0908', '0.0394', '0.0625', '0.0982', '0.0505', '0.0603', '0.1049', '0.0237', '0.0837', '0.0611', '0.0246', '0.0788', '0.0970', '0.0692', '0.0826', '0.1036', '0.1114', '0.0921', '0.1093', '0.0233', '0.0988', '0.0580', '0.0252', '0.0884', '0.0887', '0.0518', '0.0820', '0.1014', '0.0776', '0.0776', '0.1046', '0.0242', '0.1051', '0.0549', '0.0214', '0.1140', '0.0793', '0.0331', '0.1217', '0.0948', '0.0492', '0.1270', '0.1046']
2025-03-12 03:13:45,609 -
After abs normalization: ['0.1040', '0.1519', '0.0000', '0.0917', '0.1200', '0.0567', '0.0896', '0.1080', '0.0895', '0.1255', '0.1212', '0.1090', '0.1644', '0.1427', '0.1275', '0.0426', '0.1131', '0.1071', '0.0454', '0.1016', '0.1491', '0.0647', '0.1026', '0.1613', '0.0830', '0.0990', '0.1723', '0.0389', '0.1375', '0.1004', '0.0405', '0.1294', '0.1593', '0.1136', '0.1357', '0.1702', '0.1830', '0.1513', '0.1795', '0.0383', '0.1622', '0.0953', '0.0413', '0.1451', '0.1457', '0.0851', '0.1346', '0.1666', '0.1275', '0.1274', '0.1718', '0.0398', '0.1727', '0.0902', '0.0351', '0.1873', '0.1303', '0.0543', '0.1998', '0.1558', '0.0809', '0.2085', '0.1718']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0629 units
Y (height): 0.0925 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.4534 units
Normalized dimensions (relative proportions):
X: 0.1387
Y: 0.2040
Z: 0.0000
2025-03-12 03:13:45,612 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0699', '0.1439', '0.0000', '0.0699', '0.1164', '0.0405', '0.0445', '0.0970', '0.0622', '0.0463', '0.0986', '0.0738', '0.0665', '0.0792', '0.0873', '0.0625', '0.1422', '0.0799', '0.0354', '0.1419', '0.0982', '0.0306', '0.1341', '0.1035', '0.0308', '0.1243', '0.1062', '0.0603', '0.1628', '0.0696', '0.0239', '0.1387', '0.0838', '0.0373', '0.1105', '0.0870', '0.0894', '0.1091', '0.0929', '0.0560', '0.1680', '0.0599', '0.0191', '0.1613', '0.0711', '0.0201', '0.1451', '0.0797', '0.0287', '0.1419', '0.0884', '0.0518', '0.1601', '0.0514', '0.0284', '0.1691', '0.0651', '0.0194', '0.1760', '0.0774', '0.0184', '0.1860', '0.0871']
2025-03-12 03:13:45,613 -
After abs normalization: ['0.0906', '0.1867', '0.0000', '0.0907', '0.1510', '0.0526', '0.0577', '0.1259', '0.0806', '0.0601', '0.1279', '0.0957', '0.0862', '0.1028', '0.1132', '0.0810', '0.1844', '0.1036', '0.0459', '0.1840', '0.1274', '0.0398', '0.1739', '0.1342', '0.0399', '0.1612', '0.1378', '0.0782', '0.2112', '0.0903', '0.0310', '0.1799', '0.1087', '0.0483', '0.1433', '0.1128', '0.1160', '0.1415', '0.1205', '0.0726', '0.2179', '0.0777', '0.0247', '0.2092', '0.0922', '0.0260', '0.1881', '0.1034', '0.0372', '0.1841', '0.1147', '0.0671', '0.2077', '0.0667', '0.0369', '0.2194', '0.0845', '0.0252', '0.2282', '0.1004', '0.0239', '0.2413', '0.1129']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0675 units
Y (height): 0.1374 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.6391 units
Normalized dimensions (relative proportions):
X: 0.1057
Y: 0.2149
Z: 0.0000
2025-03-12 03:13:45,615 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1996', '0.1522', '0.0000', '0.1409', '0.1579', '0.0415', '0.1415', '0.3232', '0.0684', '0.1549', '0.5558', '0.1063', '0.2122', '0.7356', '0.1490', '0.1749', '0.4966', '0.1334', '0.3141', '0.9167', '0.1573', '0.2690', '1.1394', '0.1739', '0.2166', '1.2039', '0.1790', '0.1652', '0.4988', '0.1333', '0.1522', '0.8641', '0.1662', '0.0914', '0.7056', '0.1645', '0.0760', '0.6206', '0.1739', '0.1295', '0.4769', '0.1297', '0.1039', '0.7329', '0.1594', '0.0638', '0.5821', '0.1484', '0.0487', '0.5312', '0.1757', '0.0762', '0.4396', '0.1434', '0.0859', '0.5965', '0.1711', '0.0743', '0.4946', '0.1745', '0.0637', '0.4788', '0.1752']
2025-03-12 03:13:45,616 -
After abs normalization: ['0.0628', '0.0479', '0.0000', '0.0443', '0.0497', '0.0130', '0.0445', '0.1017', '0.0215', '0.0488', '0.1749', '0.0335', '0.0668', '0.2315', '0.0469', '0.0551', '0.1563', '0.0420', '0.0989', '0.2885', '0.0495', '0.0847', '0.3586', '0.0547', '0.0682', '0.3789', '0.0563', '0.0520', '0.1570', '0.0420', '0.0479', '0.2719', '0.0523', '0.0288', '0.2220', '0.0518', '0.0239', '0.1953', '0.0547', '0.0408', '0.1501', '0.0408', '0.0327', '0.2307', '0.0502', '0.0201', '0.1832', '0.0467', '0.0153', '0.1672', '0.0553', '0.0240', '0.1383', '0.0451', '0.0270', '0.1877', '0.0538', '0.0234', '0.1557', '0.0549', '0.0200', '0.1507', '0.0551']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0453 units
Y (height): 0.0420 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.2181 units
Normalized dimensions (relative proportions):
X: 0.0372
Y: 0.0345
Z: 0.0000
2025-03-12 03:13:45,619 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1542', '0.1698', '0.0000', '0.1133', '0.1589', '0.0679', '0.0946', '0.3672', '0.0886', '0.1259', '0.6778', '0.1207', '0.2887', '0.9414', '0.1484', '0.2146', '0.7160', '0.2149', '0.3241', '1.0575', '0.2365', '0.3251', '1.2698', '0.2271', '0.3284', '1.4204', '0.2262', '0.2262', '0.7290', '0.2138', '0.1337', '0.8341', '0.2530', '0.1521', '0.7067', '0.2156', '0.1880', '0.6958', '0.1877', '0.1900', '0.6541', '0.2007', '0.0944', '0.7197', '0.2471', '0.0839', '0.6116', '0.2181', '0.0770', '0.5270', '0.2002', '0.1126', '0.5373', '0.1852', '0.1236', '0.6328', '0.2430', '0.1488', '0.5617', '0.2555', '0.1424', '0.5087', '0.2541']
2025-03-12 03:13:45,619 -
After abs normalization: ['0.0420', '0.0462', '0.0000', '0.0309', '0.0433', '0.0185', '0.0258', '0.1000', '0.0241', '0.0343', '0.1846', '0.0329', '0.0786', '0.2563', '0.0404', '0.0584', '0.1949', '0.0585', '0.0882', '0.2879', '0.0644', '0.0885', '0.3457', '0.0618', '0.0894', '0.3867', '0.0616', '0.0616', '0.1985', '0.0582', '0.0364', '0.2271', '0.0689', '0.0414', '0.1924', '0.0587', '0.0512', '0.1894', '0.0511', '0.0517', '0.1781', '0.0546', '0.0257', '0.1960', '0.0673', '0.0229', '0.1665', '0.0594', '0.0210', '0.1435', '0.0545', '0.0306', '0.1463', '0.0504', '0.0336', '0.1723', '0.0662', '0.0405', '0.1529', '0.0696', '0.0388', '0.1385', '0.0692']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0343 units
Y (height): 0.0424 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.2675 units
Normalized dimensions (relative proportions):
X: 0.0271
Y: 0.0335
Z: 0.0000
2025-03-12 03:13:45,622 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1736', '0.2424', '0.0000', '0.1234', '0.1416', '0.0698', '0.0949', '0.2611', '0.0843', '0.1615', '0.6106', '0.1085', '0.2962', '0.8960', '0.1326', '0.1303', '0.4338', '0.1863', '0.2751', '0.8941', '0.1803', '0.2567', '1.1065', '0.1934', '0.2388', '1.1922', '0.2111', '0.1388', '0.4836', '0.1836', '0.1351', '0.7896', '0.2199', '0.1170', '0.6041', '0.2042', '0.1222', '0.5077', '0.2064', '0.1164', '0.4644', '0.1885', '0.1077', '0.6618', '0.2516', '0.0995', '0.5142', '0.2521', '0.1088', '0.4568', '0.2392', '0.0828', '0.4126', '0.1931', '0.0866', '0.5461', '0.2399', '0.0877', '0.4539', '0.2547', '0.1299', '0.4216', '0.2685']
2025-03-12 03:13:45,623 -
After abs normalization: ['0.0556', '0.0776', '0.0000', '0.0395', '0.0453', '0.0223', '0.0304', '0.0836', '0.0270', '0.0517', '0.1955', '0.0347', '0.0948', '0.2868', '0.0424', '0.0417', '0.1389', '0.0596', '0.0881', '0.2862', '0.0577', '0.0822', '0.3542', '0.0619', '0.0765', '0.3816', '0.0676', '0.0444', '0.1548', '0.0588', '0.0433', '0.2528', '0.0704', '0.0375', '0.1934', '0.0654', '0.0391', '0.1625', '0.0661', '0.0373', '0.1487', '0.0603', '0.0345', '0.2118', '0.0805', '0.0319', '0.1646', '0.0807', '0.0348', '0.1462', '0.0766', '0.0265', '0.1321', '0.0618', '0.0277', '0.1748', '0.0768', '0.0281', '0.1453', '0.0815', '0.0416', '0.1349', '0.0860']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0522 units
Y (height): 0.1091 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.0632 units
Normalized dimensions (relative proportions):
X: 0.0491
Y: 0.1026
Z: 0.0000
2025-03-12 03:13:45,625 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1843', '0.1986', '0.0000', '0.1328', '0.1946', '0.0868', '0.1649', '0.3589', '0.1153', '0.2006', '0.6717', '0.1452', '0.2930', '0.8774', '0.1755', '0.1277', '0.4992', '0.1637', '0.3164', '0.9311', '0.2004', '0.2698', '1.1541', '0.2319', '0.2129', '1.2183', '0.2606', '0.1499', '0.5215', '0.1804', '0.1242', '0.8206', '0.2035', '0.1478', '0.7457', '0.2052', '0.2003', '0.7319', '0.2393', '0.1336', '0.4848', '0.1922', '0.0814', '0.6823', '0.2290', '0.0655', '0.6084', '0.2472', '0.0949', '0.5709', '0.2836', '0.0983', '0.4341', '0.2020', '0.0582', '0.5485', '0.2305', '0.0704', '0.5131', '0.2453', '0.0973', '0.4993', '0.2788']
2025-03-12 03:13:45,625 -
After abs normalization: ['0.0548', '0.0591', '0.0000', '0.0395', '0.0579', '0.0258', '0.0491', '0.1068', '0.0343', '0.0597', '0.1998', '0.0432', '0.0872', '0.2610', '0.0522', '0.0380', '0.1485', '0.0487', '0.0941', '0.2770', '0.0596', '0.0803', '0.3434', '0.0690', '0.0633', '0.3625', '0.0775', '0.0446', '0.1552', '0.0537', '0.0369', '0.2441', '0.0606', '0.0440', '0.2219', '0.0610', '0.0596', '0.2178', '0.0712', '0.0398', '0.1442', '0.0572', '0.0242', '0.2030', '0.0681', '0.0195', '0.1810', '0.0736', '0.0282', '0.1699', '0.0844', '0.0292', '0.1292', '0.0601', '0.0173', '0.1632', '0.0686', '0.0209', '0.1527', '0.0730', '0.0290', '0.1486', '0.0830']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0478 units
Y (height): 0.0530 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.0136 units
Normalized dimensions (relative proportions):
X: 0.0472
Y: 0.0523
Z: 0.0000
2025-03-12 03:13:45,629 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.1149', '0.2192', '0.0000', '0.0677', '0.1919', '0.1009', '0.0581', '0.4015', '0.1121', '0.0992', '0.6475', '0.1433', '0.2931', '0.7020', '0.1797', '0.1171', '0.5223', '0.1003', '0.1843', '0.9974', '0.1454', '0.1279', '1.1417', '0.1768', '0.1024', '1.1686', '0.2007', '0.1213', '0.5321', '0.1354', '0.0595', '0.7467', '0.1770', '0.0873', '0.6268', '0.1705', '0.1356', '0.6410', '0.2036', '0.0919', '0.4666', '0.1669', '0.0728', '0.5765', '0.2034', '0.0867', '0.5289', '0.2308', '0.1312', '0.5383', '0.2604', '0.0516', '0.3974', '0.1788', '0.0528', '0.4730', '0.1827', '0.0897', '0.4478', '0.1797', '0.1276', '0.4645', '0.2071']
2025-03-12 03:13:45,629 -
After abs normalization: ['0.0371', '0.0708', '0.0000', '0.0219', '0.0620', '0.0326', '0.0188', '0.1296', '0.0362', '0.0320', '0.2091', '0.0463', '0.0946', '0.2267', '0.0580', '0.0378', '0.1687', '0.0324', '0.0595', '0.3221', '0.0469', '0.0413', '0.3687', '0.0571', '0.0331', '0.3773', '0.0648', '0.0392', '0.1718', '0.0437', '0.0192', '0.2411', '0.0571', '0.0282', '0.2024', '0.0551', '0.0438', '0.2070', '0.0657', '0.0297', '0.1507', '0.0539', '0.0235', '0.1862', '0.0657', '0.0280', '0.1708', '0.0745', '0.0424', '0.1738', '0.0841', '0.0167', '0.1283', '0.0577', '0.0171', '0.1527', '0.0590', '0.0290', '0.1446', '0.0580', '0.0412', '0.1500', '0.0669']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0406 units
Y (height): 0.0682 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.9392 units
Normalized dimensions (relative proportions):
X: 0.0433
Y: 0.0726
Z: 0.0000
2025-03-12 03:13:45,632 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0220', '0.0555', '0.0000', '0.0290', '0.0684', '0.0167', '0.0714', '0.0865', '0.0472', '0.1278', '0.1416', '0.0764', '0.2726', '0.2328', '0.1050', '0.0734', '0.1150', '0.0991', '0.0691', '0.2436', '0.1039', '0.1452', '0.4443', '0.1041', '0.2567', '0.6705', '0.1016', '0.0577', '0.0784', '0.1113', '0.0857', '0.2779', '0.1270', '0.1776', '0.5850', '0.1417', '0.2615', '0.8645', '0.1524', '0.0376', '0.0761', '0.1152', '0.0380', '0.0724', '0.1437', '0.0581', '0.0762', '0.1535', '0.1036', '0.0781', '0.1492', '0.0292', '0.0809', '0.1175', '0.0293', '0.0682', '0.1234', '0.0504', '0.0595', '0.1130', '0.0883', '0.0547', '0.1046']
2025-03-12 03:13:45,633 -
After abs normalization: ['0.0136', '0.0343', '0.0000', '0.0179', '0.0422', '0.0103', '0.0441', '0.0534', '0.0292', '0.0789', '0.0875', '0.0472', '0.1683', '0.1437', '0.0648', '0.0454', '0.0710', '0.0612', '0.0427', '0.1504', '0.0641', '0.0897', '0.2744', '0.0643', '0.1585', '0.4141', '0.0627', '0.0357', '0.0484', '0.0687', '0.0529', '0.1716', '0.0785', '0.1097', '0.3613', '0.0875', '0.1615', '0.5339', '0.0941', '0.0232', '0.0470', '0.0712', '0.0234', '0.0447', '0.0887', '0.0359', '0.0471', '0.0948', '0.0640', '0.0482', '0.0921', '0.0180', '0.0500', '0.0726', '0.0181', '0.0421', '0.0762', '0.0311', '0.0367', '0.0698', '0.0545', '0.0338', '0.0646']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0097 units
Y (height): 0.0318 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.4631 units
Normalized dimensions (relative proportions):
X: 0.0209
Y: 0.0688
Z: 0.0000
2025-03-12 03:13:45,635 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0313', '0.0451', '0.0000', '0.0349', '0.0599', '0.0430', '0.0619', '0.1016', '0.0736', '0.0990', '0.1214', '0.0962', '0.1792', '0.1657', '0.1211', '0.0780', '0.0931', '0.1000', '0.0802', '0.1183', '0.0939', '0.2006', '0.2853', '0.0907', '0.3525', '0.4957', '0.0872', '0.0498', '0.0791', '0.0911', '0.1277', '0.1836', '0.0907', '0.2541', '0.4542', '0.0924', '0.3721', '0.6970', '0.0980', '0.0399', '0.0695', '0.0787', '0.0531', '0.0557', '0.0855', '0.0463', '0.0517', '0.0813', '0.0716', '0.0539', '0.0719', '0.0402', '0.0753', '0.0745', '0.0495', '0.0857', '0.0646', '0.0524', '0.0611', '0.0555', '0.0743', '0.0441', '0.0501']
2025-03-12 03:13:45,636 -
After abs normalization: ['0.0234', '0.0338', '0.0000', '0.0261', '0.0449', '0.0322', '0.0463', '0.0761', '0.0551', '0.0741', '0.0909', '0.0721', '0.1342', '0.1241', '0.0907', '0.0584', '0.0697', '0.0749', '0.0601', '0.0886', '0.0703', '0.1502', '0.2136', '0.0679', '0.2639', '0.3711', '0.0653', '0.0373', '0.0592', '0.0682', '0.0956', '0.1375', '0.0679', '0.1902', '0.3400', '0.0692', '0.2786', '0.5218', '0.0733', '0.0298', '0.0520', '0.0589', '0.0398', '0.0417', '0.0640', '0.0346', '0.0387', '0.0609', '0.0536', '0.0403', '0.0538', '0.0301', '0.0564', '0.0558', '0.0370', '0.0642', '0.0483', '0.0392', '0.0458', '0.0416', '0.0556', '0.0330', '0.0375']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0085 units
Y (height): 0.0198 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.3987 units
Normalized dimensions (relative proportions):
X: 0.0212
Y: 0.0497
Z: 0.0000
2025-03-12 03:13:45,639 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0212', '0.0399', '0.0000', '0.0191', '0.0382', '0.0215', '0.0483', '0.0484', '0.0419', '0.0944', '0.0701', '0.0602', '0.1504', '0.1223', '0.0780', '0.0432', '0.0412', '0.0749', '0.0408', '0.1312', '0.0740', '0.0894', '0.2106', '0.0662', '0.1650', '0.3173', '0.0622', '0.0378', '0.0326', '0.0740', '0.0573', '0.1247', '0.0745', '0.1137', '0.2793', '0.0705', '0.1654', '0.4237', '0.0684', '0.0336', '0.0342', '0.0690', '0.0265', '0.0500', '0.0735', '0.0275', '0.0616', '0.0775', '0.0384', '0.0638', '0.0754', '0.0321', '0.0360', '0.0649', '0.0266', '0.0493', '0.0599', '0.0314', '0.0585', '0.0558', '0.0499', '0.0517', '0.0551']
2025-03-12 03:13:45,640 -
After abs normalization: ['0.0253', '0.0477', '0.0000', '0.0229', '0.0456', '0.0256', '0.0577', '0.0578', '0.0500', '0.1129', '0.0838', '0.0719', '0.1798', '0.1461', '0.0932', '0.0517', '0.0492', '0.0895', '0.0487', '0.1568', '0.0885', '0.1069', '0.2517', '0.0792', '0.1972', '0.3792', '0.0743', '0.0451', '0.0390', '0.0884', '0.0685', '0.1490', '0.0890', '0.1359', '0.3339', '0.0842', '0.1977', '0.5063', '0.0817', '0.0401', '0.0409', '0.0825', '0.0317', '0.0598', '0.0878', '0.0328', '0.0737', '0.0926', '0.0459', '0.0762', '0.0901', '0.0384', '0.0431', '0.0775', '0.0318', '0.0590', '0.0716', '0.0376', '0.0699', '0.0667', '0.0596', '0.0618', '0.0659']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0050 units
Y (height): 0.0199 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.3347 units
Normalized dimensions (relative proportions):
X: 0.0150
Y: 0.0593
Z: 0.0000
2025-03-12 03:13:45,643 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0183', '0.0374', '0.0000', '0.0247', '0.0374', '0.0175', '0.0456', '0.0374', '0.0385', '0.0669', '0.0487', '0.0598', '0.1387', '0.1136', '0.0743', '0.0731', '0.0545', '0.0365', '0.0513', '0.1261', '0.0468', '0.0604', '0.2242', '0.0709', '0.0980', '0.3618', '0.0758', '0.0602', '0.0406', '0.0377', '0.0389', '0.1284', '0.0423', '0.0622', '0.2727', '0.0449', '0.0932', '0.4065', '0.0470', '0.0398', '0.0373', '0.0379', '0.0275', '0.0659', '0.0451', '0.0219', '0.0568', '0.0488', '0.0311', '0.0510', '0.0483', '0.0230', '0.0338', '0.0389', '0.0229', '0.0488', '0.0380', '0.0199', '0.0442', '0.0366', '0.0384', '0.0307', '0.0364']
2025-03-12 03:13:45,643 -
After abs normalization: ['0.0234', '0.0477', '0.0000', '0.0315', '0.0478', '0.0224', '0.0582', '0.0477', '0.0491', '0.0854', '0.0621', '0.0763', '0.1770', '0.1449', '0.0948', '0.0933', '0.0695', '0.0466', '0.0655', '0.1609', '0.0597', '0.0771', '0.2862', '0.0905', '0.1251', '0.4617', '0.0967', '0.0768', '0.0518', '0.0482', '0.0497', '0.1639', '0.0539', '0.0794', '0.3480', '0.0572', '0.1189', '0.5188', '0.0600', '0.0507', '0.0476', '0.0484', '0.0351', '0.0840', '0.0576', '0.0280', '0.0725', '0.0623', '0.0397', '0.0651', '0.0616', '0.0293', '0.0431', '0.0496', '0.0292', '0.0623', '0.0485', '0.0254', '0.0564', '0.0467', '0.0490', '0.0392', '0.0464']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0063 units
Y (height): 0.0118 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.3170 units
Normalized dimensions (relative proportions):
X: 0.0197
Y: 0.0373
Z: 0.0000
2025-03-12 03:13:45,645 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0045', '0.0059', '0.0000', '0.0041', '0.0042', '0.0044', '0.0044', '0.0065', '0.0071', '0.0042', '0.0123', '0.0090', '0.0073', '0.0152', '0.0110', '0.0078', '0.0073', '0.0065', '0.0059', '0.0079', '0.0094', '0.0056', '0.0074', '0.0120', '0.0069', '0.0073', '0.0138', '0.0072', '0.0065', '0.0052', '0.0059', '0.0050', '0.0084', '0.0055', '0.0069', '0.0118', '0.0072', '0.0083', '0.0139', '0.0062', '0.0058', '0.0039', '0.0060', '0.0067', '0.0050', '0.0051', '0.0096', '0.0062', '0.0071', '0.0115', '0.0074', '0.0045', '0.0055', '0.0038', '0.0036', '0.0049', '0.0050', '0.0034', '0.0043', '0.0038', '0.0053', '0.0058', '0.0032']
2025-03-12 03:13:45,645 -
After abs normalization: ['0.0779', '0.1012', '0.0000', '0.0702', '0.0732', '0.0763', '0.0766', '0.1127', '0.1226', '0.0724', '0.2125', '0.1560', '0.1253', '0.2623', '0.1894', '0.1352', '0.1269', '0.1124', '0.1027', '0.1357', '0.1617', '0.0965', '0.1271', '0.2072', '0.1199', '0.1257', '0.2381', '0.1246', '0.1119', '0.0892', '0.1018', '0.0864', '0.1444', '0.0950', '0.1185', '0.2038', '0.1244', '0.1442', '0.2401', '0.1079', '0.1005', '0.0680', '0.1040', '0.1164', '0.0858', '0.0884', '0.1652', '0.1063', '0.1228', '0.1993', '0.1270', '0.0772', '0.0948', '0.0663', '0.0626', '0.0842', '0.0863', '0.0595', '0.0748', '0.0650', '0.0923', '0.1007', '0.0544']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0027 units
Y (height): 0.0035 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0263 units
Normalized dimensions (relative proportions):
X: 0.1039
Y: 0.1329
Z: 0.0000
2025-03-12 03:13:45,649 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0037', '0.0069', '0.0000', '0.0040', '0.0057', '0.0068', '0.0025', '0.0047', '0.0100', '0.0050', '0.0050', '0.0112', '0.0075', '0.0052', '0.0113', '0.0081', '0.0055', '0.0069', '0.0057', '0.0081', '0.0086', '0.0045', '0.0203', '0.0090', '0.0067', '0.0270', '0.0089', '0.0078', '0.0054', '0.0039', '0.0035', '0.0028', '0.0038', '0.0037', '0.0064', '0.0047', '0.0073', '0.0096', '0.0055', '0.0071', '0.0056', '0.0043', '0.0049', '0.0036', '0.0036', '0.0044', '0.0039', '0.0043', '0.0058', '0.0085', '0.0055', '0.0064', '0.0070', '0.0072', '0.0053', '0.0052', '0.0069', '0.0047', '0.0041', '0.0065', '0.0059', '0.0059', '0.0067']
2025-03-12 03:13:45,649 -
After abs normalization: ['0.0631', '0.1160', '0.0000', '0.0677', '0.0961', '0.1140', '0.0425', '0.0795', '0.1678', '0.0842', '0.0845', '0.1887', '0.1255', '0.0883', '0.1898', '0.1369', '0.0920', '0.1169', '0.0965', '0.1357', '0.1445', '0.0762', '0.3421', '0.1516', '0.1130', '0.4549', '0.1492', '0.1311', '0.0907', '0.0655', '0.0587', '0.0475', '0.0638', '0.0627', '0.1080', '0.0797', '0.1238', '0.1614', '0.0934', '0.1203', '0.0945', '0.0731', '0.0819', '0.0605', '0.0610', '0.0737', '0.0653', '0.0727', '0.0978', '0.1429', '0.0918', '0.1083', '0.1171', '0.1209', '0.0895', '0.0881', '0.1158', '0.0794', '0.0689', '0.1101', '0.0988', '0.0998', '0.1133']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0025 units
Y (height): 0.0037 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0299 units
Normalized dimensions (relative proportions):
X: 0.0828
Y: 0.1252
Z: 0.0000
2025-03-12 03:13:45,652 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0043', '0.0056', '0.0000', '0.0043', '0.0081', '0.0087', '0.0040', '0.0084', '0.0135', '0.0049', '0.0059', '0.0163', '0.0054', '0.0083', '0.0181', '0.0093', '0.0065', '0.0133', '0.0091', '0.0083', '0.0173', '0.0066', '0.0104', '0.0187', '0.0090', '0.0140', '0.0191', '0.0097', '0.0058', '0.0093', '0.0075', '0.0059', '0.0138', '0.0050', '0.0035', '0.0145', '0.0067', '0.0072', '0.0137', '0.0090', '0.0062', '0.0063', '0.0065', '0.0060', '0.0075', '0.0042', '0.0058', '0.0074', '0.0054', '0.0097', '0.0069', '0.0077', '0.0058', '0.0068', '0.0055', '0.0064', '0.0061', '0.0051', '0.0073', '0.0062', '0.0059', '0.0103', '0.0063']
2025-03-12 03:13:45,653 -
After abs normalization: ['0.0592', '0.0776', '0.0000', '0.0588', '0.1110', '0.1195', '0.0555', '0.1151', '0.1853', '0.0674', '0.0813', '0.2238', '0.0741', '0.1142', '0.2491', '0.1276', '0.0902', '0.1837', '0.1259', '0.1148', '0.2387', '0.0911', '0.1435', '0.2579', '0.1241', '0.1923', '0.2626', '0.1340', '0.0798', '0.1280', '0.1029', '0.0812', '0.1901', '0.0690', '0.0480', '0.2003', '0.0924', '0.0991', '0.1888', '0.1235', '0.0852', '0.0873', '0.0895', '0.0826', '0.1029', '0.0576', '0.0796', '0.1023', '0.0737', '0.1341', '0.0952', '0.1059', '0.0803', '0.0936', '0.0758', '0.0887', '0.0840', '0.0704', '0.0999', '0.0856', '0.0817', '0.1419', '0.0864']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0029 units
Y (height): 0.0038 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0277 units
Normalized dimensions (relative proportions):
X: 0.1053
Y: 0.1359
Z: 0.0000
2025-03-12 03:13:45,655 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0046', '0.0055', '0.0000', '0.0039', '0.0046', '0.0058', '0.0019', '0.0043', '0.0088', '0.0036', '0.0025', '0.0104', '0.0038', '0.0060', '0.0112', '0.0047', '0.0060', '0.0075', '0.0046', '0.0089', '0.0089', '0.0042', '0.0083', '0.0088', '0.0052', '0.0082', '0.0085', '0.0050', '0.0045', '0.0042', '0.0039', '0.0061', '0.0062', '0.0037', '0.0027', '0.0065', '0.0029', '0.0063', '0.0055', '0.0042', '0.0030', '0.0034', '0.0035', '0.0040', '0.0056', '0.0021', '0.0041', '0.0060', '0.0030', '0.0055', '0.0051', '0.0029', '0.0021', '0.0050', '0.0023', '0.0035', '0.0061', '0.0019', '0.0044', '0.0061', '0.0051', '0.0061', '0.0053']
2025-03-12 03:13:45,655 -
After abs normalization: ['0.1049', '0.1267', '0.0000', '0.0886', '0.1055', '0.1318', '0.0434', '0.0982', '0.2014', '0.0817', '0.0577', '0.2388', '0.0875', '0.1369', '0.2567', '0.1070', '0.1380', '0.1717', '0.1058', '0.2029', '0.2043', '0.0958', '0.1899', '0.2023', '0.1196', '0.1885', '0.1936', '0.1139', '0.1026', '0.0967', '0.0893', '0.1390', '0.1426', '0.0847', '0.0614', '0.1489', '0.0655', '0.1439', '0.1249', '0.0964', '0.0688', '0.0780', '0.0799', '0.0911', '0.1273', '0.0484', '0.0941', '0.1366', '0.0689', '0.1260', '0.1168', '0.0673', '0.0475', '0.1156', '0.0529', '0.0795', '0.1389', '0.0428', '0.1002', '0.1404', '0.1176', '0.1394', '0.1222']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0021 units
Y (height): 0.0024 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0173 units
Normalized dimensions (relative proportions):
X: 0.1190
Y: 0.1389
Z: 0.0000
2025-03-12 03:13:45,658 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0043', '0.0089', '0.0000', '0.0026', '0.0077', '0.0053', '0.0023', '0.0066', '0.0071', '0.0027', '0.0074', '0.0079', '0.0058', '0.0073', '0.0090', '0.0079', '0.0041', '0.0059', '0.0051', '0.0050', '0.0073', '0.0045', '0.0109', '0.0078', '0.0051', '0.0178', '0.0082', '0.0058', '0.0035', '0.0050', '0.0043', '0.0054', '0.0070', '0.0041', '0.0080', '0.0072', '0.0047', '0.0101', '0.0077', '0.0041', '0.0039', '0.0046', '0.0042', '0.0051', '0.0068', '0.0037', '0.0065', '0.0076', '0.0036', '0.0083', '0.0080', '0.0030', '0.0052', '0.0056', '0.0044', '0.0070', '0.0061', '0.0046', '0.0070', '0.0060', '0.0036', '0.0081', '0.0059']
2025-03-12 03:13:45,658 -
After abs normalization: ['0.0830', '0.1714', '0.0000', '0.0492', '0.1480', '0.1023', '0.0441', '0.1264', '0.1375', '0.0523', '0.1420', '0.1520', '0.1119', '0.1410', '0.1732', '0.1531', '0.0789', '0.1130', '0.0988', '0.0960', '0.1398', '0.0871', '0.2107', '0.1507', '0.0981', '0.3433', '0.1586', '0.1118', '0.0680', '0.0958', '0.0829', '0.1042', '0.1344', '0.0781', '0.1534', '0.1389', '0.0907', '0.1946', '0.1488', '0.0787', '0.0749', '0.0883', '0.0804', '0.0988', '0.1307', '0.0716', '0.1261', '0.1460', '0.0699', '0.1603', '0.1538', '0.0578', '0.1000', '0.1075', '0.0854', '0.1353', '0.1183', '0.0894', '0.1350', '0.1161', '0.0696', '0.1568', '0.1143']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0018 units
Y (height): 0.0055 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0310 units
Normalized dimensions (relative proportions):
X: 0.0583
Y: 0.1775
Z: 0.0000
2025-03-12 03:13:45,661 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0052', '0.0071', '0.0000', '0.0039', '0.0059', '0.0062', '0.0043', '0.0060', '0.0104', '0.0054', '0.0061', '0.0143', '0.0044', '0.0079', '0.0182', '0.0035', '0.0041', '0.0068', '0.0033', '0.0041', '0.0078', '0.0042', '0.0038', '0.0091', '0.0047', '0.0063', '0.0110', '0.0034', '0.0042', '0.0051', '0.0040', '0.0054', '0.0068', '0.0045', '0.0073', '0.0096', '0.0051', '0.0103', '0.0122', '0.0036', '0.0038', '0.0037', '0.0038', '0.0042', '0.0054', '0.0044', '0.0050', '0.0080', '0.0063', '0.0054', '0.0100', '0.0041', '0.0049', '0.0031', '0.0034', '0.0060', '0.0051', '0.0028', '0.0059', '0.0077', '0.0041', '0.0061', '0.0097']
2025-03-12 03:13:45,661 -
After abs normalization: ['0.0982', '0.1334', '0.0000', '0.0726', '0.1119', '0.1161', '0.0814', '0.1128', '0.1961', '0.1019', '0.1145', '0.2683', '0.0834', '0.1488', '0.3419', '0.0655', '0.0763', '0.1273', '0.0630', '0.0770', '0.1459', '0.0784', '0.0722', '0.1712', '0.0889', '0.1190', '0.2073', '0.0638', '0.0786', '0.0960', '0.0762', '0.1019', '0.1285', '0.0854', '0.1382', '0.1813', '0.0965', '0.1945', '0.2288', '0.0672', '0.0717', '0.0691', '0.0710', '0.0793', '0.1023', '0.0837', '0.0932', '0.1508', '0.1193', '0.1020', '0.1883', '0.0764', '0.0926', '0.0585', '0.0634', '0.1132', '0.0969', '0.0528', '0.1110', '0.1458', '0.0777', '0.1158', '0.1826']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0033 units
Y (height): 0.0041 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0347 units
Normalized dimensions (relative proportions):
X: 0.0963
Y: 0.1175
Z: 0.0000
2025-03-12 03:13:45,664 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0034', '0.0042', '0.0000', '0.0026', '0.0023', '0.0036', '0.0017', '0.0024', '0.0056', '0.0013', '0.0043', '0.0069', '0.0036', '0.0032', '0.0088', '0.0037', '0.0043', '0.0077', '0.0030', '0.0053', '0.0080', '0.0028', '0.0054', '0.0086', '0.0028', '0.0062', '0.0098', '0.0031', '0.0045', '0.0082', '0.0051', '0.0060', '0.0109', '0.0049', '0.0064', '0.0135', '0.0078', '0.0072', '0.0154', '0.0027', '0.0042', '0.0079', '0.0033', '0.0056', '0.0106', '0.0038', '0.0053', '0.0138', '0.0043', '0.0083', '0.0161', '0.0022', '0.0065', '0.0071', '0.0020', '0.0063', '0.0091', '0.0023', '0.0056', '0.0109', '0.0036', '0.0048', '0.0126']
2025-03-12 03:13:45,664 -
After abs normalization: ['0.0622', '0.0765', '0.0000', '0.0477', '0.0417', '0.0666', '0.0311', '0.0439', '0.1028', '0.0232', '0.0785', '0.1272', '0.0658', '0.0588', '0.1609', '0.0685', '0.0796', '0.1415', '0.0547', '0.0973', '0.1471', '0.0507', '0.0997', '0.1577', '0.0512', '0.1131', '0.1800', '0.0561', '0.0816', '0.1501', '0.0939', '0.1104', '0.2000', '0.0891', '0.1166', '0.2463', '0.1433', '0.1319', '0.2821', '0.0491', '0.0768', '0.1444', '0.0601', '0.1018', '0.1946', '0.0700', '0.0971', '0.2531', '0.0782', '0.1513', '0.2954', '0.0403', '0.1191', '0.1305', '0.0361', '0.1158', '0.1659', '0.0429', '0.1022', '0.1991', '0.0666', '0.0885', '0.2313']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0017 units
Y (height): 0.0021 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0198 units
Normalized dimensions (relative proportions):
X: 0.0868
Y: 0.1084
Z: 0.0000
2025-03-12 03:13:45,667 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0049', '0.0040', '0.0000', '0.0051', '0.0034', '0.0046', '0.0034', '0.0035', '0.0074', '0.0036', '0.0070', '0.0095', '0.0031', '0.0073', '0.0116', '0.0035', '0.0042', '0.0081', '0.0029', '0.0045', '0.0117', '0.0027', '0.0047', '0.0133', '0.0024', '0.0054', '0.0142', '0.0037', '0.0042', '0.0079', '0.0054', '0.0079', '0.0101', '0.0044', '0.0083', '0.0103', '0.0047', '0.0085', '0.0109', '0.0036', '0.0047', '0.0081', '0.0029', '0.0071', '0.0108', '0.0033', '0.0082', '0.0112', '0.0039', '0.0104', '0.0119', '0.0033', '0.0045', '0.0082', '0.0037', '0.0043', '0.0122', '0.0037', '0.0046', '0.0136', '0.0033', '0.0050', '0.0148']
2025-03-12 03:13:45,668 -
After abs normalization: ['0.0842', '0.0692', '0.0000', '0.0870', '0.0589', '0.0778', '0.0583', '0.0604', '0.1268', '0.0614', '0.1195', '0.1619', '0.0537', '0.1241', '0.1981', '0.0592', '0.0714', '0.1382', '0.0501', '0.0762', '0.1996', '0.0457', '0.0802', '0.2271', '0.0413', '0.0923', '0.2424', '0.0633', '0.0725', '0.1358', '0.0926', '0.1356', '0.1731', '0.0748', '0.1414', '0.1754', '0.0805', '0.1456', '0.1867', '0.0617', '0.0800', '0.1388', '0.0491', '0.1221', '0.1853', '0.0568', '0.1403', '0.1910', '0.0660', '0.1771', '0.2035', '0.0558', '0.0761', '0.1402', '0.0625', '0.0730', '0.2085', '0.0629', '0.0788', '0.2327', '0.0564', '0.0852', '0.2529']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0013 units
Y (height): 0.0012 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0210 units
Normalized dimensions (relative proportions):
X: 0.0633
Y: 0.0550
Z: 0.0000
2025-03-12 03:13:45,671 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0053', '0.0096', '0.0000', '0.0041', '0.0048', '0.0035', '0.0052', '0.0042', '0.0058', '0.0100', '0.0045', '0.0080', '0.0098', '0.0047', '0.0111', '0.0054', '0.0112', '0.0078', '0.0069', '0.0083', '0.0102', '0.0056', '0.0080', '0.0114', '0.0070', '0.0105', '0.0124', '0.0049', '0.0096', '0.0086', '0.0104', '0.0141', '0.0108', '0.0149', '0.0207', '0.0150', '0.0266', '0.0314', '0.0193', '0.0037', '0.0097', '0.0090', '0.0058', '0.0161', '0.0116', '0.0049', '0.0117', '0.0151', '0.0064', '0.0094', '0.0187', '0.0047', '0.0123', '0.0092', '0.0041', '0.0099', '0.0124', '0.0035', '0.0093', '0.0169', '0.0046', '0.0097', '0.0203']
2025-03-12 03:13:45,671 -
After abs normalization: ['0.0584', '0.1064', '0.0000', '0.0458', '0.0531', '0.0392', '0.0573', '0.0464', '0.0643', '0.1112', '0.0497', '0.0884', '0.1085', '0.0522', '0.1229', '0.0597', '0.1244', '0.0869', '0.0761', '0.0922', '0.1130', '0.0621', '0.0884', '0.1267', '0.0781', '0.1167', '0.1377', '0.0541', '0.1063', '0.0955', '0.1150', '0.1563', '0.1196', '0.1650', '0.2299', '0.1666', '0.2950', '0.3485', '0.2141', '0.0414', '0.1075', '0.1002', '0.0644', '0.1787', '0.1284', '0.0541', '0.1302', '0.1673', '0.0710', '0.1042', '0.2071', '0.0520', '0.1360', '0.1018', '0.0459', '0.1093', '0.1381', '0.0384', '0.1036', '0.1872', '0.0515', '0.1077', '0.2250']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0012 units
Y (height): 0.0030 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0439 units
Normalized dimensions (relative proportions):
X: 0.0282
Y: 0.0682
Z: 0.0000
2025-03-12 03:13:45,674 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0106', '0.0085', '0.0000', '0.0068', '0.0074', '0.0049', '0.0076', '0.0058', '0.0072', '0.0102', '0.0084', '0.0093', '0.0058', '0.0072', '0.0123', '0.0052', '0.0053', '0.0072', '0.0049', '0.0076', '0.0089', '0.0052', '0.0087', '0.0101', '0.0062', '0.0088', '0.0110', '0.0054', '0.0063', '0.0062', '0.0057', '0.0065', '0.0072', '0.0048', '0.0050', '0.0095', '0.0062', '0.0036', '0.0119', '0.0056', '0.0067', '0.0055', '0.0062', '0.0087', '0.0062', '0.0078', '0.0062', '0.0094', '0.0094', '0.0062', '0.0123', '0.0052', '0.0071', '0.0057', '0.0052', '0.0060', '0.0084', '0.0055', '0.0048', '0.0114', '0.0056', '0.0048', '0.0144']
2025-03-12 03:13:45,674 -
After abs normalization: ['0.1750', '0.1401', '0.0000', '0.1125', '0.1220', '0.0811', '0.1257', '0.0964', '0.1190', '0.1688', '0.1400', '0.1547', '0.0965', '0.1186', '0.2045', '0.0870', '0.0884', '0.1189', '0.0807', '0.1257', '0.1478', '0.0870', '0.1443', '0.1674', '0.1031', '0.1466', '0.1825', '0.0895', '0.1045', '0.1030', '0.0940', '0.1076', '0.1194', '0.0799', '0.0833', '0.1582', '0.1033', '0.0602', '0.1979', '0.0922', '0.1110', '0.0918', '0.1033', '0.1436', '0.1025', '0.1285', '0.1035', '0.1558', '0.1555', '0.1019', '0.2042', '0.0859', '0.1178', '0.0947', '0.0859', '0.0992', '0.1388', '0.0907', '0.0792', '0.1887', '0.0929', '0.0792', '0.2389']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0033 units
Y (height): 0.0019 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.0272 units
Normalized dimensions (relative proportions):
X: 0.1199
Y: 0.0686
Z: 0.0000
2025-03-12 03:13:45,677 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0642', '0.2649', '0.0000', '0.0640', '0.2530', '0.0279', '0.0728', '0.2278', '0.0445', '0.0836', '0.2078', '0.0546', '0.0749', '0.1899', '0.0644', '0.0874', '0.2642', '0.0755', '0.0865', '0.2145', '0.0925', '0.0816', '0.1908', '0.0920', '0.0754', '0.1748', '0.0901', '0.0772', '0.2848', '0.0731', '0.0702', '0.2281', '0.0907', '0.0636', '0.1976', '0.0868', '0.0568', '0.1797', '0.0854', '0.0618', '0.2926', '0.0673', '0.0573', '0.2443', '0.0798', '0.0545', '0.2154', '0.0777', '0.0521', '0.1995', '0.0768', '0.0471', '0.2857', '0.0624', '0.0449', '0.2433', '0.0710', '0.0482', '0.2255', '0.0708', '0.0504', '0.2154', '0.0702']
2025-03-12 03:13:45,677 -
After abs normalization: ['0.0557', '0.2300', '0.0000', '0.0556', '0.2196', '0.0242', '0.0632', '0.1978', '0.0386', '0.0726', '0.1804', '0.0474', '0.0650', '0.1649', '0.0559', '0.0759', '0.2294', '0.0655', '0.0751', '0.1863', '0.0803', '0.0708', '0.1657', '0.0799', '0.0654', '0.1517', '0.0782', '0.0670', '0.2473', '0.0635', '0.0609', '0.1981', '0.0787', '0.0552', '0.1715', '0.0754', '0.0493', '0.1560', '0.0741', '0.0536', '0.2540', '0.0584', '0.0498', '0.2121', '0.0693', '0.0473', '0.1870', '0.0675', '0.0453', '0.1732', '0.0666', '0.0409', '0.2480', '0.0542', '0.0390', '0.2113', '0.0616', '0.0418', '0.1958', '0.0615', '0.0438', '0.1870', '0.0610']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0537 units
Y (height): 0.2649 units
Z (depth): 0.0000 units
Total movement space (diagonal): 1.1365 units
Normalized dimensions (relative proportions):
X: 0.0472
Y: 0.2331
Z: 0.0000
2025-03-12 03:13:45,681 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0344', '0.2159', '0.0000', '0.0420', '0.1970', '0.0269', '0.0499', '0.1754', '0.0420', '0.0561', '0.1575', '0.0533', '0.0433', '0.1390', '0.0655', '0.0585', '0.2018', '0.0586', '0.0508', '0.1699', '0.0762', '0.0513', '0.1551', '0.0821', '0.0565', '0.1474', '0.0856', '0.0534', '0.2198', '0.0592', '0.0447', '0.1835', '0.0824', '0.0440', '0.1644', '0.0904', '0.0462', '0.1500', '0.0955', '0.0452', '0.2329', '0.0577', '0.0402', '0.2031', '0.0773', '0.0385', '0.1836', '0.0835', '0.0413', '0.1681', '0.0855', '0.0358', '0.2388', '0.0556', '0.0325', '0.2140', '0.0724', '0.0300', '0.1996', '0.0791', '0.0338', '0.1884', '0.0825']
2025-03-12 03:13:45,681 -
After abs normalization: ['0.0365', '0.2287', '0.0000', '0.0445', '0.2088', '0.0286', '0.0528', '0.1859', '0.0445', '0.0594', '0.1669', '0.0565', '0.0459', '0.1473', '0.0694', '0.0620', '0.2139', '0.0621', '0.0538', '0.1800', '0.0807', '0.0544', '0.1644', '0.0869', '0.0598', '0.1562', '0.0907', '0.0566', '0.2329', '0.0627', '0.0474', '0.1944', '0.0873', '0.0466', '0.1742', '0.0958', '0.0490', '0.1589', '0.1012', '0.0479', '0.2467', '0.0611', '0.0426', '0.2152', '0.0819', '0.0408', '0.1945', '0.0885', '0.0438', '0.1782', '0.0905', '0.0379', '0.2530', '0.0589', '0.0344', '0.2267', '0.0767', '0.0318', '0.2115', '0.0838', '0.0358', '0.1996', '0.0874']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0280 units
Y (height): 0.2159 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.9054 units
Normalized dimensions (relative proportions):
X: 0.0309
Y: 0.2384
Z: 0.0000
2025-03-12 03:13:45,684 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0549', '0.2034', '0.0000', '0.0530', '0.1929', '0.0267', '0.0549', '0.1727', '0.0380', '0.0612', '0.1563', '0.0471', '0.0726', '0.1362', '0.0558', '0.0744', '0.2007', '0.0522', '0.0784', '0.1649', '0.0682', '0.0784', '0.1464', '0.0730', '0.0781', '0.1289', '0.0758', '0.0687', '0.2182', '0.0552', '0.0683', '0.1798', '0.0742', '0.0696', '0.1580', '0.0831', '0.0709', '0.1376', '0.0906', '0.0587', '0.2292', '0.0558', '0.0569', '0.1994', '0.0758', '0.0547', '0.1825', '0.0865', '0.0523', '0.1665', '0.0915', '0.0488', '0.2309', '0.0555', '0.0501', '0.2055', '0.0761', '0.0540', '0.1922', '0.0877', '0.0595', '0.1838', '0.0941']
2025-03-12 03:13:45,684 -
After abs normalization: ['0.0584', '0.2162', '0.0000', '0.0563', '0.2051', '0.0283', '0.0584', '0.1836', '0.0404', '0.0650', '0.1662', '0.0500', '0.0771', '0.1448', '0.0593', '0.0790', '0.2134', '0.0555', '0.0833', '0.1753', '0.0725', '0.0833', '0.1556', '0.0776', '0.0830', '0.1370', '0.0806', '0.0730', '0.2319', '0.0586', '0.0726', '0.1911', '0.0789', '0.0740', '0.1680', '0.0883', '0.0754', '0.1463', '0.0963', '0.0624', '0.2437', '0.0593', '0.0605', '0.2120', '0.0805', '0.0581', '0.1940', '0.0919', '0.0556', '0.1770', '0.0973', '0.0518', '0.2455', '0.0590', '0.0532', '0.2184', '0.0809', '0.0574', '0.2044', '0.0932', '0.0632', '0.1954', '0.1001']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0503 units
Y (height): 0.2034 units
Z (depth): 0.0000 units
Total movement space (diagonal): 0.9095 units
Normalized dimensions (relative proportions):
X: 0.0553
Y: 0.2236
Z: 0.0000
2025-03-12 03:13:45,686 -
=== Movement Debug Values ===
Before normalization:
Absolute movement raw values: ['0.0711', '0.2360', '0.0000', '0.0694', '0.2254', '0.0173', '0.0740', '0.2050', '0.0297', '0.0801', '0.1863', '0.0405', '0.0951', '0.1664', '0.0544', '0.1111', '0.2290', '0.0583', '0.1170', '0.1948', '0.0745', '0.1175', '0.1776', '0.0797', '0.1183', '0.1635', '0.0821', '0.1038', '0.2495', '0.0588', '0.1061', '0.2106', '0.0759', '0.1072', '0.1862', '0.0776', '0.1098', '0.1749', '0.0781', '0.0903', '0.2614', '0.0571', '0.0913', '0.2283', '0.0677', '0.0935', '0.2060', '0.0724', '0.0992', '0.1920', '0.0776', '0.0738', '0.2616', '0.0560', '0.0758', '0.2334', '0.0661', '0.0789', '0.2203', '0.0719', '0.0843', '0.2098', '0.0767']
2025-03-12 03:13:45,687 -
After abs normalization: ['0.0643', '0.2134', '0.0000', '0.0628', '0.2038', '0.0156', '0.0669', '0.1853', '0.0269', '0.0724', '0.1684', '0.0366', '0.0860', '0.1504', '0.0492', '0.1005', '0.2071', '0.0528', '0.1058', '0.1761', '0.0674', '0.1062', '0.1606', '0.0720', '0.1070', '0.1478', '0.0742', '0.0939', '0.2256', '0.0532', '0.0959', '0.1904', '0.0686', '0.0970', '0.1683', '0.0701', '0.0992', '0.1581', '0.0706', '0.0816', '0.2363', '0.0517', '0.0826', '0.2064', '0.0612', '0.0845', '0.1863', '0.0655', '0.0897', '0.1736', '0.0702', '0.0667', '0.2366', '0.0507', '0.0685', '0.2110', '0.0597', '0.0714', '0.1992', '0.0650', '0.0762', '0.1897', '0.0694']
=== Bounding Box Analysis ===
Box dimensions (width, height, depth):
X (width): 0.0587 units
Y (height): 0.2360 units
Z (depth): 0.0000 units