-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataTest
2104 lines (2104 loc) · 318 KB
/
dataTest
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
03-05 17:13:10.621 16021-16315/com.wearnotch.notchdemo.tutorial.mock I/Capture: Starting capture ...
03-05 17:13:11.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:0
03-05 17:13:11.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9999438, 0.008828714, 0.005864459, -6.40545E-5]) ([-0.0022382354, 0.39994508, 0.0057026627])
03-05 17:13:11.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9997109, 0.0039660926, -0.022231957, 0.008254959]) ([-6.6725974E-4, 0.039993294, 3.0251377E-4])
03-05 17:13:11.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:0
03-05 17:13:11.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9999438, 0.008828714, 0.005864459, -6.40545E-5]) ([-0.0022382354, 0.39994508, 0.0057026627])
03-05 17:13:11.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9997109, 0.0039660926, -0.022231957, 0.008254959]) ([-6.6725974E-4, 0.039993294, 3.0251377E-4])
03-05 17:13:11.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:0
03-05 17:13:11.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9999438, 0.008828714, 0.005864459, -6.40545E-5]) ([-0.0022382354, 0.39994508, 0.0057026627])
03-05 17:13:11.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9997109, 0.0039660926, -0.022231957, 0.008254959]) ([-6.6725974E-4, 0.039993294, 3.0251377E-4])
03-05 17:13:11.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:14
03-05 17:13:11.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9995987, -0.0073185405, -0.027156722, -0.0033663367]) ([-0.0036375416, 0.3998702, -0.007183089])
03-05 17:13:11.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99842525, -0.011509447, -0.050858825, 0.020686401]) ([-0.0016054778, 0.03995518, -0.0010034728])
03-05 17:13:11.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:14
03-05 17:13:11.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9995987, -0.0073185405, -0.027156722, -0.0033663367]) ([-0.0036375416, 0.3998702, -0.007183089])
03-05 17:13:11.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99842525, -0.011509447, -0.050858825, 0.020686401]) ([-0.0016054778, 0.03995518, -0.0010034728])
03-05 17:13:11.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:14
03-05 17:13:11.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9995987, -0.0073185405, -0.027156722, -0.0033663367]) ([-0.0036375416, 0.3998702, -0.007183089])
03-05 17:13:11.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99842525, -0.011509447, -0.050858825, 0.020686401]) ([-0.0016054778, 0.03995518, -0.0010034728])
03-05 17:13:11.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.891 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.891 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:15
03-05 17:13:11.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9989681, -0.010992721, -0.042968582, -0.009775912]) ([-3.431877E-4, 0.39980298, -0.009581258])
03-05 17:13:11.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99794894, -0.013615666, -0.05865735, 0.021721726]) ([-0.001670281, 0.039947424, -0.0011889503])
03-05 17:13:11.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:16
03-05 17:13:11.951 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99809235, -0.014617115, -0.05632604, -0.020623827]) ([0.006511275, 0.39964366, -0.01189521])
03-05 17:13:11.951 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9970529, -0.016552433, -0.0725729, 0.018564686]) ([-0.0013846973, 0.039950505, -0.0014280757])
03-05 17:13:11.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:16
03-05 17:13:11.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99809235, -0.014617115, -0.05632604, -0.020623827]) ([0.006511275, 0.39964366, -0.01189521])
03-05 17:13:11.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9970529, -0.016552433, -0.0725729, 0.018564686]) ([-0.0013846973, 0.039950505, -0.0014280757])
03-05 17:13:11.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:16
03-05 17:13:11.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99809235, -0.014617115, -0.05632604, -0.020623827]) ([0.006511275, 0.39964366, -0.01189521])
03-05 17:13:11.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9970529, -0.016552433, -0.0725729, 0.018564686]) ([-0.0013846973, 0.039950505, -0.0014280757])
03-05 17:13:12.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:17
03-05 17:13:12.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9968453, -0.017786087, -0.069774725, -0.03338566]) ([0.013891393, 0.3993393, -0.012948207])
03-05 17:13:12.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9959486, -0.016564354, -0.086719975, 0.017078891]) ([-0.001245859, 0.039954714, -0.001438266])
03-05 17:13:12.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:19
03-05 17:13:12.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99331284, -0.021116823, -0.098350905, -0.056665026]) ([0.027381806, 0.39843175, -0.01303635])
03-05 17:13:12.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9932755, -0.016863761, -0.11365774, 0.014183609]) ([-9.7372284E-4, 0.03996116, -0.0014689952])
03-05 17:13:12.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:19
03-05 17:13:12.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99331284, -0.021116823, -0.098350905, -0.056665026]) ([0.027381806, 0.39843175, -0.01303635])
03-05 17:13:12.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9932755, -0.016863761, -0.11365774, 0.014183609]) ([-9.7372284E-4, 0.03996116, -0.0014689952])
03-05 17:13:12.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:19
03-05 17:13:12.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99331284, -0.021116823, -0.098350905, -0.056665026]) ([0.027381806, 0.39843175, -0.01303635])
03-05 17:13:12.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9932755, -0.016863761, -0.11365774, 0.014183609]) ([-9.7372284E-4, 0.03996116, -0.0014689952])
03-05 17:13:12.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:20
03-05 17:13:12.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9911866, -0.020235611, -0.11363719, -0.06501009]) ([0.032220338, 0.39803153, -0.01146267])
03-05 17:13:12.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99144083, -0.016384853, -0.12888707, 0.012834666]) ([-8.4904133E-4, 0.039965343, -0.0014319068])
03-05 17:13:12.111 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:20
03-05 17:13:12.111 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9911866, -0.020235611, -0.11363719, -0.06501009]) ([0.032220338, 0.39803153, -0.01146267])
03-05 17:13:12.111 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.99144083, -0.016384853, -0.12888707, 0.012834666]) ([-8.4904133E-4, 0.039965343, -0.0014319068])
03-05 17:13:12.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:21
03-05 17:13:12.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9888699, -0.01719332, -0.129398, -0.07139272]) ([0.03525037, 0.39773938, -0.00900275])
03-05 17:13:12.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9891294, -0.016575247, -0.14545733, 0.013802193]) ([-8.992931E-4, 0.03996279, -0.0014722155])
03-05 17:13:12.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:21
03-05 17:13:12.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9888699, -0.01719332, -0.129398, -0.07139272]) ([0.03525037, 0.39773938, -0.00900275])
03-05 17:13:12.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9891294, -0.016575247, -0.14545733, 0.013802193]) ([-8.992931E-4, 0.03996279, -0.0014722155])
03-05 17:13:12.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:22
03-05 17:13:12.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9857341, -0.011379941, -0.15018536, -0.07512059]) ([0.031794675, 0.397727, -0.005691345])
03-05 17:13:12.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9799324, -0.016434371, -0.19587678, 0.03308694]) ([-0.0023363084, 0.03989082, -0.001806843])
03-05 17:13:12.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:22
03-05 17:13:12.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9857341, -0.011379941, -0.15018536, -0.07512059]) ([0.031794675, 0.397727, -0.005691345])
03-05 17:13:12.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9799324, -0.016434371, -0.19587678, 0.03308694]) ([-0.0023363084, 0.03989082, -0.001806843])
03-05 17:13:12.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:22
03-05 17:13:12.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9857341, -0.011379941, -0.15018536, -0.07512059]) ([0.031794675, 0.397727, -0.005691345])
03-05 17:13:12.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9799324, -0.016434371, -0.19587678, 0.03308694]) ([-0.0023363084, 0.03989082, -0.001806843])
03-05 17:13:12.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:23
03-05 17:13:12.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9798209, -0.003682896, -0.18567203, -0.07391427]) ([0.025616255, 0.3978591, -0.0017881885])
03-05 17:13:12.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9678458, -0.016305624, -0.24560915, 0.05181379]) ([-0.0036914363, 0.039763957, -0.0022805817])
03-05 17:13:12.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:23
03-05 17:13:12.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9798209, -0.003682896, -0.18567203, -0.07391427]) ([0.023263993, 0.39783445, -0.001426236])
03-05 17:13:12.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.964571, -0.0129443705, -0.2565837, 0.060001113]) ([-0.004364321, 0.03969859, -0.0022304857])
03-05 17:13:12.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:23
03-05 17:13:12.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9798209, -0.003682896, -0.18567203, -0.07391427]) ([0.023263993, 0.39783445, -0.001426236])
03-05 17:13:12.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.964571, -0.0129443705, -0.2565837, 0.060001113]) ([-0.004364321, 0.03969859, -0.0022304857])
03-05 17:13:12.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:23
03-05 17:13:12.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9798209, -0.003682896, -0.18567203, -0.07391427]) ([0.023263993, 0.39783445, -0.001426236])
03-05 17:13:12.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.964571, -0.0129443705, -0.2565837, 0.060001113]) ([-0.004364321, 0.03969859, -0.0022304857])
03-05 17:13:12.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:26
03-05 17:13:12.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526387, -0.0084376475, -0.29853615, -0.057310678]) ([-0.019758582, 0.39366746, -0.017090185])
03-05 17:13:12.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8687997, -0.002781093, -0.45310396, 0.19968998]) ([-0.013778438, 0.0368093, -0.007431724])
03-05 17:13:12.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:26
03-05 17:13:12.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526387, -0.0084376475, -0.29853615, -0.057310678]) ([-0.019758582, 0.39366746, -0.017090185])
03-05 17:13:12.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8687997, -0.002781093, -0.45310396, 0.19968998]) ([-0.013778438, 0.0368093, -0.007431724])
03-05 17:13:12.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:26
03-05 17:13:12.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526387, -0.0084376475, -0.29853615, -0.057310678]) ([-0.019758582, 0.39366746, -0.017090185])
03-05 17:13:12.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8687997, -0.002781093, -0.45310396, 0.19968998]) ([-0.013778438, 0.0368093, -0.007431724])
03-05 17:13:12.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:27
03-05 17:13:12.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94484866, -0.024887037, -0.32253373, -0.05112446]) ([-0.03161155, 0.3891224, -0.03739429])
03-05 17:13:12.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.83437914, -0.015316367, -0.48682758, 0.2580231]) ([-0.016626613, 0.034655172, -0.011071393])
03-05 17:13:12.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:28
03-05 17:13:12.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9371326, -0.047560252, -0.34292048, -0.043886818]) ([-0.042459145, 0.38234907, -0.060481526])
03-05 17:13:12.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.80168724, -0.024319947, -0.50569975, 0.3177639]) ([-0.019395895, 0.031874776, -0.014415209])
03-05 17:13:12.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:28
03-05 17:13:12.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9371326, -0.047560252, -0.34292048, -0.043886818]) ([-0.042459145, 0.38234907, -0.060481526])
03-05 17:13:12.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.80168724, -0.024319947, -0.50569975, 0.3177639]) ([-0.019395895, 0.031874776, -0.014415209])
03-05 17:13:12.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:28
03-05 17:13:12.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9371326, -0.047560252, -0.34292048, -0.043886818]) ([-0.042459145, 0.38234907, -0.060481526])
03-05 17:13:12.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.80168724, -0.024319947, -0.50569975, 0.3177639]) ([-0.019395895, 0.031874776, -0.014415209])
03-05 17:13:12.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:29
03-05 17:13:12.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93029267, -0.070934355, -0.35811344, -0.03575785]) ([-0.051105898, 0.373936, -0.08405724])
03-05 17:13:12.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7656608, -0.03380704, -0.5233032, 0.37252438]) ([-0.021402879, 0.028806617, -0.017666234])
03-05 17:13:12.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:30
03-05 17:13:12.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92424923, -0.09162759, -0.36969253, -0.026367664]) ([-0.06438068, 0.36275214, -0.10374869])
03-05 17:13:12.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73940384, -0.032856673, -0.5127118, 0.43511954]) ([-0.024390645, 0.024767317, -0.019790823])
03-05 17:13:12.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:30
03-05 17:13:12.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92424923, -0.09162759, -0.36969253, -0.026367664]) ([-0.06438068, 0.36275214, -0.10374869])
03-05 17:13:12.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73940384, -0.032856673, -0.5127118, 0.43511954]) ([-0.024390645, 0.024767317, -0.019790823])
03-05 17:13:12.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:30
03-05 17:13:12.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92424923, -0.09162759, -0.36969253, -0.026367664]) ([-0.06438068, 0.36275214, -0.10374869])
03-05 17:13:12.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73940384, -0.032856673, -0.5127118, 0.43511954]) ([-0.024390645, 0.024767317, -0.019790823])
03-05 17:13:12.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:30
03-05 17:13:12.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92424923, -0.09162759, -0.36969253, -0.026367664]) ([-0.06438068, 0.36275214, -0.10374869])
03-05 17:13:12.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73940384, -0.032856673, -0.5127118, 0.43511954]) ([-0.024390645, 0.024767317, -0.019790823])
03-05 17:13:12.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:31
03-05 17:13:12.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9197932, -0.10937099, -0.3764358, -0.017739732]) ([-0.07573016, 0.3521105, -0.11861592])
03-05 17:13:12.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73131096, -0.03472212, -0.4794117, 0.48388344]) ([-0.026977846, 0.021172103, -0.020589763])
03-05 17:13:12.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:31
03-05 17:13:12.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9197932, -0.10937099, -0.3764358, -0.017739732]) ([-0.07573016, 0.3521105, -0.11861592])
03-05 17:13:12.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73131096, -0.03472212, -0.4794117, 0.48388344]) ([-0.026977846, 0.021172103, -0.020589763])
03-05 17:13:12.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:31
03-05 17:13:12.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9197932, -0.10937099, -0.3764358, -0.017739732]) ([-0.07573016, 0.3521105, -0.11861592])
03-05 17:13:12.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73131096, -0.03472212, -0.4794117, 0.48388344]) ([-0.026977846, 0.021172103, -0.020589763])
03-05 17:13:12.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:32
03-05 17:13:12.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.91930395, -0.12214314, -0.37394935, -0.0111015625]) ([-0.086088106, 0.3411429, -0.13106832])
03-05 17:13:12.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.71281576, -0.037762523, -0.45812637, 0.52970564]) ([-0.0288226, 0.017438885, -0.021567186])
03-05 17:13:12.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:12.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92083126, -0.13514344, -0.36571485, -0.00765892]) ([-0.094974644, 0.33506155, -0.13316083])
03-05 17:13:12.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7276396, -0.026523443, -0.4062718, 0.55206925]) ([-0.03127454, 0.015561294, -0.019487172])
03-05 17:13:12.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:12.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92083126, -0.13514344, -0.36571485, -0.00765892]) ([-0.094974644, 0.33506155, -0.13316083])
03-05 17:13:12.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7276396, -0.026523443, -0.4062718, 0.55206925]) ([-0.03127454, 0.015561294, -0.019487172])
03-05 17:13:12.671 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:12.671 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92083126, -0.13514344, -0.36571485, -0.00765892]) ([-0.094974644, 0.33506155, -0.13316083])
03-05 17:13:12.671 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7276396, -0.026523443, -0.4062718, 0.55206925]) ([-0.03127454, 0.015561294, -0.019487172])
03-05 17:13:12.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:12.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92747825, -0.14540778, -0.34430662, -0.009670859]) ([-0.102244936, 0.3285384, -0.1347809])
03-05 17:13:12.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7302634, -0.020790638, -0.3645793, 0.57737786]) ([-0.03312464, 0.013296206, -0.018054608])
03-05 17:13:12.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679714, -0.15475848, -0.31337574, -0.01601596]) ([-0.10809339, 0.32280478, -0.13430208])
03-05 17:13:12.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7319106, -0.015427083, -0.3225743, 0.6000123]) ([-0.034734316, 0.0111797815, -0.016387183])
03-05 17:13:12.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679714, -0.15475848, -0.31337574, -0.01601596]) ([-0.10809339, 0.32280478, -0.13430208])
03-05 17:13:12.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7319106, -0.015427083, -0.3225743, 0.6000123]) ([-0.034734316, 0.0111797815, -0.016387183])
03-05 17:13:12.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679714, -0.15475848, -0.31337574, -0.01601596]) ([-0.10809339, 0.32280478, -0.13430208])
03-05 17:13:12.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7319106, -0.015427083, -0.3225743, 0.6000123]) ([-0.034734316, 0.0111797815, -0.016387183])
03-05 17:13:12.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679714, -0.15475848, -0.31337574, -0.01601596]) ([-0.10809339, 0.32280478, -0.13430208])
03-05 17:13:12.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7319106, -0.015427083, -0.3225743, 0.6000123]) ([-0.034734316, 0.0111797815, -0.016387183])
03-05 17:13:12.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679905, -0.15474837, -0.31337452, -0.016030118]) ([-0.1041042, 0.33046478, -0.12659195])
03-05 17:13:12.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76222616, -0.0030869248, -0.30861914, 0.5689956]) ([-0.03462005, 0.014098759, -0.014236469])
03-05 17:13:12.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679905, -0.15474837, -0.31337452, -0.016030118]) ([-0.1041042, 0.33046478, -0.12659195])
03-05 17:13:12.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76222616, -0.0030869248, -0.30861914, 0.5689956]) ([-0.03462005, 0.014098759, -0.014236469])
03-05 17:13:12.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:12.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93679905, -0.15474837, -0.31337452, -0.016030118]) ([-0.1041042, 0.33046478, -0.12659195])
03-05 17:13:12.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76222616, -0.0030869248, -0.30861914, 0.5689956]) ([-0.03462005, 0.014098759, -0.014236469])
03-05 17:13:12.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:12.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94841343, -0.16130188, -0.27160504, -0.02691212]) ([-0.10391607, 0.33343166, -0.11598672])
03-05 17:13:12.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.79013586, 0.015440969, -0.25231692, 0.5583754]) ([-0.035607077, 0.015038279, -0.010294969])
03-05 17:13:12.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:12.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94841343, -0.16130188, -0.27160504, -0.02691212]) ([-0.10391607, 0.33343166, -0.11598672])
03-05 17:13:12.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.79013586, 0.015440969, -0.25231692, 0.5583754]) ([-0.035607077, 0.015038279, -0.010294969])
03-05 17:13:12.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:12.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9592517, -0.16388933, -0.22604275, -0.043373313]) ([-0.100188285, 0.3375686, -0.102902204])
03-05 17:13:12.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.814589, 0.034131765, -0.1950325, 0.54519916]) ([-0.036061604, 0.016127435, -0.0062822555])
03-05 17:13:12.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:12.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9592517, -0.16388933, -0.22604275, -0.043373313]) ([-0.100188285, 0.3375686, -0.102902204])
03-05 17:13:12.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.814589, 0.034131765, -0.1950325, 0.54519916]) ([-0.036061604, 0.016127435, -0.0062822555])
03-05 17:13:12.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:12.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9654942, -0.1643121, -0.19239898, -0.061685547]) ([-0.09218129, 0.33975935, -0.10136339])
03-05 17:13:12.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81729156, 0.03134936, -0.20028192, 0.5393875]) ([-0.035769247, 0.016646266, -0.0065926397])
03-05 17:13:12.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:12.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9654942, -0.1643121, -0.19239898, -0.061685547]) ([-0.09218129, 0.33975935, -0.10136339])
03-05 17:13:12.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81729156, 0.03134936, -0.20028192, 0.5393875]) ([-0.035769247, 0.016646266, -0.0065926397])
03-05 17:13:12.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:12.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9654942, -0.1643121, -0.19239898, -0.061685547]) ([-0.09218129, 0.33975935, -0.10136339])
03-05 17:13:12.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81729156, 0.03134936, -0.20028192, 0.5393875]) ([-0.035769247, 0.016646266, -0.0065926397])
03-05 17:13:13.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97003114, -0.16015728, -0.16463095, -0.07928379]) ([-0.08166208, 0.3464311, -0.0887761])
03-05 17:13:13.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8430192, 0.04292876, -0.15662347, 0.51278156]) ([-0.035120666, 0.018816983, -0.0035299084])
03-05 17:13:13.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97003114, -0.16015728, -0.16463095, -0.07928379]) ([-0.08166208, 0.3464311, -0.0887761])
03-05 17:13:13.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8430192, 0.04292876, -0.15662347, 0.51278156]) ([-0.035120666, 0.018816983, -0.0035299084])
03-05 17:13:13.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9736107, -0.1510289, -0.14070822, -0.09733276]) ([-0.06912273, 0.35351408, -0.07355793])
03-05 17:13:13.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8645156, 0.061814487, -0.12596226, 0.48262334]) ([-0.034001734, 0.021060297, -5.8821915E-4])
03-05 17:13:13.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9736107, -0.1510289, -0.14070822, -0.09733276]) ([-0.06912273, 0.35351408, -0.07355793])
03-05 17:13:13.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8645156, 0.061814487, -0.12596226, 0.48262334]) ([-0.034001734, 0.021060297, -5.8821915E-4])
03-05 17:13:13.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9736125, -0.151012, -0.14070779, -0.097342215]) ([-0.06244127, 0.35847372, -0.06565292])
03-05 17:13:13.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8825259, 0.07982794, -0.102646165, 0.4519284]) ([-0.032562602, 0.023151057, 0.001924921])
03-05 17:13:13.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9736125, -0.151012, -0.14070779, -0.097342215]) ([-0.06244127, 0.35847372, -0.06565292])
03-05 17:13:13.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8825259, 0.07982794, -0.102646165, 0.4519284]) ([-0.032562602, 0.023151057, 0.001924921])
03-05 17:13:13.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9736125, -0.151012, -0.14070779, -0.097342215]) ([-0.06244127, 0.35847372, -0.06565292])
03-05 17:13:13.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8825259, 0.07982794, -0.102646165, 0.4519284]) ([-0.032562602, 0.023151057, 0.001924921])
03-05 17:13:13.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9759523, -0.13828129, -0.124527365, -0.11352678]) ([-0.04875236, 0.3641805, -0.051301945])
03-05 17:13:13.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8976069, 0.096588224, -0.08663486, 0.4212683]) ([-0.0309201, 0.025056299, 0.0040161386])
03-05 17:13:13.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:13.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.977807, -0.12191413, -0.1120454, -0.12836026]) ([-0.035012845, 0.36912036, -0.03534315])
03-05 17:13:13.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91045123, 0.11505076, -0.07558316, 0.39003727]) ([-0.029104464, 0.026770739, 0.0060214284])
03-05 17:13:13.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:13.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.977807, -0.12191413, -0.1120454, -0.12836026]) ([-0.035012845, 0.36912036, -0.03534315])
03-05 17:13:13.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91045123, 0.11505076, -0.07558316, 0.39003727]) ([-0.029104464, 0.026770739, 0.0060214284])
03-05 17:13:13.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:13.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.977807, -0.12191413, -0.1120454, -0.12836026]) ([-0.035012845, 0.36912036, -0.03534315])
03-05 17:13:13.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91045123, 0.11505076, -0.07558316, 0.39003727]) ([-0.029104464, 0.026770739, 0.0060214284])
03-05 17:13:13.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9766869, -0.06413586, -0.10162834, -0.17787935]) ([0.01044913, 0.376038, 0.014868891])
03-05 17:13:13.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93705267, 0.16782366, -0.064101435, 0.2994303]) ([-0.02330718, 0.030574143, 0.011045257])
03-05 17:13:13.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9766869, -0.06413586, -0.10162834, -0.17787935]) ([0.01044913, 0.376038, 0.014868891])
03-05 17:13:13.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93705267, 0.16782366, -0.064101435, 0.2994303]) ([-0.02330718, 0.030574143, 0.011045257])
03-05 17:13:13.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9766869, -0.06413586, -0.10162834, -0.17787935]) ([0.01044913, 0.376038, 0.014868891])
03-05 17:13:13.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93705267, 0.16782366, -0.064101435, 0.2994303]) ([-0.02330718, 0.030574143, 0.011045257])
03-05 17:13:13.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9766869, -0.06413586, -0.10162834, -0.17787935]) ([0.01044913, 0.376038, 0.014868891])
03-05 17:13:13.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93705267, 0.16782366, -0.064101435, 0.2994303]) ([-0.02330718, 0.030574143, 0.011045257])
03-05 17:13:13.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9766869, -0.06413586, -0.10162834, -0.17787935]) ([0.01044913, 0.376038, 0.014868891])
03-05 17:13:13.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93705267, 0.16782366, -0.064101435, 0.2994303]) ([-0.02330718, 0.030574143, 0.011045257])
03-05 17:13:13.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:13.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97668004, -0.06410583, -0.10162335, -0.1779304]) ([0.0106633045, 0.37660033, 0.011480662])
03-05 17:13:13.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9369495, 0.15902166, -0.09164459, 0.29738712]) ([-0.023456816, 0.03090185, 0.009739307])
03-05 17:13:13.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:13.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97668004, -0.06410583, -0.10162335, -0.1779304]) ([0.0106633045, 0.37660033, 0.011480662])
03-05 17:13:13.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9369495, 0.15902166, -0.09164459, 0.29738712]) ([-0.023456816, 0.03090185, 0.009739307])
03-05 17:13:13.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:13.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97668004, -0.06410583, -0.10162335, -0.1779304]) ([0.0106633045, 0.37660033, 0.011480662])
03-05 17:13:13.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9369495, 0.15902166, -0.09164459, 0.29738712]) ([-0.023456816, 0.03090185, 0.009739307])
03-05 17:13:13.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9736412, -0.04333061, -0.11390146, -0.19279996]) ([0.025070548, 0.377065, 0.026118003])
03-05 17:13:13.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9428107, 0.16631883, -0.11366932, 0.26556578]) ([-0.021542693, 0.03214503, 0.010129641])
03-05 17:13:13.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9683533, -0.02640731, -0.14013521, -0.20483342]) ([0.0368044, 0.3772762, 0.036042053])
03-05 17:13:13.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9469193, 0.16093186, -0.14485502, 0.23761682]) ([-0.01986526, 0.033411134, 0.009437559])
03-05 17:13:13.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9683533, -0.02640731, -0.14013521, -0.20483342]) ([0.0368044, 0.3772762, 0.036042053])
03-05 17:13:13.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9469193, 0.16093186, -0.14485502, 0.23761682]) ([-0.01986526, 0.033411134, 0.009437559])
03-05 17:13:13.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9683533, -0.02640731, -0.14013521, -0.20483342]) ([0.0368044, 0.3772762, 0.036042053])
03-05 17:13:13.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9469193, 0.16093186, -0.14485502, 0.23761682]) ([-0.01986526, 0.033411134, 0.009437559])
03-05 17:13:13.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.960755, -0.012498377, -0.17548059, -0.21447644]) ([0.046671636, 0.37769997, 0.041888945])
03-05 17:13:13.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94928753, 0.1431253, -0.18295695, 0.21188453]) ([-0.018186009, 0.034769606, 0.0077681052])
03-05 17:13:13.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.95141345, -0.0019815264, -0.21484075, -0.22057182]) ([0.054583628, 0.37814152, 0.04669099])
03-05 17:13:13.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94928974, 0.12538339, -0.21991006, 0.18646096]) ([-0.016366282, 0.035960913, 0.006241642])
03-05 17:13:13.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.95141345, -0.0019815264, -0.21484075, -0.22057182]) ([0.054583628, 0.37814152, 0.04669099])
03-05 17:13:13.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94928974, 0.12538339, -0.21991006, 0.18646096]) ([-0.016366282, 0.035960913, 0.006241642])
03-05 17:13:13.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.95141345, -0.0019815264, -0.21484075, -0.22057182]) ([0.054583628, 0.37814152, 0.04669099])
03-05 17:13:13.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94928974, 0.12538339, -0.21991006, 0.18646096]) ([-0.016366282, 0.035960913, 0.006241642])
03-05 17:13:13.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9407726, 0.010540589, -0.25400853, -0.22431117]) ([0.0604212, 0.37844107, 0.052652754])
03-05 17:13:13.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9467937, 0.10723576, -0.25637785, 0.16233525]) ([-0.0144952675, 0.03697183, 0.0047928784])
03-05 17:13:13.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9407726, 0.010540589, -0.25400853, -0.22431117]) ([0.0604212, 0.37844107, 0.052652754])
03-05 17:13:13.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9467937, 0.10723576, -0.25637785, 0.16233525]) ([-0.0144952675, 0.03697183, 0.0047928784])
03-05 17:13:13.571 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9407726, 0.010540589, -0.25400853, -0.22431117]) ([0.0604212, 0.37844107, 0.052652754])
03-05 17:13:13.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9467937, 0.10723576, -0.25637785, 0.16233525]) ([-0.0144952675, 0.03697183, 0.0047928784])
03-05 17:13:13.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9407726, 0.010540589, -0.25400853, -0.22431117]) ([0.0604212, 0.37844107, 0.052652754])
03-05 17:13:13.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9467937, 0.10723576, -0.25637785, 0.16233525]) ([-0.0144952675, 0.03697183, 0.0047928784])
03-05 17:13:13.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:13.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.95141345, -0.0019815264, -0.21484075, -0.22057182]) ([0.052120686, 0.37816906, 0.044217292])
03-05 17:13:13.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9417335, 0.11990395, -0.24635822, 0.19511229]) ([-0.017062647, 0.035804342, 0.0051880036])
03-05 17:13:13.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:13.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.95141345, -0.0019815264, -0.21484075, -0.22057182]) ([0.052120686, 0.37816906, 0.044217292])
03-05 17:13:13.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9417335, 0.11990395, -0.24635822, 0.19511229]) ([-0.017062647, 0.035804342, 0.0051880036])
03-05 17:13:13.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:13.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.95141345, -0.0019815264, -0.21484075, -0.22057182]) ([0.052120686, 0.37816906, 0.044217292])
03-05 17:13:13.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9417335, 0.11990395, -0.24635822, 0.19511229]) ([-0.017062647, 0.035804342, 0.0051880036])
03-05 17:13:13.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:13.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94077265, 0.010537573, -0.25401396, -0.22430497]) ([0.05523766, 0.37832135, 0.0494443])
03-05 17:13:13.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93167496, 0.10246207, -0.29810518, 0.18060067]) ([-0.015904447, 0.036550794, 0.003329868])
03-05 17:13:13.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8878217, 0.057078112, -0.4039518, -0.21292648]) ([0.04346376, 0.3800346, 0.06992018])
03-05 17:13:13.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.84669554, 0.059954688, -0.5078193, 0.14707765]) ([-0.01239809, 0.0379819, -0.0019140398])
03-05 17:13:13.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8878217, 0.057078112, -0.4039518, -0.21292648]) ([0.04346376, 0.3800346, 0.06992018])
03-05 17:13:13.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.84669554, 0.059954688, -0.5078193, 0.14707765]) ([-0.01239809, 0.0379819, -0.0019140398])
03-05 17:13:13.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8878217, 0.057078112, -0.4039518, -0.21292648]) ([0.04346376, 0.3800346, 0.06992018])
03-05 17:13:13.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.84669554, 0.059954688, -0.5078193, 0.14707765]) ([-0.01239809, 0.0379819, -0.0019140398])
03-05 17:13:13.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88782007, 0.057089813, -0.40395162, -0.21293046]) ([0.04395676, 0.38000596, 0.07073115])
03-05 17:13:13.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.84854716, 0.061635256, -0.50533116, 0.14425465]) ([-0.012284247, 0.038031347, -0.0016476759])
03-05 17:13:13.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88782007, 0.057089813, -0.40395162, -0.21293046]) ([0.04395676, 0.38000596, 0.07073115])
03-05 17:13:13.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.84854716, 0.061635256, -0.50533116, 0.14425465]) ([-0.012284247, 0.038031347, -0.0016476759])
03-05 17:13:13.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88782007, 0.057089813, -0.40395162, -0.21293046]) ([0.04395676, 0.38000596, 0.07073115])
03-05 17:13:13.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.84854716, 0.061635256, -0.50533116, 0.14425465]) ([-0.012284247, 0.038031347, -0.0016476759])
03-05 17:13:13.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8768323, 0.06324757, -0.42472172, -0.21627857]) ([0.045721803, 0.37914848, 0.077580415])
03-05 17:13:13.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8367798, 0.062489837, -0.52842045, 0.1290988]) ([-0.011283853, 0.038354285, -0.0012742573])
03-05 17:13:13.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8672892, 0.06889983, -0.43968725, -0.22301869]) ([0.050073437, 0.37747794, 0.08622875])
03-05 17:13:13.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8309149, 0.06637368, -0.54151773, 0.10924005]) ([-0.010136938, 0.038692895, -3.2036332E-4])
03-05 17:13:13.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8672892, 0.06889983, -0.43968725, -0.22301869]) ([0.050073437, 0.37747794, 0.08622875])
03-05 17:13:13.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8309149, 0.06637368, -0.54151773, 0.10924005]) ([-0.010136938, 0.038692895, -3.2036332E-4])
03-05 17:13:13.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8672892, 0.06889983, -0.43968725, -0.22301869]) ([0.050073437, 0.37747794, 0.08622875])
03-05 17:13:13.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8309149, 0.06637368, -0.54151773, 0.10924005]) ([-0.010136938, 0.038692895, -3.2036332E-4])
03-05 17:13:13.891 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8595829, 0.07729743, -0.44959, -0.23024172]) ([0.053732455, 0.37523097, 0.09593119])
03-05 17:13:13.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.82719046, 0.07068646, -0.5499898, 0.090942614]) ([-0.009128296, 0.038938627, 6.7629217E-4])
03-05 17:13:13.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8595829, 0.07729743, -0.44959, -0.23024172]) ([0.053732455, 0.37523097, 0.09593119])
03-05 17:13:13.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.82719046, 0.07068646, -0.5499898, 0.090942614]) ([-0.009128296, 0.038938627, 6.7629217E-4])
03-05 17:13:13.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.851505, 0.08419622, -0.4612375, -0.23475583]) ([0.05581232, 0.37344593, 0.10377618])
03-05 17:13:13.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8232917, 0.073645346, -0.5577614, 0.075294636]) ([-0.00824528, 0.03911257, 0.0014908132])
03-05 17:13:13.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.851505, 0.08419622, -0.4612375, -0.23475583]) ([0.05581232, 0.37344593, 0.10377618])
03-05 17:13:13.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8232917, 0.073645346, -0.5577614, 0.075294636]) ([-0.00824528, 0.03911257, 0.0014908132])
03-05 17:13:13.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:13.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.851505, 0.08419622, -0.4612375, -0.23475583]) ([0.05581232, 0.37344593, 0.10377618])
03-05 17:13:13.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8232917, 0.073645346, -0.5577614, 0.075294636]) ([-0.00824528, 0.03911257, 0.0014908132])
03-05 17:13:13.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:13.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:13.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.84451795, 0.08979419, -0.47232983, -0.23586205]) ([0.05514389, 0.372401, 0.10931161])
03-05 17:13:14.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8174403, 0.07673428, -0.5670629, 0.06590101]) ([-0.007790664, 0.039181516, 0.0020284539])
03-05 17:13:14.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:14.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8396317, 0.092091456, -0.48141697, -0.2340418]) ([0.08220476, 0.3701694, 0.11503597])
03-05 17:13:14.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9401352, 0.059584275, -0.33511364, -0.017157689]) ([-3.0695662E-4, 0.039692424, 0.004941364])
03-05 17:13:14.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:14.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8396317, 0.092091456, -0.48141697, -0.2340418]) ([0.08220476, 0.3701694, 0.11503597])
03-05 17:13:14.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9401352, 0.059584275, -0.33511364, -0.017157689]) ([-3.0695662E-4, 0.039692424, 0.004941364])
03-05 17:13:14.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:14.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8396317, 0.092091456, -0.48141697, -0.2340418]) ([0.08220476, 0.3701694, 0.11503597])
03-05 17:13:14.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9401352, 0.059584275, -0.33511364, -0.017157689]) ([-3.0695662E-4, 0.039692424, 0.004941364])
03-05 17:13:14.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:14.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.83926886, 0.09233169, -0.48461008, -0.22859508]) ([0.08104249, 0.37082106, 0.11527076])
03-05 17:13:14.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93602186, 0.060223002, -0.34583458, -0.025193522]) ([2.2035926E-4, 0.03965908, 0.0052066264])
03-05 17:13:14.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:14.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.83926886, 0.09233169, -0.48461008, -0.22859508]) ([0.08104249, 0.37082106, 0.11527076])
03-05 17:13:14.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93602186, 0.060223002, -0.34583458, -0.025193522]) ([2.2035926E-4, 0.03965908, 0.0052066264])
03-05 17:13:14.261 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:14.261 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8424768, 0.09187056, -0.48199996, -0.22241572]) ([0.08025783, 0.3716647, 0.114559814])
03-05 17:13:14.261 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9317459, 0.060897484, -0.3564406, -0.033034444]) ([7.258697E-4, 0.039616026, 0.005481264])
03-05 17:13:14.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:14.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8424768, 0.09187056, -0.48199996, -0.22241572]) ([0.08025783, 0.3716647, 0.114559814])
03-05 17:13:14.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9317459, 0.060897484, -0.3564406, -0.033034444]) ([7.258697E-4, 0.039616026, 0.005481264])
03-05 17:13:14.301 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:14.301 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8396317, 0.092091456, -0.48141697, -0.2340418]) ([0.048600733, 0.37345925, 0.10423285])
03-05 17:13:14.301 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9302032, 0.069937035, -0.34249866, 0.11191766]) ([-0.010244761, 0.038606666, 0.0021379201])
03-05 17:13:14.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:14.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8396317, 0.092091456, -0.48141697, -0.2340418]) ([0.048600733, 0.37345925, 0.10423285])
03-05 17:13:14.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9302032, 0.069937035, -0.34249866, 0.11191766]) ([-0.010244761, 0.038606666, 0.0021379201])
03-05 17:13:14.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:14.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8396317, 0.092091456, -0.48141697, -0.2340418]) ([0.048600733, 0.37345925, 0.10423285])
03-05 17:13:14.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9302032, 0.069937035, -0.34249866, 0.11191766]) ([-0.010244761, 0.038606666, 0.0021379201])
03-05 17:13:14.371 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:14.371 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.83926886, 0.09233169, -0.48461008, -0.22859508]) ([0.046741452, 0.3746239, 0.102099255])
03-05 17:13:14.371 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9178894, 0.06457358, -0.37644213, 0.10770588]) ([-0.009853626, 0.03873838, 0.00149811])
03-05 17:13:14.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8962175, 0.088226944, -0.39865765, -0.17344235]) ([0.033041112, 0.38281074, 0.088759266])
03-05 17:13:14.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94831675, 0.07926517, -0.29128817, 0.0977941]) ([-0.0092663, 0.038732257, 0.0037345772])
03-05 17:13:14.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8962175, 0.088226944, -0.39865765, -0.17344235]) ([0.033041112, 0.38281074, 0.088759266])
03-05 17:13:14.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94831675, 0.07926517, -0.29128817, 0.0977941]) ([-0.0092663, 0.038732257, 0.0037345772])
03-05 17:13:14.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8962175, 0.088226944, -0.39865765, -0.17344235]) ([0.033041112, 0.38281074, 0.088759266])
03-05 17:13:14.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94831675, 0.07926517, -0.29128817, 0.0977941]) ([-0.0092663, 0.038732257, 0.0037345772])
03-05 17:13:14.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9121826, 0.086079895, -0.36931592, -0.15530284]) ([0.025594313, 0.3850699, 0.08341417])
03-05 17:13:14.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9530115, 0.08211248, -0.27248615, 0.10381673]) ([-0.009705043, 0.038598374, 0.0039972416])
03-05 17:13:14.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9289962, 0.08184945, -0.334826, -0.13475247]) ([0.015279088, 0.386877, 0.07907243])
03-05 17:13:14.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9557425, 0.09439236, -0.2539792, 0.114633605]) ([-0.010682714, 0.03823594, 0.0048880195])
03-05 17:13:14.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9289962, 0.08184945, -0.334826, -0.13475247]) ([0.015279088, 0.386877, 0.07907243])
03-05 17:13:14.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9557425, 0.09439236, -0.2539792, 0.114633605]) ([-0.010682714, 0.03823594, 0.0048880195])
03-05 17:13:14.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9289962, 0.08184945, -0.334826, -0.13475247]) ([0.015279088, 0.386877, 0.07907243])
03-05 17:13:14.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9557425, 0.09439236, -0.2539792, 0.114633605]) ([-0.010682714, 0.03823594, 0.0048880195])
03-05 17:13:14.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9289962, 0.08184945, -0.334826, -0.13475247]) ([0.015279088, 0.386877, 0.07907243])
03-05 17:13:14.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9557425, 0.09439236, -0.2539792, 0.114633605]) ([-0.010682714, 0.03823594, 0.0048880195])
03-05 17:13:14.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9434215, 0.079862975, -0.30215612, -0.110812664]) ([0.0035907514, 0.3894701, 0.06860398])
03-05 17:13:14.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.96105886, 0.07870854, -0.23140846, 0.12892248]) ([-0.011369272, 0.03817472, 0.003664783])
03-05 17:13:14.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9434215, 0.079862975, -0.30215612, -0.110812664]) ([0.0035907514, 0.3894701, 0.06860398])
03-05 17:13:14.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.96105886, 0.07870854, -0.23140846, 0.12892248]) ([-0.011369272, 0.03817472, 0.003664783])
03-05 17:13:14.571 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.571 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9434215, 0.079862975, -0.30215612, -0.110812664]) ([0.0035907514, 0.3894701, 0.06860398])
03-05 17:13:14.571 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.96105886, 0.07870854, -0.23140846, 0.12892248]) ([-0.011369272, 0.03817472, 0.003664783])
03-05 17:13:14.591 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.591 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9564879, 0.07678728, -0.268083, -0.08582643]) ([-0.008845737, 0.39118874, 0.060429286])
03-05 17:13:14.591 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9649469, 0.070716284, -0.21018198, 0.14035757]) ([-0.012024071, 0.03802392, 0.003098946])
03-05 17:13:14.611 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.611 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9564879, 0.07678728, -0.268083, -0.08582643]) ([-0.008845737, 0.39118874, 0.060429286])
03-05 17:13:14.611 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9649469, 0.070716284, -0.21018198, 0.14035757]) ([-0.012024071, 0.03802392, 0.003098946])
03-05 17:13:14.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9564879, 0.07678728, -0.268083, -0.08582643]) ([-0.008845737, 0.39118874, 0.060429286])
03-05 17:13:14.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9649469, 0.070716284, -0.21018198, 0.14035757]) ([-0.012024071, 0.03802392, 0.003098946])
03-05 17:13:14.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9564879, 0.07678728, -0.268083, -0.08582643]) ([-0.008845737, 0.39118874, 0.060429286])
03-05 17:13:14.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9649469, 0.070716284, -0.21018198, 0.14035757]) ([-0.012024071, 0.03802392, 0.003098946])
03-05 17:13:14.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:14.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9662743, 0.070885785, -0.24015193, -0.060134955]) ([-0.026663344, 0.3917675, 0.04890228])
03-05 17:13:14.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95858675, 0.059598133, -0.22204481, 0.16809401]) ([-0.013949292, 0.037455395, 0.001584446])
03-05 17:13:14.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:14.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9662743, 0.070885785, -0.24015193, -0.060134955]) ([-0.026663344, 0.3917675, 0.04890228])
03-05 17:13:14.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95858675, 0.059598133, -0.22204481, 0.16809401]) ([-0.013949292, 0.037455395, 0.001584446])
03-05 17:13:14.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:14.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9662743, 0.070885785, -0.24015193, -0.060134955]) ([-0.026663344, 0.3917675, 0.04890228])
03-05 17:13:14.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95858675, 0.059598133, -0.22204481, 0.16809401]) ([-0.013949292, 0.037455395, 0.001584446])
03-05 17:13:14.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9735377, 0.062129468, -0.21680021, -0.03690638]) ([-0.04235737, 0.39159426, 0.036147438])
03-05 17:13:14.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95184225, 0.045817073, -0.2339994, 0.19272102]) ([-0.015532894, 0.03686075, -1.1887848E-4])
03-05 17:13:14.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9792018, 0.025694618, -0.2012199, -0.003772648]) ([-0.06610948, 0.3892172, 0.0023862077])
03-05 17:13:14.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93075055, 0.020525247, -0.27304655, 0.24233802]) ([-0.018492846, 0.03526808, -0.003765254])
03-05 17:13:14.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9792018, 0.025694618, -0.2012199, -0.003772648]) ([-0.06610948, 0.3892172, 0.0023862077])
03-05 17:13:14.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93075055, 0.020525247, -0.27304655, 0.24233802]) ([-0.018492846, 0.03526808, -0.003765254])
03-05 17:13:14.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9792018, 0.025694618, -0.2012199, -0.003772648]) ([-0.06610948, 0.3892172, 0.0023862077])
03-05 17:13:14.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93075055, 0.020525247, -0.27304655, 0.24233802]) ([-0.018492846, 0.03526808, -0.003765254])
03-05 17:13:14.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9770956, 3.6609918E-4, -0.21268204, 0.007099368]) ([-0.07374707, 0.38690647, -0.018135218])
03-05 17:13:14.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9177041, 0.00834325, -0.29470587, 0.26626697]) ([-0.019745048, 0.03432259, -0.0056651044])
03-05 17:13:14.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9707739, -0.030079111, -0.23736079, 0.018793356]) ([-0.08609171, 0.37999886, -0.047025807])
03-05 17:13:14.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8702729, -2.3469326E-4, -0.3757451, 0.31849742]) ([-0.022167321, 0.031884752, -0.009590249])
03-05 17:13:14.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9707739, -0.030079111, -0.23736079, 0.018793356]) ([-0.08609171, 0.37999886, -0.047025807])
03-05 17:13:14.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8702729, -2.3469326E-4, -0.3757451, 0.31849742]) ([-0.022167321, 0.031884752, -0.009590249])
03-05 17:13:14.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9707739, -0.030079111, -0.23736079, 0.018793356]) ([-0.08609171, 0.37999886, -0.047025807])
03-05 17:13:14.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8702729, -2.3469326E-4, -0.3757451, 0.31849742]) ([-0.022167321, 0.031884752, -0.009590249])
03-05 17:13:14.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9628826, -0.06436683, -0.26052925, 0.028958974]) ([-0.08830006, 0.37494493, -0.07312185])
03-05 17:13:14.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.85312104, -0.0133500695, -0.39623272, 0.33912545]) ([-0.022722026, 0.030785268, -0.0116609465])
03-05 17:13:14.911 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.911 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526681, -0.104120545, -0.2828666, 0.039611127]) ([-0.09129709, 0.3654968, -0.10453356])
03-05 17:13:14.911 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81655747, -0.02406919, -0.43792206, 0.3753385]) ([-0.0236756, 0.028683348, -0.014721829])
03-05 17:13:14.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526681, -0.104120545, -0.2828666, 0.039611127]) ([-0.09129709, 0.3654968, -0.10453356])
03-05 17:13:14.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81655747, -0.02406919, -0.43792206, 0.3753385]) ([-0.0236756, 0.028683348, -0.014721829])
03-05 17:13:14.951 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.951 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526681, -0.104120545, -0.2828666, 0.039611127]) ([-0.09129709, 0.3654968, -0.10453356])
03-05 17:13:14.951 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81655747, -0.02406919, -0.43792206, 0.3753385]) ([-0.0236756, 0.028683348, -0.014721829])
03-05 17:13:14.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:14.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526681, -0.104120545, -0.2828666, 0.039611127]) ([-0.09129709, 0.3654968, -0.10453356])
03-05 17:13:14.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81655747, -0.02406919, -0.43792206, 0.3753385]) ([-0.0236756, 0.028683348, -0.014721829])
03-05 17:13:14.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:14.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9398501, -0.14762987, -0.30374616, 0.051239755]) ([-0.09553918, 0.35007852, -0.13987713])
03-05 17:13:14.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76068157, -0.030559033, -0.48583084, 0.429416]) ([-0.024944182, 0.025173444, -0.01854954])
03-05 17:13:15.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9398501, -0.14762987, -0.30374616, 0.051239755]) ([-0.09553918, 0.35007852, -0.13987713])
03-05 17:13:15.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76068157, -0.030559033, -0.48583084, 0.429416]) ([-0.024944182, 0.025173444, -0.01854954])
03-05 17:13:15.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9398501, -0.14762987, -0.30374616, 0.051239755]) ([-0.09553918, 0.35007852, -0.13987713])
03-05 17:13:15.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76068157, -0.030559033, -0.48583084, 0.429416]) ([-0.024944182, 0.025173444, -0.01854954])
03-05 17:13:15.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9258876, -0.19394723, -0.31799468, 0.06321426]) ([-0.09077952, 0.3375581, -0.17084008])
03-05 17:13:15.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73819387, -0.04365015, -0.5042958, 0.44592637]) ([-0.024573402, 0.023939554, -0.020568086])
03-05 17:13:15.061 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.061 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9258876, -0.19394723, -0.31799468, 0.06321426]) ([-0.09077952, 0.3375581, -0.17084008])
03-05 17:13:15.061 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73819387, -0.04365015, -0.5042958, 0.44592637]) ([-0.024573402, 0.023939554, -0.020568086])
03-05 17:13:15.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9258876, -0.19394723, -0.31799468, 0.06321426]) ([-0.09077952, 0.3375581, -0.17084008])
03-05 17:13:15.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73819387, -0.04365015, -0.5042958, 0.44592637]) ([-0.024573402, 0.023939554, -0.020568086])
03-05 17:13:15.111 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.111 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9258876, -0.19394723, -0.31799468, 0.06321426]) ([-0.09077952, 0.3375581, -0.17084008])
03-05 17:13:15.111 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73819387, -0.04365015, -0.5042958, 0.44592637]) ([-0.024573402, 0.023939554, -0.020568086])
03-05 17:13:15.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9258876, -0.19394723, -0.31799468, 0.06321426]) ([-0.09077952, 0.3375581, -0.17084008])
03-05 17:13:15.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.73819387, -0.04365015, -0.5042958, 0.44592637]) ([-0.024573402, 0.023939554, -0.020568086])
03-05 17:13:15.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:15.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9707739, -0.030079111, -0.23736079, 0.018793356]) ([-0.055424493, 0.39104885, -0.042588584])
03-05 17:13:15.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9170832, -0.02971229, -0.3419668, 0.20281592]) ([-0.014067077, 0.036638632, -0.0077283964])
03-05 17:13:15.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:15.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9707739, -0.030079111, -0.23736079, 0.018793356]) ([-0.055424493, 0.39104885, -0.042588584])
03-05 17:13:15.161 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9170832, -0.02971229, -0.3419668, 0.20281592]) ([-0.014067077, 0.036638632, -0.0077283964])
03-05 17:13:15.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:33
03-05 17:13:15.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9707739, -0.030079111, -0.23736079, 0.018793356]) ([-0.055424493, 0.39104885, -0.042588584])
03-05 17:13:15.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9170832, -0.02971229, -0.3419668, 0.20281592]) ([-0.014067077, 0.036638632, -0.0077283964])
03-05 17:13:15.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:15.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96287954, -0.0643998, -0.26052943, 0.028985161]) ([-0.054396946, 0.3889762, -0.061846748])
03-05 17:13:15.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91834164, -0.030695945, -0.33961517, 0.2009182]) ([-0.013926938, 0.036695182, -0.0077139386])
03-05 17:13:15.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:15.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96287954, -0.0643998, -0.26052943, 0.028985161]) ([-0.054396946, 0.3889762, -0.061846748])
03-05 17:13:15.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91834164, -0.030695945, -0.33961517, 0.2009182]) ([-0.013926938, 0.036695182, -0.0077139386])
03-05 17:13:15.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:15.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526639, -0.10415648, -0.282865, 0.03962849]) ([-0.052053086, 0.38524175, -0.0837268])
03-05 17:13:15.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9195189, -0.03160268, -0.33737978, 0.19915128]) ([-0.0137969, 0.03674721, -0.0076999096])
03-05 17:13:15.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:15.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9526639, -0.10415648, -0.282865, 0.03962849]) ([-0.052053086, 0.38524175, -0.0837268])
03-05 17:13:15.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9195189, -0.03160268, -0.33737978, 0.19915128]) ([-0.0137969, 0.03674721, -0.0076999096])
03-05 17:13:15.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:15.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89119333, -0.33894742, -0.29574022, 0.05853976]) ([-0.06566448, 0.32348943, -0.19431135])
03-05 17:13:15.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9074048, 0.011001289, -0.23939747, 0.34523094]) ([-0.02527183, 0.030455567, -0.0058131833])
03-05 17:13:15.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:15.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89119333, -0.33894742, -0.29574022, 0.05853976]) ([-0.06566448, 0.32348943, -0.19431135])
03-05 17:13:15.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9074048, 0.011001289, -0.23939747, 0.34523094]) ([-0.02527183, 0.030455567, -0.0058131833])
03-05 17:13:15.331 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:15.331 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89119333, -0.33894742, -0.29574022, 0.05853976]) ([-0.06566448, 0.32348943, -0.19431135])
03-05 17:13:15.331 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9074048, 0.011001289, -0.23939747, 0.34523094]) ([-0.02527183, 0.030455567, -0.0058131833])
03-05 17:13:15.351 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.351 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88236153, -0.3853851, -0.26745725, 0.0371913]) ([-0.05865875, 0.31000936, -0.20797804])
03-05 17:13:15.351 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9191019, 0.012573151, -0.1751317, 0.3527357]) ([-0.026112158, 0.030033555, -0.004017535])
03-05 17:13:15.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8694377, -0.45851257, -0.18070334, -0.03450426]) ([-0.050568447, 0.28347602, -0.22185382])
03-05 17:13:15.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9174285, 0.03181097, -0.05230523, 0.39316326]) ([-0.028989045, 0.02755287, 6.8958354E-4])
03-05 17:13:15.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8694377, -0.45851257, -0.18070334, -0.03450426]) ([-0.050568447, 0.28347602, -0.22185382])
03-05 17:13:15.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9174285, 0.03181097, -0.05230523, 0.39316326]) ([-0.028989045, 0.02755287, 6.8958354E-4])
03-05 17:13:15.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8694377, -0.45851257, -0.18070334, -0.03450426]) ([-0.050568447, 0.28347602, -0.22185382])
03-05 17:13:15.401 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9174285, 0.03181097, -0.05230523, 0.39316326]) ([-0.028989045, 0.02755287, 6.8958354E-4])
03-05 17:13:15.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.86353165, -0.4799759, -0.13856147, -0.068826206]) ([-0.045830525, 0.27501145, -0.22493526])
03-05 17:13:15.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.471 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8580615, -0.49381483, -0.0958474, -0.103395976]) ([-0.0426173, 0.26879558, -0.22436401])
03-05 17:13:15.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.91177726, 0.033409268, 0.09048924, 0.39919662]) ([-0.028876418, 0.027162084, 0.0053267847])
03-05 17:13:15.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:15.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.87672037, -0.4253529, -0.22456852, 0.002323253]) ([-0.047111772, 0.29938427, -0.21724075])
03-05 17:13:15.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9284112, 0.016477467, -0.12489665, 0.34954536]) ([-0.026126381, 0.03020372, -0.0022687344])
03-05 17:13:15.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:15.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.87672037, -0.4253529, -0.22456852, 0.002323253]) ([-0.047111772, 0.29938427, -0.21724075])
03-05 17:13:15.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9284112, 0.016477467, -0.12489665, 0.34954536]) ([-0.026126381, 0.03020372, -0.0022687344])
03-05 17:13:15.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:15.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.87672037, -0.4253529, -0.22456852, 0.002323253]) ([-0.047111772, 0.29938427, -0.21724075])
03-05 17:13:15.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9284112, 0.016477467, -0.12489665, 0.34954536]) ([-0.026126381, 0.03020372, -0.0022687344])
03-05 17:13:15.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:15.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8694377, -0.45851257, -0.18070334, -0.03450426]) ([-0.032475993, 0.2914139, -0.22345775])
03-05 17:13:15.571 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94349575, 0.01787287, -0.05820876, 0.32574254]) ([-0.024670167, 0.031485796, -1.6784742E-4])
03-05 17:13:15.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.591 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8504247, -0.4988265, -0.018054426, -0.16620499]) ([0.052915823, 0.28120527, -0.2355324])
03-05 17:13:15.591 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9752388, 0.00992471, 0.20888351, 0.07196139]) ([-0.005448514, 0.03957784, 0.0019768407])
03-05 17:13:15.611 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.611 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8504247, -0.4988265, -0.018054426, -0.16620499]) ([0.052915823, 0.28120527, -0.2355324])
03-05 17:13:15.611 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9752388, 0.00992471, 0.20888351, 0.07196139]) ([-0.005448514, 0.03957784, 0.0019768407])
03-05 17:13:15.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8504247, -0.4988265, -0.018054426, -0.16620499]) ([0.052915823, 0.28120527, -0.2355324])
03-05 17:13:15.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9752388, 0.00992471, 0.20888351, 0.07196139]) ([-0.005448514, 0.03957784, 0.0019768407])
03-05 17:13:15.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.85079485, -0.48631802, 0.016973747, -0.19838013]) ([0.080171436, 0.28038585, -0.23430787])
03-05 17:13:15.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.96492547, 0.017204702, 0.26185098, -0.0075444616]) ([9.4279286E-4, 0.03997177, 0.0011700584])
03-05 17:13:15.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.85298806, -0.46359557, 0.053301394, -0.23377252]) ([0.10768227, 0.2801874, -0.22850347])
03-05 17:13:15.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9500888, 0.033911787, 0.3007046, -0.07588259]) ([0.0065834103, 0.039447356, 7.520771E-4])
03-05 17:13:15.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.85298806, -0.46359557, 0.053301394, -0.23377252]) ([0.10768227, 0.2801874, -0.22850347])
03-05 17:13:15.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9500888, 0.033911787, 0.3007046, -0.07588259]) ([0.0065834103, 0.039447356, 7.520771E-4])
03-05 17:13:15.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.85298806, -0.46359557, 0.053301394, -0.23377252]) ([0.10768227, 0.2801874, -0.22850347])
03-05 17:13:15.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9500888, 0.033911787, 0.3007046, -0.07588259]) ([0.0065834103, 0.039447356, 7.520771E-4])
03-05 17:13:15.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.86040837, -0.42919677, 0.0827663, -0.26198727]) ([0.13353711, 0.2833981, -0.21588635])
03-05 17:13:15.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93412644, 0.059228458, 0.3255667, -0.13381414]) ([0.011542572, 0.038286872, 9.40915E-4])
03-05 17:13:15.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8707588, -0.38570067, 0.107612535, -0.2853657]) ([0.15729046, 0.28910306, -0.19584572])
03-05 17:13:15.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92216784, 0.09233086, 0.33173266, -0.17616715]) ([0.015446787, 0.03683521, 0.0021363324])
03-05 17:13:15.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8707588, -0.38570067, 0.107612535, -0.2853657]) ([0.15729046, 0.28910306, -0.19584572])
03-05 17:13:15.761 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92216784, 0.09233086, 0.33173266, -0.17616715]) ([0.015446787, 0.03683521, 0.0021363324])
03-05 17:13:15.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8707588, -0.38570067, 0.107612535, -0.2853657]) ([0.15729046, 0.28910306, -0.19584572])
03-05 17:13:15.781 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92216784, 0.09233086, 0.33173266, -0.17616715]) ([0.015446787, 0.03683521, 0.0021363324])
03-05 17:13:15.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8707588, -0.38570067, 0.107612535, -0.2853657]) ([0.15729046, 0.28910306, -0.19584572])
03-05 17:13:15.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92216784, 0.09233086, 0.33173266, -0.17616715]) ([0.015446787, 0.03683521, 0.0021363324])
03-05 17:13:15.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8850963, -0.33598527, 0.121729225, -0.29816192]) ([0.17807505, 0.29709306, -0.16808528])
03-05 17:13:15.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9178419, 0.12892692, 0.31213474, -0.20860513]) ([0.018536728, 0.035188947, 0.00425773])
03-05 17:13:15.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8850963, -0.33598527, 0.121729225, -0.29816192]) ([0.17807505, 0.29709306, -0.16808528])
03-05 17:13:15.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9178419, 0.12892692, 0.31213474, -0.20860513]) ([0.018536728, 0.035188947, 0.00425773])
03-05 17:13:15.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8850963, -0.33598527, 0.121729225, -0.29816192]) ([0.17807505, 0.29709306, -0.16808528])
03-05 17:13:15.851 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9178419, 0.12892692, 0.31213474, -0.20860513]) ([0.018536728, 0.035188947, 0.00425773])
03-05 17:13:15.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.90128905, -0.2876378, 0.1223703, -0.29994673]) ([0.19188729, 0.30627325, -0.13661104])
03-05 17:13:15.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9179426, 0.16326557, 0.28181, -0.22651453]) ([0.020314978, 0.033762846, 0.0068827495])
03-05 17:13:15.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92016613, -0.23795816, 0.11243189, -0.289878]) ([0.19747537, 0.31779125, -0.10165466])
03-05 17:13:15.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9233319, 0.19021136, 0.2379827, -0.23375644]) ([0.020888142, 0.032734204, 0.009599858])
03-05 17:13:15.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92016613, -0.23795816, 0.11243189, -0.289878]) ([0.19747537, 0.31779125, -0.10165466])
03-05 17:13:15.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9233319, 0.19021136, 0.2379827, -0.23375644]) ([0.020888142, 0.032734204, 0.009599858])
03-05 17:13:15.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92016613, -0.23795816, 0.11243189, -0.289878]) ([0.19747537, 0.31779125, -0.10165466])
03-05 17:13:15.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9233319, 0.19021136, 0.2379827, -0.23375644]) ([0.020888142, 0.032734204, 0.009599858])
03-05 17:13:15.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92016613, -0.23795816, 0.11243189, -0.289878]) ([0.19747537, 0.31779125, -0.10165466])
03-05 17:13:15.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9233319, 0.19021136, 0.2379827, -0.23375644]) ([0.020888142, 0.032734204, 0.009599858])
03-05 17:13:15.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:15.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92016613, -0.23795816, 0.11243189, -0.289878]) ([0.19747537, 0.31779125, -0.10165466])
03-05 17:13:15.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9233319, 0.19021136, 0.2379827, -0.23375644]) ([0.020888142, 0.032734204, 0.009599858])
03-05 17:13:15.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93936974, -0.1898764, 0.09299475, -0.26996946]) ([0.1942535, 0.3304455, -0.064217895])
03-05 17:13:15.971 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93152386, 0.21446234, 0.18201993, -0.23051679]) ([0.020301463, 0.032069433, 0.012625451])
03-05 17:13:15.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:15.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93936974, -0.1898764, 0.09299475, -0.26996946]) ([0.1942535, 0.3304455, -0.064217895])
03-05 17:13:15.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93152386, 0.21446234, 0.18201993, -0.23051679]) ([0.020301463, 0.032069433, 0.012625451])
03-05 17:13:16.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.93936974, -0.1898764, 0.09299475, -0.26996946]) ([0.1942535, 0.3304455, -0.064217895])
03-05 17:13:16.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.93152386, 0.21446234, 0.18201993, -0.23051679]) ([0.020301463, 0.032069433, 0.012625451])
03-05 17:13:16.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97297543, -0.10595921, 0.012576601, -0.20477612]) ([0.16014482, 0.35608724, 0.007305283])
03-05 17:13:16.031 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9481829, 0.24397042, 0.03801882, -0.19995569]) ([0.015909601, 0.0320397, 0.01789812])
03-05 17:13:16.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97297543, -0.10595921, 0.012576601, -0.20477612]) ([0.16014482, 0.35608724, 0.007305283])
03-05 17:13:16.051 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9481829, 0.24397042, 0.03801882, -0.19995569]) ([0.015909601, 0.0320397, 0.01789812])
03-05 17:13:16.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97297543, -0.10595921, 0.012576601, -0.20477612]) ([0.16014482, 0.35608724, 0.007305283])
03-05 17:13:16.071 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9481829, 0.24397042, 0.03801882, -0.19995569]) ([0.015909601, 0.0320397, 0.01789812])
03-05 17:13:16.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97297543, -0.10595921, 0.012576601, -0.20477612]) ([0.16014482, 0.35608724, 0.007305283])
03-05 17:13:16.091 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9481829, 0.24397042, 0.03801882, -0.19995569]) ([0.015909601, 0.0320397, 0.01789812])
03-05 17:13:16.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97299933, -0.105936356, 0.012570445, -0.20467508]) ([0.15883139, 0.3572211, 0.0051100105])
03-05 17:13:16.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95163506, 0.23433374, 0.033079114, -0.19591878]) ([0.015535578, 0.032536283, 0.017321551])
03-05 17:13:16.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97299933, -0.105936356, 0.012570445, -0.20467508]) ([0.15883139, 0.3572211, 0.0051100105])
03-05 17:13:16.121 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95163506, 0.23433374, 0.033079114, -0.19591878]) ([0.015535578, 0.032536283, 0.017321551])
03-05 17:13:16.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.97299933, -0.105936356, 0.012570445, -0.20467508]) ([0.15883139, 0.3572211, 0.0051100105])
03-05 17:13:16.141 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.95163506, 0.23433374, 0.033079114, -0.19591878]) ([0.015535578, 0.032536283, 0.017321551])
03-05 17:13:16.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9822884, -0.07461807, -0.025435537, -0.16998446]) ([0.1336753, 0.36718142, 0.029704612])
03-05 17:13:16.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9543644, 0.23673618, -0.050394945, -0.17494293]) ([0.012402319, 0.033068087, 0.018779906])
03-05 17:13:16.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99194586, -0.016829029, -0.0368459, -0.12001106]) ([0.09273692, 0.37687367, 0.06517444])
03-05 17:13:16.191 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9370824, 0.23797068, -0.20853783, -0.14750749]) ([0.007088063, 0.03372892, 0.020300722])
03-05 17:13:16.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99194586, -0.016829029, -0.0368459, -0.12001106]) ([0.09273692, 0.37687367, 0.06517444])
03-05 17:13:16.211 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9370824, 0.23797068, -0.20853783, -0.14750749]) ([0.007088063, 0.03372892, 0.020300722])
03-05 17:13:16.231 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.231 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99194586, -0.016829029, -0.0368459, -0.12001106]) ([0.09273692, 0.37687367, 0.06517444])
03-05 17:13:16.231 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9370824, 0.23797068, -0.20853783, -0.14750749]) ([0.007088063, 0.03372892, 0.020300722])
03-05 17:13:16.261 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.261 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.261 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.281 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.301 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.301 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.301 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.341 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.361 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.381 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9940515, -0.0020249486, -0.037182838, -0.10234729]) ([0.07755397, 0.37907386, 0.07392455])
03-05 17:13:16.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9224409, 0.23871031, -0.27039883, -0.13785721]) ([0.005009452, 0.033921026, 0.02059781])
03-05 17:13:16.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:16.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9950875, 0.010335788, -0.039992172, -0.08997095]) ([0.06381227, 0.37965527, 0.08328239])
03-05 17:13:16.421 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8943069, 0.24509823, -0.3512218, -0.12955813]) ([0.002382471, 0.033851326, 0.021175735])
03-05 17:13:16.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:16.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9950875, 0.010335788, -0.039992172, -0.08997095]) ([0.06381227, 0.37965527, 0.08328239])
03-05 17:13:16.441 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8943069, 0.24509823, -0.3512218, -0.12955813]) ([0.002382471, 0.033851326, 0.021175735])
03-05 17:13:16.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:36
03-05 17:13:16.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9950875, 0.010335788, -0.039992172, -0.08997095]) ([0.06381227, 0.37965527, 0.08328239])
03-05 17:13:16.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8943069, 0.24509823, -0.3512218, -0.12955813]) ([0.002382471, 0.033851326, 0.021175735])
03-05 17:13:16.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99521863, 0.0204226, -0.054844778, -0.078198284]) ([0.05062461, 0.38093233, 0.08852083])
03-05 17:13:16.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.87099844, 0.24345577, -0.4099647, -0.1184056]) ([2.6582598E-4, 0.034136757, 0.02084734])
03-05 17:13:16.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.491 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.511 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.541 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9880465, 0.042395957, -0.13808343, -0.053849258]) ([0.014667621, 0.38339043, 0.09634001])
03-05 17:13:16.641 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.77817047, 0.23591523, -0.57600874, -0.08371773]) ([-0.0056594047, 0.034986828, 0.018544352])
03-05 17:13:16.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:16.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99410856, 0.02773365, -0.0794037, -0.068368085]) ([0.036647305, 0.38183594, 0.092547774])
03-05 17:13:16.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.85912395, 0.24917173, -0.43623084, -0.09758184]) ([-0.00198892, 0.034271307, 0.020531008])
03-05 17:13:16.671 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:16.671 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99410856, 0.02773365, -0.0794037, -0.068368085]) ([0.036647305, 0.38183594, 0.092547774])
03-05 17:13:16.671 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.85912395, 0.24917173, -0.43623084, -0.09758184]) ([-0.00198892, 0.034271307, 0.020531008])
03-05 17:13:16.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:16.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.99410856, 0.02773365, -0.0794037, -0.068368085]) ([0.036647305, 0.38183594, 0.092547774])
03-05 17:13:16.691 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.85912395, 0.24917173, -0.43623084, -0.09758184]) ([-0.00198892, 0.034271307, 0.020531008])
03-05 17:13:16.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:16.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9916165, 0.03498317, -0.10916752, -0.059627283]) ([0.020415511, 0.38140064, 0.09813711])
03-05 17:13:16.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.83076245, 0.26315916, -0.48456398, -0.07601888]) ([-0.005149105, 0.033997476, 0.020436699])
03-05 17:13:16.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96984476, 0.052388392, -0.2364183, -0.027623994]) ([-0.051929697, 0.38116583, 0.08337455])
03-05 17:13:16.721 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.798278, 0.26830167, -0.5290429, 0.104307845]) ([-0.01801678, 0.03337073, 0.012719679])
03-05 17:13:16.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.741 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96984476, 0.052388392, -0.2364183, -0.027623994]) ([-0.051929697, 0.38116583, 0.08337455])
03-05 17:13:16.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.798278, 0.26830167, -0.5290429, 0.104307845]) ([-0.01801678, 0.03337073, 0.012719679])
03-05 17:13:16.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96984476, 0.052388392, -0.2364183, -0.027623994]) ([-0.051929697, 0.38116583, 0.08337455])
03-05 17:13:16.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.798278, 0.26830167, -0.5290429, 0.104307845]) ([-0.01801678, 0.03337073, 0.012719679])
03-05 17:13:16.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96457016, 0.039294597, -0.26026177, -0.018007448]) ([-0.06702139, 0.3821274, 0.062021673])
03-05 17:13:16.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.81302404, 0.24209267, -0.5019247, 0.16868523]) ([-0.020692594, 0.03303492, 0.00897279])
03-05 17:13:16.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96115047, 0.016843509, -0.2753014, -0.010737063]) ([-0.07850995, 0.38191736, 0.034894455])
03-05 17:13:16.801 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8258192, 0.20743693, -0.46912092, 0.23434632]) ([-0.023267254, 0.032164138, 0.0049094916])
03-05 17:13:16.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96115047, 0.016843509, -0.2753014, -0.010737063]) ([-0.07850995, 0.38191736, 0.034894455])
03-05 17:13:16.821 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8258192, 0.20743693, -0.46912092, 0.23434632]) ([-0.023267254, 0.032164138, 0.0049094916])
03-05 17:13:16.841 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.841 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.96115047, 0.016843509, -0.2753014, -0.010737063]) ([-0.07850995, 0.38191736, 0.034894455])
03-05 17:13:16.841 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8258192, 0.20743693, -0.46912092, 0.23434632]) ([-0.023267254, 0.032164138, 0.0049094916])
03-05 17:13:16.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:16.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9571747, -0.014273597, -0.28913793, -0.0034736784]) ([-0.088588156, 0.37906218, 0.0016648266])
03-05 17:13:16.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8326487, 0.1648744, -0.43335357, 0.30284855]) ([-0.025889229, 0.030487932, 4.833567E-4])
03-05 17:13:16.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94884515, -0.05312109, -0.31116128, 0.0070531587]) ([-0.09844556, 0.37194505, -0.035727765])
03-05 17:13:16.871 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.83001274, 0.12281877, -0.3989224, 0.36993963]) ([-0.028483981, 0.02784482, -0.0036508858])
03-05 17:13:16.891 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.891 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94884515, -0.05312109, -0.31116128, 0.0070531587]) ([-0.09844556, 0.37194505, -0.035727765])
03-05 17:13:16.891 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.83001274, 0.12281877, -0.3989224, 0.36993963]) ([-0.028483981, 0.02784482, -0.0036508858])
03-05 17:13:16.911 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:16.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94884515, -0.05312109, -0.31116128, 0.0070531587]) ([-0.09844556, 0.37194505, -0.035727765])
03-05 17:13:16.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.83001274, 0.12281877, -0.3989224, 0.36993963]) ([-0.028483981, 0.02784482, -0.0036508858])
03-05 17:13:16.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94884515, -0.05312109, -0.31116128, 0.0070531587]) ([-0.109263286, 0.36581498, -0.031881172])
03-05 17:13:16.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8182015, 0.14889948, -0.38020173, 0.40474924]) ([-0.031022262, 0.025120564, -0.0025645266])
03-05 17:13:16.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94884515, -0.05312109, -0.31116128, 0.0070531587]) ([-0.109263286, 0.36581498, -0.031881172])
03-05 17:13:16.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8182015, 0.14889948, -0.38020173, 0.40474924]) ([-0.031022262, 0.025120564, -0.0025645266])
03-05 17:13:16.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:16.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.94884515, -0.05312109, -0.31116128, 0.0070531587]) ([-0.109263286, 0.36581498, -0.031881172])
03-05 17:13:16.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8182015, 0.14889948, -0.38020173, 0.40474924]) ([-0.031022262, 0.025120564, -0.0025645266])
03-05 17:13:17.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9334193, -0.09849462, -0.3440821, 0.025196904]) ([-0.11965503, 0.3529604, -0.0712996])
03-05 17:13:17.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8071385, 0.113186955, -0.34290648, 0.46704543]) ([-0.033262633, 0.021524593, -0.0055036275])
03-05 17:13:17.011 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89738345, -0.19333737, -0.3922898, 0.058585998]) ([-0.1231221, 0.32106864, -0.14770767])
03-05 17:13:17.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7898758, 0.027170958, -0.27684584, 0.5465478]) ([-0.035138153, 0.016043773, -0.010387821])
03-05 17:13:17.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89738345, -0.19333737, -0.3922898, 0.058585998]) ([-0.1231221, 0.32106864, -0.14770767])
03-05 17:13:17.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7898758, 0.027170958, -0.27684584, 0.5465478]) ([-0.035138153, 0.016043773, -0.010387821])
03-05 17:13:17.061 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.061 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89738345, -0.19333737, -0.3922898, 0.058585998]) ([-0.1231221, 0.32106864, -0.14770767])
03-05 17:13:17.061 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7898758, 0.027170958, -0.27684584, 0.5465478]) ([-0.035138153, 0.016043773, -0.010387821])
03-05 17:13:17.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8825777, -0.23846066, -0.39928627, 0.069019094]) ([-0.12598181, 0.29753688, -0.1785697])
03-05 17:13:17.081 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76781154, -0.0046350057, -0.23539747, 0.5958457]) ([-0.03651249, 0.011595723, -0.011505551])
03-05 17:13:17.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8825777, -0.23846066, -0.39928627, 0.069019094]) ([-0.12598181, 0.29753688, -0.1785697])
03-05 17:13:17.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.76781154, -0.0046350057, -0.23539747, 0.5958457]) ([-0.03651249, 0.011595723, -0.011505551])
03-05 17:13:17.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8739157, -0.27956817, -0.39132696, 0.07054273]) ([-0.11759453, 0.27989382, -0.20847633])
03-05 17:13:17.101 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.75919974, -0.06064397, -0.21504197, 0.6113061]) ([-0.03608499, 0.009810183, -0.014199789])
03-05 17:13:17.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8739157, -0.27956817, -0.39132696, 0.07054273]) ([-0.11759453, 0.27989382, -0.20847633])
03-05 17:13:17.131 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.75919974, -0.06064397, -0.21504197, 0.6113061]) ([-0.03608499, 0.009810183, -0.014199789])
03-05 17:13:17.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8739157, -0.27956817, -0.39132696, 0.07054273]) ([-0.11759453, 0.27989382, -0.20847633])
03-05 17:13:17.151 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.75919974, -0.06064397, -0.21504197, 0.6113061]) ([-0.03608499, 0.009810183, -0.014199789])
03-05 17:13:17.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8739157, -0.27956817, -0.39132696, 0.07054273]) ([-0.11759453, 0.27989382, -0.20847633])
03-05 17:13:17.171 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.75919974, -0.06064397, -0.21504197, 0.6113061]) ([-0.03608499, 0.009810183, -0.014199789])
03-05 17:13:17.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8688948, -0.31879723, -0.37336054, 0.0631833]) ([-0.10677927, 0.25941098, -0.23684767])
03-05 17:13:17.181 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7381568, -0.118765324, -0.20884739, 0.6303984]) ([-0.035242323, 0.007079414, -0.017545959])
03-05 17:13:17.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8688948, -0.31879723, -0.37336054, 0.0631833]) ([-0.10677927, 0.25941098, -0.23684767])
03-05 17:13:17.201 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7381568, -0.118765324, -0.20884739, 0.6303984]) ([-0.035242323, 0.007079414, -0.017545959])
03-05 17:13:17.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8688948, -0.31879723, -0.37336054, 0.0631833]) ([-0.10677927, 0.25941098, -0.23684767])
03-05 17:13:17.221 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.7381568, -0.118765324, -0.20884739, 0.6303984]) ([-0.035242323, 0.007079414, -0.017545959])
03-05 17:13:17.241 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:17.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89738345, -0.19333737, -0.3922898, 0.058585998]) ([-0.07991145, 0.361341, -0.11203006])
03-05 17:13:17.251 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94126844, 0.04313526, -0.10385032, 0.31838378]) ([-0.024333138, 0.031741694, 6.0300797E-4])
03-05 17:13:17.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:17.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89738345, -0.19333737, -0.3922898, 0.058585998]) ([-0.07991145, 0.361341, -0.11203006])
03-05 17:13:17.271 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94126844, 0.04313526, -0.10385032, 0.31838378]) ([-0.024333138, 0.031741694, 6.0300797E-4])
03-05 17:13:17.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:34
03-05 17:13:17.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89738345, -0.19333737, -0.3922898, 0.058585998]) ([-0.07991145, 0.361341, -0.11203006])
03-05 17:13:17.291 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94126844, 0.04313526, -0.10385032, 0.31838378]) ([-0.024333138, 0.031741694, 6.0300797E-4])
03-05 17:13:17.311 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:35
03-05 17:13:17.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88257855, -0.23847574, -0.3992807, 0.068988666]) ([-0.085343905, 0.34675962, -0.13579923])
03-05 17:13:17.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9335413, 0.03718904, -0.054172456, 0.35239622]) ([-0.026479281, 0.029954722, 0.0012501868])
03-05 17:13:17.321 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.331 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8761397, -0.39398062, -0.2777699, -0.0015087628]) ([-0.050291076, 0.30814302, -0.19667576])
03-05 17:13:17.331 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9297211, -0.008561194, 0.121326916, 0.3475992]) ([-0.025936723, 0.030328128, 0.0027370893])
03-05 17:13:17.351 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.351 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8761397, -0.39398062, -0.2777699, -0.0015087628]) ([-0.050291076, 0.30814302, -0.19667576])
03-05 17:13:17.351 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9297211, -0.008561194, 0.121326916, 0.3475992]) ([-0.025936723, 0.030328128, 0.0027370893])
03-05 17:13:17.371 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.371 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8761397, -0.39398062, -0.2777699, -0.0015087628]) ([-0.050291076, 0.30814302, -0.19667576])
03-05 17:13:17.371 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9297211, -0.008561194, 0.121326916, 0.3475992]) ([-0.025936723, 0.030328128, 0.0027370893])
03-05 17:13:17.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.880224, -0.40366927, -0.24837896, -0.023767142]) ([-0.036854777, 0.31032497, -0.19643167])
03-05 17:13:17.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9473294, 0.011163413, 0.29220998, 0.13059802]) ([-0.009636583, 0.038625572, 0.0038989978])
03-05 17:13:17.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:17.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88021815, -0.40369087, -0.24835965, -0.023816701]) ([-0.020028796, 0.31895453, -0.190321])
03-05 17:13:17.391 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94434726, 0.010398224, 0.22467598, 0.24004342]) ([-0.017947849, 0.035381682, 0.005100122])
03-05 17:13:17.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:17.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88021815, -0.40369087, -0.24835965, -0.023816701]) ([-0.020028796, 0.31895453, -0.190321])
03-05 17:13:17.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94434726, 0.010398224, 0.22467598, 0.24004342]) ([-0.017947849, 0.035381682, 0.005100122])
03-05 17:13:17.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:17.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88021815, -0.40369087, -0.24835965, -0.023816701]) ([-0.020028796, 0.31895453, -0.190321])
03-05 17:13:17.411 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94434726, 0.010398224, 0.22467598, 0.24004342]) ([-0.017947849, 0.035381682, 0.005100122])
03-05 17:13:17.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:17.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88021815, -0.40369087, -0.24835965, -0.023816701]) ([-0.020028796, 0.31895453, -0.190321])
03-05 17:13:17.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94434726, 0.010398224, 0.22467598, 0.24004342]) ([-0.017947849, 0.035381682, 0.005100122])
03-05 17:13:17.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:37
03-05 17:13:17.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.88021815, -0.40369087, -0.24835965, -0.023816701]) ([-0.020028796, 0.31895453, -0.190321])
03-05 17:13:17.431 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94434726, 0.010398224, 0.22467598, 0.24004342]) ([-0.017947849, 0.035381682, 0.005100122])
03-05 17:13:17.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8858303, -0.4071818, -0.21738224, -0.047462314]) ([-0.0025360137, 0.3214332, -0.1908888])
03-05 17:13:17.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94585294, 0.009151132, 0.25983042, 0.19433679]) ([-0.014514902, 0.036971968, 0.004732019])
03-05 17:13:17.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.451 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8858303, -0.4071818, -0.21738224, -0.047462314]) ([-0.0025360137, 0.3214332, -0.1908888])
03-05 17:13:17.461 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94585294, 0.009151132, 0.25983042, 0.19433679]) ([-0.014514902, 0.036971968, 0.004732019])
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8858303, -0.4071818, -0.21738224, -0.047462314]) ([-0.0025360137, 0.3214332, -0.1908888])
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94585294, 0.009151132, 0.25983042, 0.19433679]) ([-0.014514902, 0.036971968, 0.004732019])
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.8858303, -0.4071818, -0.21738224, -0.047462314]) ([-0.0025360137, 0.3214332, -0.1908888])
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94585294, 0.009151132, 0.25983042, 0.19433679]) ([-0.014514902, 0.036971968, 0.004732019])
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89895713, -0.4003364, -0.1483783, -0.09793242]) ([0.046327364, 0.32681483, -0.19069944])
03-05 17:13:17.481 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94383115, 0.012078432, 0.32565653, 0.054632146]) ([-0.0038104083, 0.039749563, 0.0023353056])
03-05 17:13:17.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89895713, -0.4003364, -0.1483783, -0.09793242]) ([0.046327364, 0.32681483, -0.19069944])
03-05 17:13:17.501 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94383115, 0.012078432, 0.32565653, 0.054632146]) ([-0.0038104083, 0.039749563, 0.0023353056])
03-05 17:13:17.521 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89895713, -0.4003364, -0.1483783, -0.09793242]) ([0.046327364, 0.32681483, -0.19069944])
03-05 17:13:17.531 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94383115, 0.012078432, 0.32565653, 0.054632146]) ([-0.0038104083, 0.039749563, 0.0023353056])
03-05 17:13:17.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.89895713, -0.4003364, -0.1483783, -0.09793242]) ([0.046327364, 0.32681483, -0.19069944])
03-05 17:13:17.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94383115, 0.012078432, 0.32565653, 0.054632146]) ([-0.0038104083, 0.039749563, 0.0023353056])
03-05 17:13:17.551 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.90815616, -0.385552, -0.10672082, -0.12333991]) ([0.053481434, 0.32871252, -0.18940711])
03-05 17:13:17.561 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94466156, -0.0026891672, 0.32475412, 0.046282653]) ([-0.0035675808, 0.039828055, 9.992103E-4])
03-05 17:13:17.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.90815616, -0.385552, -0.10672082, -0.12333991]) ([0.053481434, 0.32871252, -0.18940711])
03-05 17:13:17.581 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94466156, -0.0026891672, 0.32475412, 0.046282653]) ([-0.0035675808, 0.039828055, 9.992103E-4])
03-05 17:13:17.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.90815616, -0.385552, -0.10672082, -0.12333991]) ([0.053481434, 0.32871252, -0.18940711])
03-05 17:13:17.601 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.94466156, -0.0026891672, 0.32475412, 0.046282653]) ([-0.0035675808, 0.039828055, 9.992103E-4])
03-05 17:13:17.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.91654015, -0.36729366, -0.070854716, -0.14152451]) ([0.07539295, 0.33065784, -0.18803494])
03-05 17:13:17.621 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9304416, -0.0061122775, 0.36523652, -0.029041477]) ([0.0019831178, 0.039929543, -0.0013035301])
03-05 17:13:17.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.916574, -0.36718655, -0.07081471, -0.14160311]) ([0.08824485, 0.3298521, -0.18595652])
03-05 17:13:17.631 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92668605, 0.011722386, 0.36846668, -0.073130295]) ([0.0057670507, 0.039561175, -0.0012866484])
03-05 17:13:17.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.651 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.916574, -0.36718655, -0.07081471, -0.14160311]) ([0.08824485, 0.3298521, -0.18595652])
03-05 17:13:17.661 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92668605, 0.011722386, 0.36846668, -0.073130295]) ([0.0057670507, 0.039561175, -0.0012866484])
03-05 17:13:17.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.916574, -0.36718655, -0.07081471, -0.14160311]) ([0.08824485, 0.3298521, -0.18595652])
03-05 17:13:17.681 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.92668605, 0.011722386, 0.36846668, -0.073130295]) ([0.0057670507, 0.039561175, -0.0012866484])
03-05 17:13:17.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.92687017, -0.33912224, -0.03581964, -0.15692277]) ([0.10702136, 0.33244896, -0.17810836])
03-05 17:13:17.701 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.9060984, 0.020662438, 0.40033063, -0.1352561]) ([0.010466171, 0.038502317, -0.0028339964])
03-05 17:13:17.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9374637, -0.30609486, -0.009877137, -0.1654392]) ([0.11026235, 0.33952504, -0.16658206])
03-05 17:13:17.711 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8844176, 0.02356965, 0.44299713, -0.14492635]) ([0.011089337, 0.038275275, -0.0034685235])
03-05 17:13:17.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9374637, -0.30609486, -0.009877137, -0.1654392]) ([0.11026235, 0.33952504, -0.16658206])
03-05 17:13:17.731 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8844176, 0.02356965, 0.44299713, -0.14492635]) ([0.011089337, 0.038275275, -0.0034685235])
03-05 17:13:17.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9374637, -0.30609486, -0.009877137, -0.1654392]) ([0.11026235, 0.33952504, -0.16658206])
03-05 17:13:17.751 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8844176, 0.02356965, 0.44299713, -0.14492635]) ([0.011089337, 0.038275275, -0.0034685235])
03-05 17:13:17.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.948357, -0.26502246, 0.013555206, -0.1737769]) ([0.13245018, 0.34285295, -0.14708652])
03-05 17:13:17.771 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.88898027, 0.041576594, 0.40612507, -0.20747994]) ([0.01610647, 0.03641788, -0.0037841622])
03-05 17:13:17.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.948357, -0.26502246, 0.013555206, -0.1737769]) ([0.13245018, 0.34285295, -0.14708652])
03-05 17:13:17.791 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.88898027, 0.041576594, 0.40612507, -0.20747994]) ([0.01610647, 0.03641788, -0.0037841622])
03-05 17:13:17.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.948357, -0.26502246, 0.013555206, -0.1737769]) ([0.13245018, 0.34285295, -0.14708652])
03-05 17:13:17.811 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.88898027, 0.041576594, 0.40612507, -0.20747994]) ([0.01610647, 0.03641788, -0.0037841622])
03-05 17:13:17.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9591555, -0.22051814, 0.025528487, -0.17533046]) ([0.14467132, 0.34816456, -0.12425691])
03-05 17:13:17.831 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8790198, 0.06020145, 0.40678334, -0.24130341]) ([0.018927952, 0.03505188, -0.0036191954])
03-05 17:13:17.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9591555, -0.22051814, 0.025528487, -0.17533046]) ([0.14467132, 0.34816456, -0.12425691])
03-05 17:13:17.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8790198, 0.06020145, 0.40678334, -0.24130341]) ([0.018927952, 0.03505188, -0.0036191954])
03-05 17:13:17.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9681917, -0.17296644, 0.034468763, -0.17748086]) ([0.15225625, 0.35359406, -0.10072583])
03-05 17:13:17.861 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8704314, 0.06973494, 0.41463706, -0.25605127]) ([0.020143185, 0.034365993, -0.00363751])
03-05 17:13:17.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9681917, -0.17296644, 0.034468763, -0.17748086]) ([0.15225625, 0.35359406, -0.10072583])
03-05 17:13:17.881 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8704314, 0.06973494, 0.41463706, -0.25605127]) ([0.020143185, 0.034365993, -0.00363751])
03-05 17:13:17.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:17.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9681917, -0.17296644, 0.034468763, -0.17748086]) ([0.15225625, 0.35359406, -0.10072583])
03-05 17:13:17.901 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8704314, 0.06973494, 0.41463706, -0.25605127]) ([0.020143185, 0.034365993, -0.00363751])
03-05 17:13:17.921 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9761267, -0.12914237, 0.027990319, -0.17238235]) ([0.15825184, 0.3578316, -0.07342994])
03-05 17:13:17.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8722649, 0.08637073, 0.39773595, -0.2711092]) ([0.021666544, 0.0335232, -0.0025993376])
03-05 17:13:17.931 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.98374563, -0.08275068, 0.011652902, -0.15893748]) ([0.15643062, 0.36346346, -0.044200577])
03-05 17:13:17.941 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.88130444, 0.093395, 0.37296873, -0.27472588]) ([0.022156043, 0.033264253, -0.0016123783])
03-05 17:13:17.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.98374563, -0.08275068, 0.011652902, -0.15893748]) ([0.15643062, 0.36346346, -0.044200577])
03-05 17:13:17.961 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.88130444, 0.093395, 0.37296873, -0.27472588]) ([0.022156043, 0.033264253, -0.0016123783])
03-05 17:13:17.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:39
03-05 17:13:17.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.98374563, -0.08275068, 0.011652902, -0.15893748]) ([0.15643062, 0.36346346, -0.044200577])
03-05 17:13:17.981 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.88130444, 0.093395, 0.37296873, -0.27472588]) ([0.022156043, 0.033264253, -0.0016123783])
03-05 17:13:17.991 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:18.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9895378, -0.038227353, -0.011566789, -0.13863596]) ([0.14511645, 0.37051156, -0.017423714])
03-05 17:13:18.001 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8963496, 0.08674808, 0.34673348, -0.2623132]) ([0.021216223, 0.033893336, -0.0010556924])
03-05 17:13:18.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:18.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9895378, -0.038227353, -0.011566789, -0.13863596]) ([0.14511645, 0.37051156, -0.017423714])
03-05 17:13:18.021 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8963496, 0.08674808, 0.34673348, -0.2623132]) ([0.021216223, 0.033893336, -0.0010556924])
03-05 17:13:18.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Current frame:38
03-05 17:13:18.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: ChestBottom ([0.9895378, -0.038227353, -0.011566789, -0.13863596]) ([0.14511645, 0.37051156, -0.017423714])
03-05 17:13:18.041 16021-16021/com.wearnotch.notchdemo.tutorial.mock D/REALTIME: Hip ([0.8963496, 0.08674808, 0.34673348, -0.2623132]) ([0.021216223, 0.033893336, -0.0010556924])