-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart1.txt
4336 lines (4319 loc) · 233 KB
/
part1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Last login: Tue Nov 20 22:12:12 on ttys009
lihuichendeMacBook-Pro:~ Alri$ ssh [email protected]
The authenticity of host 'bwbay.ncsa.illinois.edu (141.142.193.10)' can't be established.
RSA key fingerprint is SHA256:78XfYZKkiatGcmiU6gcRRZJDhZWqEkQUj604YZXR/XM.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'bwbay.ncsa.illinois.edu,141.142.193.10' (RSA) to the list of known hosts.
Password:
Last login: Wed Dec 20 16:26:28 2017 from 10.195.115.254
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LC_CTYPE = "UTF-8",
LANG = (unset)
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Terms of Use
As a condition of using and continuing to use the University's Blue
Waters System ("Blue Waters"), you ("You" or "Your") agree to the terms
and conditions of usage stated herein ("Terms of Use"). The University
reserves the right to change these Terms of Use at any time and at its
sole discretion, but will make reasonable efforts to inform users if any
Terms of Use specifically based on export control and trade regulations
are materially changed. However, the foregoing does not relieve You of
Your responsibility to review the Terms of Use periodically for changes.
The Terms of Use are available online at:
https://bluewaters.ncsa.illinois.edu/terms-of-use.
Continuing to use Blue Waters constitutes your acceptance and agreement
to such changes.
Do you accept? (y/n): y
Welcome to Blue Waters
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LC_CTYPE = "UTF-8",
LANG = (unset)
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Hello,
Please provide the following information for contact and accounting purposes.
What is your name: Huichen Li
What is your email: [email protected]
What is your institution: UIUC
Are you an undergrad/graduate/other: (u/g/o)g
-rbash: warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory
Access by OTP or Two Factor Certificate Authority only.
Use myproxy-logon -s tfca.ncsa.illinois.edu -p 7512 for gsissh access.
gsissh or ssh -o PreferredAuthentications=keyboard-interactive for OTP access.
Blue Waters Admin Team
Creating directory '/u/training/tra409'.
Creating directory '/scratch/training/tra409'.
Last login: Fri Dec 15 10:37:20 2017 from bwedge.ncsa.illinois.edu
___ __ _ __ __
/ _ )/ /_ _____ | | /| / /__ _/ /____ ___ ___
/ _ / / // / -_) | |/ |/ / _ `/ __/ -_) __)(_-<
/____/_/\_,_/\__/ |__/|__/\_,_/\__/\__/_/ /___/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Batch and Scheduler configuration.
Queues: normal (default), high, low, debug
Features: "xe" (default), "xk", "x" (xe or xk non-specific)
"xehimem" (128GB mem), "xkhimem" (64GB mem)
30 min default wall time, 48 hr maximum
-lnodes=X:ppn=Y syntax supported.
All SSH traffic on this system is monitored.
Questions? Mail [email protected] to create a support ticket.
For known issues: https://bluewaters.ncsa.illinois.edu/known-issues
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tra409@h2ologin2:~> qsub -I -l gres=ccm -l nodes=1:ppn=16:xk -l walltime=12:00:00
INFO: Job submitted to account: bauh
qsub: waiting for job 9249851.bw to start
qsub: job 9249851.bw ready
----------------------------------------
Begin Torque Prologue on nid25357
at Wed Nov 21 21:31:11 CST 2018
Job Id: 9249851.bw
Username: tra409
Group: TRAIN_bauh
Job name: STDIN
Requested resources: gres=ccm,nodes=1:ppn=16:xk,walltime=12:00:00,neednodes=1:ppn=16:xk
Queue: normal
Account: bauh
End Torque Prologue: 0.124 elapsed
----------------------------------------
In CCM JOB: 9249851.bw JID 9249851 USER tra409 GROUP TRAIN_bauh WLM torque
Initializing CCM environment, Please Wait
Warning: The -E option is deprecated and has no effect
waiting for jid....
CCM Start success, 1 of 1 responses
tra409@nid25357:~> module add ccm
tra409@nid25357:~> ccmlogin
tra409@nid04525:~> module load bwpy
bwpy bwpy/0.3.3-unstable bwpy/1.2.4
bwpy-libsci_acc bwpy/0.3.x bwpy/1.2.5
bwpy-libsci_mp bwpy/0.y.x bwpy/1.2.6
bwpy-mpi bwpy/1.1.0 bwpy/1.y.x
bwpy-visit bwpy/1.1.1 bwpy/2.0.0-pre0
bwpy-visit-mpi bwpy/1.1.x bwpy/2.0.0-pre1
bwpy-wrap-aprun bwpy/1.2.0 bwpy/2.0.0-pre2
bwpy/0.3.0 bwpy/1.2.1 bwpy/2.0.0-pre3
bwpy/0.3.1 bwpy/1.2.2 bwpy/2.0.0-pre4
bwpy/0.3.2 bwpy/1.2.3 bwpy/latest-stable
tra409@nid04525:~> module load bwpy/2.0.0-pre4
tra409@nid04525:~> ls
bin scratch
tra409@nid04525:~> cd scratch/
tra409@nid04525:~/scratch> ls
tra409@nid04525:~/scratch> cd ..
tra409@nid04525:~> ls /projects/training/bauh/
AR CIFAR100 NLP.zip hdf5
CIF AR100 COCO bluewaters_tutorial tiny-imagenet-200
CIFAR10 NLP cifar-10-python
tra409@nid04525:~> ls -al ~/.ssh
total 32
drwx------ 2 tra409 TRAIN_bauh 4096 Nov 21 21:31 .
drwx------ 8 tra409 TRAIN_bauh 4096 Nov 21 21:31 ..
-rw------- 1 tra409 TRAIN_bauh 668 Nov 21 21:31 id_dsa
-rw-r--r-- 1 tra409 TRAIN_bauh 605 Nov 21 21:31 id_dsa.pub
-rw------- 1 tra409 TRAIN_bauh 227 Nov 21 21:31 id_ecdsa
-rw-r--r-- 1 tra409 TRAIN_bauh 177 Nov 21 21:31 id_ecdsa.pub
-rw------- 1 tra409 TRAIN_bauh 1675 Nov 21 21:31 id_rsa
-rw-r--r-- 1 tra409 TRAIN_bauh 397 Nov 21 21:31 id_rsa.pub
tra409@nid04525:~> cat id_rsa.pub
cat: id_rsa.pub: No such file or directory
tra409@nid04525:~> cat ~/id_rsa.pub
cat: /u/training/tra409/id_rsa.pub: No such file or directory
tra409@nid04525:~> ssh-keygen -t rsa -b 4096 -C "[email protected]"
Generating public/private rsa key pair.
Enter file in which to save the key (/u/training/tra409/.ssh/id_rsa):
/u/training/tra409/.ssh/id_rsa already exists.
Overwrite (y/n)? n
tra409@nid04525:~> cat .ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIweT2enZqvCN0pJzAQrBN9TfjJk6uDQIk3nt8WvRgFXai/9SPQfPN9JEVDLRRmQycmqcs/1zRovhW3hkS7Qhiv99wgv/Ziv+tKuG/gWP+l2U9wlvpTm4XyLucrvkdi7E8nvhnY7/Q0PXen+Qq8ycRk93/Jv7QxY+XNS/EPHtzsFkuELp5QRED8qfXm/vxLIetZ5RLarpolXIdZihuUksJx72efTo6vwfw0e/Z64sj626bAP6630vXyABy+WgM9rtug5E2IWlk9c7pxnnGIQLBAfNDANwLa3QO7Ee8ZnFzptH8gLWOFVgVWKme1cQdHKLby/QHHTGVK4hJy9NPR2bN tra409@nid25357
tra409@nid04525:~> tmux
If 'tmux' is not a typo you can run the following command to lookup the package that contains the binary:
command-not-found tmux
-bash: tmux: command not found
tra409@nid04525:~> ls
bin scratch
tra409@nid04525:~> cd bin
tra409@nid04525:~/bin> ls
tra409@nid04525:~/bin> cd ..
tra409@nid04525:~> ls
bin scratch
tra409@nid04525:~> git clone [email protected]:HuichenLi/CS598DeepLearning.git
Cloning into 'CS598DeepLearning'...
ssh: connect to host github.com port 203: Connection timed out
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
tra409@nid04525:~> git clone [email protected]:HuichenLi/CS598DeepLearning.git
Cloning into 'CS598DeepLearning'...
^C
tra409@nid04525:~> cat .ssh/id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIweT2enZqvCN0pJzAQrBN9TfjJk6uDQIk3nt8WvRgFXai/9SPQfPN9JEVDLRRmQycmqcs/1zRovhW3hkS7Qhiv99wgv/Ziv+tKuG/gWP+l2U9wlvpTm4XyLucrvkdi7E8nvhnY7/Q0PXen+Qq8ycRk93/Jv7QxY+XNS/EPHtzsFkuELp5QRED8qfXm/vxLIetZ5RLarpolXIdZihuUksJx72efTo6vwfw0e/Z64sj626bAP6630vXyABy+WgM9rtug5E2IWlk9c7pxnnGIQLBAfNDANwLa3QO7Ee8ZnFzptH8gLWOFVgVWKme1cQdHKLby/QHHTGVK4hJy9NPR2bN tra409@nid25357
tra409@nid04525:~> git clone [email protected]:HuichenLi/CS598DeepLearning.git
Cloning into 'CS598DeepLearning'...
^C
tra409@nid04525:~> ls
bin scratch
tra409@nid04525:~> git clone [email protected]:HuichenLi/DL-as9.git
Cloning into 'DL-as9'...
^C
tra409@nid04525:~> git clone https://github.com/xiaojunxu/repo_for_transfer
Cloning into 'repo_for_transfer'...
Username for 'https://github.com': ^C
tra409@nid04525:~> git clone https://github.com/HuichenLi/DL-as9.git
Cloning into 'DL-as9'...
remote: Enumerating objects: 4, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 4 (delta 0), pack-reused 0
Unpacking objects: 100% (4/4), done.
tra409@nid04525:~> ls
DL-as9 bin scratch
tra409@nid04525:~> git clone https://github.com/HuichenLi/CS598DeepLearning.git
Cloning into 'CS598DeepLearning'...
Username for 'https://github.com': HuichenLi
Password for 'https://[email protected]':
remote: Enumerating objects: 236, done.
remote: Counting objects: 100% (236/236), done.
remote: Compressing objects: 100% (115/115), done.
^Cceiving objects: 16% (652/3886), 6.26 MiB | 1.55 MiB/s
tra409@nid04525:~> ls
DL-as9 bin scratch
tra409@nid04525:~> cd DL-as9/
tra409@nid04525:~/DL-as9> ls
helperFunctions.py part1.py
tra409@nid04525:~/DL-as9> python part1.py
Downloading: "https://download.pytorch.org/models/resnet50-19c8e357.pth" to /u/training/tra409/.torch/models/resnet50-19c8e357.pth
100%|#######################| 102502400/102502400 [00:04<00:00, 22919551.28it/s]
0 2.0
100 2.0
200 3.0
300 6.0
400 3.0
500 5.0
600 8.0
700 9.0
800 5.0
900 6.0
1000 11.0
1100 6.0
1200 10.0
1300 13.0
1400 9.0
1500 12.0
1600 19.0
1700 16.0
1800 18.0
1900 14.000000000000002
2000 19.0
2100 24.0
2200 27.0
2300 28.000000000000004
2400 33.0
2500 33.0
2600 27.0
2700 28.999999999999996
2800 25.0
2900 31.0
3000 35.0
3100 37.0
3200 45.0
3300 42.0
3400 45.0
3500 39.0
3600 36.0
3700 39.0
3800 35.0
3900 37.0
4000 43.0
4100 37.0
4200 44.0
4300 43.0
4400 54.0
4500 37.0
4600 45.0
4700 49.0
4800 44.0
4900 43.0
5000 42.0
5100 37.0
5200 35.0
5300 38.0
5400 49.0
5500 38.0
5600 42.0
5700 38.0
5800 50.0
5900 46.0
6000 44.0
6100 47.0
6200 53.0
6300 50.0
6400 49.0
6500 52.0
6600 43.0
6700 46.0
6800 46.0
6900 48.0
7000 52.0
7100 50.0
7200 54.0
7300 54.0
7400 52.0
7500 51.0
7600 64.0
7700 60.0
7800 56.00000000000001
7900 60.0
8000 59.0
8100 51.0
8200 57.99999999999999
8300 56.00000000000001
8400 55.00000000000001
8500 57.99999999999999
8600 59.0
8700 43.0
8800 57.99999999999999
8900 65.0
9000 54.0
9100 56.00000000000001
9200 57.99999999999999
9300 66.0
9400 61.0
0 37.73684210526316 144.32671737670898
1 69.37894736842105 121.93843078613281
2 80.84210526315789 120.7517478466034
3 86.81052631578947 120.03647685050964
4 90.78947368421052 129.40514039993286
OpenCV(3.4.1) Error: Assertion failed (ssize.width > 0 && ssize.height > 0) in resize, file /dev/shm/cmaclean/python-single/portage/media-libs/opencv-3.4.1-r2/work/opencv-3.4.1/modules/imgproc/src/resize.cpp, line 4044
Exception: /projects/training/bauh/AR/UCF-101-hdf5/Surfing/v_Surfing_g08_c03.hdf5
5 93.35106382978724 128.95607805252075
6 94.90526315789474 120.9783866405487
OpenCV(3.4.1) Error: Assertion failed (ssize.width > 0 && ssize.height > 0) in resize, file /dev/shm/cmaclean/python-single/portage/media-libs/opencv-3.4.1-r2/work/opencv-3.4.1/modules/imgproc/src/resize.cpp, line 4044
Exception: /projects/training/bauh/AR/UCF-101-hdf5/Surfing/v_Surfing_g08_c06.hdf5
7 95.81914893617021 119.5586850643158
8 96.32631578947368 124.86084699630737
9 97.23157894736842 128.4511637687683
Traceback (most recent call last):
File "part1.py", line 133, in <module>
data = pool_threads.map(loadFrame,video_list)
File "/mnt/bwpy/single/usr/lib/python3.5/multiprocessing/pool.py", line 266, in map
return self._map_async(func, iterable, mapstar, chunksize).get()
File "/mnt/bwpy/single/usr/lib/python3.5/multiprocessing/pool.py", line 374, in _map_async
raise ValueError("Pool not running")
ValueError: Pool not running
tra409@nid04525:~/DL-as9> git pull
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 4 (delta 1), reused 4 (delta 1), pack-reused 0
Unpacking objects: 100% (4/4), done.
From https://github.com/HuichenLi/DL-as9
3637d52..10d2d45 master -> origin/master
Updating 3637d52..10d2d45
Fast-forward
.gitignore | 1 +
part1.py | 2 ++
2 files changed, 3 insertions(+)
create mode 100644 .gitignore
tra409@nid04525:~/DL-as9> python part1.py
0 1.0
100 3.0
200 1.0
300 3.0
400 3.0
500 5.0
600 4.0
700 1.0
800 7.000000000000001
900 12.0
1000 8.0
1100 4.0
1200 12.0
1300 10.0
1400 8.0
1500 15.0
1600 17.0
1700 11.0
1800 15.0
1900 15.0
2000 25.0
2100 22.0
2200 20.0
2300 28.999999999999996
2400 22.0
2500 28.999999999999996
2600 25.0
2700 34.0
2800 35.0
2900 31.0
3000 31.0
3100 33.0
3200 28.999999999999996
3300 38.0
3400 36.0
3500 28.999999999999996
3600 50.0
3700 41.0
3800 25.0
3900 37.0
4000 39.0
4100 34.0
4200 43.0
4300 37.0
4400 40.0
4500 38.0
4600 38.0
4700 36.0
4800 42.0
4900 41.0
5000 40.0
5100 42.0
5200 45.0
5300 49.0
5400 40.0
5500 41.0
5600 42.0
5700 47.0
5800 52.0
5900 40.0
6000 56.99999999999999
6100 48.0
6200 50.0
6300 48.0
6400 43.0
6500 47.0
6600 54.0
6700 55.00000000000001
6800 45.0
6900 55.00000000000001
7000 59.0
7100 47.0
7200 52.0
7300 61.0
7400 56.00000000000001
7500 56.99999999999999
7600 52.0
7700 47.0
7800 61.0
7900 53.0
8000 55.00000000000001
8100 62.0
8200 61.0
8300 56.00000000000001
8400 61.0
8500 64.0
8600 56.00000000000001
8700 56.00000000000001
8800 67.0
8900 60.0
9000 61.0
9100 54.0
9200 61.0
9300 60.0
9400 55.00000000000001
0 37.242105263157896 127.22889065742493
1 69.76842105263158 123.22609829902649
2 80.73684210526316 128.5468933582306
3 86.92631578947369 126.0971851348877
4 90.36842105263158 125.95034885406494
5 93.36842105263158 127.43738770484924
6 94.4 130.32598638534546
7 95.72631578947369 127.03945684432983
OpenCV(3.4.1) Error: Assertion failed (ssize.width > 0 && ssize.height > 0) in resize, file /dev/shm/cmaclean/python-single/portage/media-libs/opencv-3.4.1-r2/work/opencv-3.4.1/modules/imgproc/src/resize.cpp, line 4044
Exception: /projects/training/bauh/AR/UCF-101-hdf5/Surfing/v_Surfing_g08_c03.hdf5
8 96.27659574468085 127.16845560073853
OpenCV(3.4.1) Error: Assertion failed (ssize.width > 0 && ssize.height > 0) in resize, file /dev/shm/cmaclean/python-single/portage/media-libs/opencv-3.4.1-r2/work/opencv-3.4.1/modules/imgproc/src/resize.cpp, line 4044
Exception: /projects/training/bauh/AR/UCF-101-hdf5/Surfing/v_Surfing_g08_c06.hdf5
9 97.24468085106383 129.02769446372986
Testing 72.83783783783784 53.82113265991211
i:0 nFrames:95 t:1.009649 (1.000000,1.000000,1.000000)
i:1 nFrames:146 t:1.569850 (1.000000,1.000000,1.000000)
i:2 nFrames:122 t:1.241712 (1.000000,1.000000,1.000000)
i:3 nFrames:116 t:1.202907 (1.000000,1.000000,1.000000)
i:4 nFrames:96 t:1.017920 (1.000000,1.000000,1.000000)
i:5 nFrames:158 t:1.706013 (1.000000,1.000000,1.000000)
i:6 nFrames:78 t:0.817219 (1.000000,1.000000,1.000000)
i:7 nFrames:155 t:1.573209 (1.000000,1.000000,1.000000)
i:8 nFrames:180 t:2.508844 (1.000000,1.000000,1.000000)
i:9 nFrames:100 t:1.078266 (1.000000,1.000000,1.000000)
i:10 nFrames:151 t:1.549562 (1.000000,1.000000,1.000000)
i:11 nFrames:276 t:2.945064 (1.000000,1.000000,1.000000)
i:12 nFrames:205 t:2.118139 (0.923077,1.000000,1.000000)
i:13 nFrames:187 t:1.936936 (0.857143,1.000000,1.000000)
i:14 nFrames:251 t:2.578974 (0.866667,1.000000,1.000000)
i:15 nFrames:95 t:1.002940 (0.812500,1.000000,1.000000)
i:16 nFrames:195 t:1.982731 (0.823529,1.000000,1.000000)
i:17 nFrames:383 t:3.882100 (0.833333,1.000000,1.000000)
i:18 nFrames:253 t:2.643711 (0.789474,1.000000,1.000000)
i:19 nFrames:173 t:1.787056 (0.800000,1.000000,1.000000)
i:20 nFrames:300 t:3.067406 (0.809524,1.000000,1.000000)
i:21 nFrames:129 t:1.374173 (0.818182,1.000000,1.000000)
i:22 nFrames:167 t:1.721291 (0.826087,1.000000,1.000000)
i:23 nFrames:181 t:1.846700 (0.833333,1.000000,1.000000)
i:24 nFrames:101 t:1.088129 (0.800000,0.960000,0.960000)
i:25 nFrames:437 t:4.455139 (0.807692,0.961538,0.961538)
i:26 nFrames:159 t:1.673014 (0.814815,0.962963,0.962963)
i:27 nFrames:201 t:2.062357 (0.821429,0.964286,0.964286)
i:28 nFrames:106 t:1.113786 (0.793103,0.965517,0.965517)
i:29 nFrames:85 t:0.907005 (0.800000,0.966667,0.966667)
i:30 nFrames:131 t:1.371159 (0.806452,0.967742,0.967742)
i:31 nFrames:132 t:1.389944 (0.812500,0.968750,0.968750)
i:32 nFrames:221 t:2.282613 (0.818182,0.969697,0.969697)
i:33 nFrames:240 t:2.477075 (0.823529,0.970588,0.970588)
i:34 nFrames:131 t:1.385489 (0.828571,0.971429,0.971429)
i:35 nFrames:96 t:1.059223 (0.833333,0.972222,0.972222)
i:36 nFrames:190 t:1.933391 (0.837838,0.972973,0.972973)
i:37 nFrames:166 t:1.702478 (0.842105,0.973684,0.973684)
i:38 nFrames:60 t:0.659960 (0.846154,0.974359,0.974359)
i:39 nFrames:100 t:1.052422 (0.850000,0.975000,0.975000)
i:40 nFrames:104 t:1.120678 (0.829268,0.975610,0.975610)
i:41 nFrames:105 t:1.102418 (0.833333,0.976190,0.976190)
i:42 nFrames:129 t:1.339048 (0.837209,0.976744,0.976744)
i:43 nFrames:226 t:2.325540 (0.840909,0.977273,0.977273)
i:44 nFrames:142 t:1.457708 (0.844444,0.977778,0.977778)
i:45 nFrames:113 t:1.184811 (0.847826,0.978261,0.978261)
i:46 nFrames:150 t:1.531662 (0.851064,0.978723,0.978723)
i:47 nFrames:259 t:2.607210 (0.854167,0.979167,0.979167)
i:48 nFrames:188 t:1.917825 (0.857143,0.979592,0.979592)
i:49 nFrames:158 t:1.616168 (0.860000,0.980000,0.980000)
i:50 nFrames:298 t:3.059541 (0.862745,0.980392,0.980392)
i:51 nFrames:371 t:3.783892 (0.865385,0.980769,0.980769)
i:52 nFrames:513 t:5.221504 (0.849057,0.981132,0.981132)
i:53 nFrames:239 t:2.465835 (0.833333,0.981481,0.981481)
i:54 nFrames:107 t:1.128795 (0.836364,0.981818,0.981818)
i:55 nFrames:166 t:1.697248 (0.839286,0.982143,0.982143)
i:56 nFrames:255 t:2.592677 (0.842105,0.982456,0.982456)
i:57 nFrames:104 t:1.104016 (0.844828,0.982759,0.982759)
i:58 nFrames:257 t:2.630828 (0.847458,0.983051,0.983051)
i:59 nFrames:112 t:1.182440 (0.850000,0.983333,0.983333)
i:60 nFrames:127 t:1.304251 (0.852459,0.983607,0.983607)
i:61 nFrames:88 t:0.924279 (0.854839,0.983871,0.983871)
i:62 nFrames:222 t:2.283204 (0.857143,0.984127,0.984127)
i:63 nFrames:240 t:2.443435 (0.859375,0.984375,0.984375)
i:64 nFrames:98 t:1.040268 (0.861538,0.984615,0.984615)
i:65 nFrames:245 t:2.509400 (0.863636,0.984848,0.984848)
i:66 nFrames:121 t:1.257281 (0.865672,0.985075,0.985075)
i:67 nFrames:81 t:0.843769 (0.867647,0.985294,0.985294)
i:68 nFrames:132 t:1.385706 (0.869565,0.985507,0.985507)
i:69 nFrames:240 t:2.459894 (0.871429,0.985714,0.985714)
i:70 nFrames:127 t:1.312783 (0.859155,0.985915,0.985915)
i:71 nFrames:151 t:1.563505 (0.861111,0.986111,0.986111)
i:72 nFrames:201 t:2.095807 (0.849315,0.972603,0.986301)
i:73 nFrames:285 t:2.939508 (0.851351,0.972973,0.986486)
i:74 nFrames:422 t:4.330473 (0.853333,0.973333,0.986667)
i:75 nFrames:142 t:1.525638 (0.842105,0.973684,0.986842)
i:76 nFrames:192 t:1.971496 (0.831169,0.974026,0.987013)
i:77 nFrames:201 t:2.083296 (0.833333,0.974359,0.987179)
i:78 nFrames:233 t:2.414049 (0.835443,0.974684,0.987342)
i:79 nFrames:209 t:2.145605 (0.825000,0.975000,0.987500)
i:80 nFrames:181 t:1.847709 (0.827160,0.975309,0.987654)
i:81 nFrames:151 t:1.600648 (0.817073,0.975610,0.987805)
i:82 nFrames:214 t:2.205302 (0.819277,0.975904,0.987952)
i:83 nFrames:90 t:0.955650 (0.821429,0.976190,0.988095)
i:84 nFrames:109 t:1.133836 (0.811765,0.976471,0.988235)
i:85 nFrames:100 t:1.071640 (0.813953,0.976744,0.988372)
i:86 nFrames:249 t:2.562711 (0.816092,0.977011,0.988506)
i:87 nFrames:89 t:0.936918 (0.818182,0.977273,0.988636)
i:88 nFrames:156 t:1.592907 (0.820225,0.977528,0.988764)
i:89 nFrames:243 t:2.497767 (0.811111,0.977778,0.988889)
i:90 nFrames:252 t:2.580737 (0.802198,0.978022,0.989011)
i:91 nFrames:70 t:0.768774 (0.804348,0.978261,0.989130)
i:92 nFrames:201 t:2.063181 (0.806452,0.978495,0.989247)
i:93 nFrames:187 t:1.921626 (0.808511,0.978723,0.989362)
i:94 nFrames:161 t:1.670795 (0.800000,0.978947,0.989474)
i:95 nFrames:150 t:1.540856 (0.802083,0.979167,0.989583)
i:96 nFrames:380 t:3.815197 (0.804124,0.979381,0.989691)
i:97 nFrames:199 t:2.030466 (0.806122,0.979592,0.989796)
i:98 nFrames:278 t:2.875999 (0.797980,0.979798,0.989899)
i:99 nFrames:123 t:1.265915 (0.800000,0.980000,0.990000)
i:100 nFrames:138 t:1.444222 (0.801980,0.980198,0.990099)
i:101 nFrames:217 t:2.280679 (0.803922,0.980392,0.990196)
i:102 nFrames:279 t:2.911183 (0.805825,0.980583,0.990291)
i:103 nFrames:172 t:1.798297 (0.807692,0.980769,0.990385)
i:104 nFrames:51 t:0.572156 (0.809524,0.980952,0.990476)
i:105 nFrames:161 t:1.673325 (0.811321,0.981132,0.990566)
i:106 nFrames:177 t:2.097827 (0.813084,0.981308,0.990654)
i:107 nFrames:175 t:1.819142 (0.805556,0.972222,0.981481)
i:108 nFrames:144 t:1.486846 (0.807339,0.972477,0.981651)
i:109 nFrames:277 t:2.878788 (0.809091,0.972727,0.981818)
i:110 nFrames:100 t:1.090278 (0.810811,0.972973,0.981982)
i:111 nFrames:185 t:1.878188 (0.812500,0.973214,0.982143)
i:112 nFrames:64 t:0.719847 (0.814159,0.973451,0.982301)
i:113 nFrames:293 t:3.016815 (0.815789,0.973684,0.982456)
i:114 nFrames:166 t:1.750306 (0.808696,0.973913,0.982609)
i:115 nFrames:66 t:0.789959 (0.801724,0.974138,0.982759)
i:116 nFrames:100 t:1.061363 (0.794872,0.974359,0.982906)
i:117 nFrames:103 t:1.089820 (0.796610,0.974576,0.983051)
i:118 nFrames:228 t:2.370195 (0.798319,0.974790,0.983193)
i:119 nFrames:167 t:1.748028 (0.800000,0.975000,0.983333)
i:120 nFrames:146 t:1.538033 (0.801653,0.975207,0.983471)
i:121 nFrames:407 t:4.163431 (0.803279,0.975410,0.983607)
i:122 nFrames:183 t:1.895478 (0.796748,0.975610,0.983740)
i:123 nFrames:327 t:3.362182 (0.798387,0.975806,0.983871)
i:124 nFrames:105 t:1.147382 (0.792000,0.968000,0.976000)
i:125 nFrames:250 t:2.613048 (0.793651,0.968254,0.976190)
i:126 nFrames:157 t:1.658436 (0.795276,0.968504,0.976378)
i:127 nFrames:53 t:0.583241 (0.796875,0.968750,0.976562)
i:128 nFrames:133 t:1.418857 (0.790698,0.968992,0.976744)
i:129 nFrames:214 t:2.255050 (0.792308,0.969231,0.976923)
i:130 nFrames:448 t:4.644298 (0.786260,0.969466,0.977099)
i:131 nFrames:125 t:1.328328 (0.787879,0.969697,0.977273)
i:132 nFrames:246 t:2.556244 (0.781955,0.969925,0.977444)
i:133 nFrames:274 t:2.844225 (0.783582,0.970149,0.977612)
i:134 nFrames:104 t:1.122658 (0.777778,0.962963,0.977778)
i:135 nFrames:81 t:0.813211 (0.779412,0.963235,0.977941)
i:136 nFrames:115 t:1.211452 (0.781022,0.963504,0.978102)
i:137 nFrames:161 t:1.669961 (0.782609,0.963768,0.978261)
i:138 nFrames:96 t:1.053160 (0.784173,0.964029,0.978417)
i:139 nFrames:103 t:1.079880 (0.785714,0.964286,0.978571)
i:140 nFrames:174 t:1.828058 (0.787234,0.964539,0.978723)
i:141 nFrames:133 t:1.397099 (0.781690,0.964789,0.978873)
i:142 nFrames:70 t:0.761753 (0.783217,0.965035,0.979021)
i:143 nFrames:183 t:1.895089 (0.784722,0.965278,0.979167)
i:144 nFrames:300 t:3.128784 (0.786207,0.965517,0.979310)
i:145 nFrames:203 t:2.140744 (0.787671,0.965753,0.979452)
i:146 nFrames:64 t:0.686032 (0.789116,0.965986,0.979592)
i:147 nFrames:81 t:0.838017 (0.790541,0.966216,0.979730)
i:148 nFrames:141 t:1.489995 (0.791946,0.966443,0.979866)
i:149 nFrames:231 t:2.408618 (0.786667,0.966667,0.980000)
i:150 nFrames:392 t:4.039268 (0.788079,0.966887,0.980132)
i:151 nFrames:443 t:4.532109 (0.789474,0.967105,0.980263)
i:152 nFrames:218 t:2.311770 (0.790850,0.967320,0.980392)
i:153 nFrames:91 t:1.505203 (0.785714,0.967532,0.980519)
i:154 nFrames:96 t:1.153425 (0.787097,0.967742,0.980645)
i:155 nFrames:167 t:1.888847 (0.788462,0.967949,0.980769)
i:156 nFrames:105 t:1.113637 (0.789809,0.968153,0.980892)
i:157 nFrames:256 t:2.671863 (0.791139,0.968354,0.981013)
i:158 nFrames:171 t:1.810274 (0.786164,0.968553,0.981132)
i:159 nFrames:153 t:1.602942 (0.781250,0.968750,0.981250)
i:160 nFrames:139 t:1.452911 (0.782609,0.968944,0.981366)
i:161 nFrames:160 t:1.694707 (0.783951,0.969136,0.981481)
i:162 nFrames:100 t:1.066933 (0.779141,0.969325,0.981595)
i:163 nFrames:159 t:1.719859 (0.780488,0.969512,0.981707)
i:164 nFrames:74 t:0.816078 (0.775758,0.969697,0.981818)
i:165 nFrames:202 t:2.066372 (0.777108,0.969880,0.981928)
i:166 nFrames:138 t:1.487650 (0.772455,0.970060,0.982036)
i:167 nFrames:92 t:0.979100 (0.767857,0.970238,0.982143)
i:168 nFrames:245 t:2.534130 (0.769231,0.970414,0.982249)
i:169 nFrames:170 t:1.768740 (0.770588,0.970588,0.982353)
i:170 nFrames:125 t:1.308768 (0.771930,0.970760,0.982456)
i:171 nFrames:249 t:2.597589 (0.773256,0.970930,0.982558)
i:172 nFrames:111 t:1.186148 (0.774566,0.971098,0.982659)
i:173 nFrames:87 t:0.908914 (0.775862,0.971264,0.982759)
i:174 nFrames:210 t:2.171396 (0.777143,0.971429,0.982857)
i:175 nFrames:217 t:2.272416 (0.778409,0.971591,0.982955)
i:176 nFrames:82 t:0.856773 (0.779661,0.971751,0.983051)
i:177 nFrames:114 t:1.189895 (0.775281,0.971910,0.983146)
i:178 nFrames:248 t:2.577458 (0.776536,0.972067,0.983240)
i:179 nFrames:138 t:1.467134 (0.777778,0.972222,0.983333)
i:180 nFrames:252 t:2.612832 (0.779006,0.972376,0.983425)
i:181 nFrames:138 t:1.457709 (0.780220,0.972527,0.983516)
i:182 nFrames:315 t:3.227479 (0.781421,0.972678,0.983607)
i:183 nFrames:159 t:1.681525 (0.782609,0.972826,0.983696)
i:184 nFrames:122 t:1.275739 (0.783784,0.972973,0.983784)
i:185 nFrames:353 t:3.622033 (0.784946,0.973118,0.983871)
i:186 nFrames:146 t:1.534422 (0.786096,0.973262,0.983957)
i:187 nFrames:98 t:1.073080 (0.781915,0.973404,0.984043)
i:188 nFrames:333 t:3.406805 (0.783069,0.973545,0.984127)
i:189 nFrames:299 t:3.108556 (0.778947,0.973684,0.984211)
i:190 nFrames:201 t:2.120004 (0.780105,0.973822,0.984293)
i:191 nFrames:301 t:3.100546 (0.781250,0.973958,0.984375)
i:192 nFrames:71 t:0.772838 (0.782383,0.974093,0.984456)
i:193 nFrames:247 t:2.537705 (0.783505,0.974227,0.984536)
i:194 nFrames:203 t:2.082226 (0.784615,0.974359,0.984615)
i:195 nFrames:112 t:1.189111 (0.785714,0.974490,0.984694)
i:196 nFrames:172 t:1.787775 (0.786802,0.974619,0.984772)
i:197 nFrames:234 t:2.445551 (0.787879,0.974747,0.984848)
i:198 nFrames:60 t:0.656670 (0.788945,0.974874,0.984925)
i:199 nFrames:208 t:2.160102 (0.790000,0.975000,0.985000)
i:200 nFrames:150 t:1.538398 (0.791045,0.975124,0.985075)
i:201 nFrames:172 t:1.778881 (0.792079,0.975248,0.985149)
i:202 nFrames:360 t:3.689052 (0.793103,0.975369,0.985222)
i:203 nFrames:142 t:1.508050 (0.794118,0.975490,0.985294)
i:204 nFrames:107 t:1.131009 (0.790244,0.975610,0.985366)
i:205 nFrames:205 t:2.120074 (0.791262,0.975728,0.985437)
i:206 nFrames:186 t:1.985289 (0.792271,0.975845,0.985507)
i:207 nFrames:261 t:2.689695 (0.793269,0.975962,0.985577)
i:208 nFrames:101 t:1.096042 (0.794258,0.976077,0.985646)
i:209 nFrames:284 t:2.919409 (0.795238,0.976190,0.985714)
i:210 nFrames:53 t:0.604228 (0.796209,0.976303,0.985782)
i:211 nFrames:180 t:1.833617 (0.792453,0.971698,0.981132)
i:212 nFrames:98 t:1.060806 (0.793427,0.971831,0.981221)
i:213 nFrames:72 t:0.778665 (0.789720,0.971963,0.981308)
i:214 nFrames:180 t:1.843574 (0.790698,0.972093,0.981395)
i:215 nFrames:98 t:1.058059 (0.791667,0.972222,0.981481)
i:216 nFrames:169 t:1.747276 (0.792627,0.972350,0.981567)
i:217 nFrames:80 t:0.837797 (0.793578,0.972477,0.981651)
i:218 nFrames:111 t:1.177974 (0.794521,0.972603,0.981735)
i:219 nFrames:109 t:1.152828 (0.795455,0.972727,0.981818)
i:220 nFrames:141 t:1.495075 (0.796380,0.972851,0.981900)
i:221 nFrames:238 t:2.490280 (0.797297,0.972973,0.981982)
i:222 nFrames:259 t:2.716299 (0.793722,0.973094,0.982063)
i:223 nFrames:177 t:1.844665 (0.790179,0.973214,0.982143)
i:224 nFrames:222 t:2.329947 (0.791111,0.973333,0.982222)
i:225 nFrames:239 t:2.497905 (0.787611,0.969027,0.982301)
i:226 nFrames:160 t:1.675611 (0.788546,0.969163,0.982379)
i:227 nFrames:209 t:2.201504 (0.789474,0.969298,0.982456)
i:228 nFrames:122 t:1.297335 (0.790393,0.969432,0.982533)
i:229 nFrames:249 t:2.605755 (0.791304,0.969565,0.982609)
i:230 nFrames:78 t:0.853325 (0.792208,0.969697,0.982684)
i:231 nFrames:267 t:2.766388 (0.788793,0.969828,0.982759)
i:232 nFrames:187 t:1.953460 (0.789700,0.969957,0.982833)
i:233 nFrames:180 t:1.846720 (0.790598,0.970085,0.982906)
i:234 nFrames:242 t:2.486527 (0.791489,0.970213,0.982979)
i:235 nFrames:79 t:0.878092 (0.792373,0.970339,0.983051)
i:236 nFrames:126 t:1.303967 (0.793249,0.970464,0.983122)
i:237 nFrames:109 t:1.144344 (0.794118,0.970588,0.983193)
i:238 nFrames:171 t:1.807119 (0.790795,0.970711,0.983264)
i:239 nFrames:272 t:2.822047 (0.791667,0.970833,0.983333)
i:240 nFrames:245 t:2.550770 (0.792531,0.970954,0.983402)
i:241 nFrames:246 t:2.574849 (0.793388,0.971074,0.983471)
i:242 nFrames:103 t:1.104802 (0.794239,0.971193,0.983539)
i:243 nFrames:118 t:1.243687 (0.795082,0.971311,0.983607)
i:244 nFrames:101 t:1.110062 (0.795918,0.971429,0.983673)
i:245 nFrames:101 t:1.094193 (0.796748,0.971545,0.983740)
i:246 nFrames:125 t:1.314506 (0.797571,0.971660,0.983806)
i:247 nFrames:210 t:2.184369 (0.798387,0.971774,0.983871)
i:248 nFrames:102 t:1.780283 (0.799197,0.971888,0.983936)
i:249 nFrames:105 t:1.108115 (0.800000,0.972000,0.984000)
i:250 nFrames:143 t:1.525118 (0.800797,0.972112,0.984064)
i:251 nFrames:85 t:0.911300 (0.801587,0.972222,0.984127)
i:252 nFrames:118 t:1.234771 (0.802372,0.972332,0.984190)
i:253 nFrames:149 t:1.560644 (0.803150,0.972441,0.984252)
i:254 nFrames:222 t:2.334793 (0.803922,0.972549,0.984314)
i:255 nFrames:200 t:2.053552 (0.804688,0.972656,0.984375)
i:256 nFrames:255 t:2.610965 (0.805447,0.972763,0.984436)
i:257 nFrames:115 t:1.230577 (0.802326,0.972868,0.984496)
i:258 nFrames:112 t:1.286393 (0.803089,0.972973,0.984556)
i:259 nFrames:225 t:2.349783 (0.800000,0.973077,0.984615)
i:260 nFrames:249 t:2.588217 (0.796935,0.973180,0.984674)
i:261 nFrames:300 t:3.108475 (0.797710,0.973282,0.984733)
i:262 nFrames:88 t:0.948139 (0.798479,0.973384,0.984791)
i:263 nFrames:180 t:1.841433 (0.799242,0.973485,0.984848)
i:264 nFrames:250 t:2.599071 (0.800000,0.973585,0.984906)
i:265 nFrames:72 t:0.767742 (0.800752,0.973684,0.984962)
i:266 nFrames:150 t:1.552787 (0.801498,0.973783,0.985019)
i:267 nFrames:231 t:2.417127 (0.802239,0.973881,0.985075)
i:268 nFrames:103 t:1.122326 (0.802974,0.973978,0.985130)
i:269 nFrames:106 t:1.130516 (0.800000,0.974074,0.985185)
i:270 nFrames:268 t:2.804157 (0.797048,0.970480,0.981550)
i:271 nFrames:123 t:1.287906 (0.797794,0.970588,0.981618)
i:272 nFrames:219 t:2.305599 (0.798535,0.970696,0.981685)
i:273 nFrames:340 t:3.512217 (0.799270,0.970803,0.981752)
i:274 nFrames:191 t:1.983690 (0.800000,0.970909,0.981818)
i:275 nFrames:252 t:2.613545 (0.800725,0.971014,0.981884)
i:276 nFrames:117 t:1.241226 (0.797834,0.967509,0.981949)
i:277 nFrames:256 t:2.647729 (0.798561,0.967626,0.982014)
i:278 nFrames:81 t:1.057863 (0.799283,0.967742,0.982079)
i:279 nFrames:126 t:1.306119 (0.800000,0.967857,0.982143)
i:280 nFrames:156 t:1.623760 (0.800712,0.967972,0.982206)
i:281 nFrames:145 t:1.526864 (0.797872,0.968085,0.982270)
i:282 nFrames:113 t:1.200671 (0.798587,0.968198,0.982332)
i:283 nFrames:201 t:2.083461 (0.799296,0.968310,0.982394)
i:284 nFrames:144 t:1.514115 (0.800000,0.968421,0.982456)
i:285 nFrames:94 t:0.982569 (0.800699,0.968531,0.982517)
i:286 nFrames:163 t:1.684698 (0.801394,0.968641,0.982578)
i:287 nFrames:298 t:3.075648 (0.802083,0.968750,0.982639)
i:288 nFrames:231 t:2.456868 (0.802768,0.968858,0.982699)
i:289 nFrames:221 t:2.259852 (0.803448,0.968966,0.982759)
i:290 nFrames:250 t:2.609615 (0.800687,0.965636,0.979381)
i:291 nFrames:306 t:3.128708 (0.801370,0.965753,0.979452)
i:292 nFrames:236 t:2.436417 (0.802048,0.965870,0.979522)
i:293 nFrames:167 t:1.723737 (0.802721,0.965986,0.979592)
i:294 nFrames:144 t:1.508900 (0.803390,0.966102,0.979661)
i:295 nFrames:108 t:1.126876 (0.804054,0.966216,0.979730)
i:296 nFrames:101 t:1.088480 (0.804714,0.966330,0.979798)
i:297 nFrames:261 t:2.759639 (0.805369,0.966443,0.979866)
i:298 nFrames:232 t:2.470672 (0.802676,0.966555,0.979933)
i:299 nFrames:261 t:2.716465 (0.800000,0.966667,0.980000)
i:300 nFrames:124 t:1.302023 (0.800664,0.966777,0.980066)
i:301 nFrames:118 t:1.246959 (0.798013,0.966887,0.980132)
i:302 nFrames:339 t:3.524256 (0.798680,0.966997,0.980198)
i:303 nFrames:116 t:1.242913 (0.799342,0.967105,0.980263)
i:304 nFrames:178 t:1.842052 (0.800000,0.967213,0.980328)
i:305 nFrames:94 t:1.007433 (0.800654,0.967320,0.980392)
i:306 nFrames:276 t:3.132880 (0.801303,0.967427,0.980456)
i:307 nFrames:112 t:1.195358 (0.801948,0.967532,0.980519)
i:308 nFrames:124 t:1.308899 (0.802589,0.967638,0.980583)
i:309 nFrames:279 t:3.109300 (0.803226,0.967742,0.980645)
i:310 nFrames:891 t:9.193341 (0.800643,0.967846,0.980707)
i:311 nFrames:212 t:2.253701 (0.801282,0.967949,0.980769)
i:312 nFrames:130 t:1.390196 (0.801917,0.968051,0.980831)
i:313 nFrames:118 t:1.251809 (0.799363,0.968153,0.980892)
i:314 nFrames:240 t:2.460742 (0.800000,0.968254,0.980952)
i:315 nFrames:184 t:1.867824 (0.800633,0.968354,0.981013)
i:316 nFrames:125 t:1.312985 (0.801262,0.968454,0.981073)
i:317 nFrames:460 t:4.727290 (0.801887,0.968553,0.981132)
i:318 nFrames:153 t:1.628977 (0.802508,0.968652,0.981191)
i:319 nFrames:260 t:2.693252 (0.803125,0.968750,0.981250)
i:320 nFrames:240 t:2.498529 (0.803738,0.968847,0.981308)
i:321 nFrames:111 t:1.198815 (0.804348,0.968944,0.981366)
i:322 nFrames:148 t:1.554168 (0.804954,0.969040,0.981424)
i:323 nFrames:252 t:2.635148 (0.805556,0.969136,0.981481)
i:324 nFrames:69 t:0.748593 (0.806154,0.969231,0.981538)
i:325 nFrames:190 t:1.934234 (0.806748,0.969325,0.981595)
i:326 nFrames:171 t:1.771536 (0.807339,0.969419,0.981651)
i:327 nFrames:151 t:1.598281 (0.807927,0.969512,0.981707)
i:328 nFrames:240 t:2.488586 (0.808511,0.969605,0.981763)
i:329 nFrames:86 t:0.916897 (0.809091,0.969697,0.981818)
i:330 nFrames:150 t:1.568027 (0.809668,0.969789,0.981873)
i:331 nFrames:50 t:0.592102 (0.810241,0.969880,0.981928)
i:332 nFrames:80 t:0.853898 (0.810811,0.969970,0.981982)
i:333 nFrames:240 t:2.477566 (0.811377,0.970060,0.982036)
i:334 nFrames:261 t:2.710594 (0.808955,0.970149,0.982090)
i:335 nFrames:138 t:1.464418 (0.809524,0.970238,0.982143)
i:336 nFrames:98 t:1.049767 (0.807122,0.970326,0.982196)
i:337 nFrames:413 t:4.547718 (0.807692,0.970414,0.982249)
i:338 nFrames:110 t:1.231545 (0.808260,0.970501,0.982301)
i:339 nFrames:253 t:2.621284 (0.808824,0.970588,0.982353)
i:340 nFrames:250 t:2.615369 (0.809384,0.970674,0.982405)
i:341 nFrames:171 t:1.788238 (0.809942,0.970760,0.982456)
i:342 nFrames:135 t:1.418808 (0.810496,0.970845,0.982507)
i:343 nFrames:405 t:4.154673 (0.811047,0.970930,0.982558)
i:344 nFrames:307 t:3.192219 (0.808696,0.971014,0.982609)
i:345 nFrames:132 t:1.410322 (0.809249,0.971098,0.982659)
i:346 nFrames:237 t:2.496089 (0.809798,0.971182,0.982709)
i:347 nFrames:320 t:3.295330 (0.810345,0.971264,0.982759)
i:348 nFrames:187 t:1.917562 (0.810888,0.971347,0.982808)
i:349 nFrames:111 t:1.168370 (0.808571,0.971429,0.982857)
i:350 nFrames:62 t:0.681241 (0.809117,0.971510,0.982906)
i:351 nFrames:314 t:3.226585 (0.809659,0.971591,0.982955)
i:352 nFrames:97 t:1.056229 (0.810198,0.971671,0.983003)
i:353 nFrames:497 t:5.107297 (0.810734,0.971751,0.983051)
i:354 nFrames:56 t:0.646165 (0.811268,0.971831,0.983099)
i:355 nFrames:120 t:1.320800 (0.808989,0.971910,0.983146)
i:356 nFrames:125 t:1.321015 (0.809524,0.971989,0.983193)
i:357 nFrames:876 t:8.978055 (0.807263,0.972067,0.983240)
i:358 nFrames:406 t:4.258204 (0.807799,0.972145,0.983287)
i:359 nFrames:250 t:2.633519 (0.808333,0.972222,0.983333)
i:360 nFrames:416 t:4.218459 (0.808864,0.972299,0.983380)
i:361 nFrames:224 t:2.383802 (0.806630,0.972376,0.983425)
i:362 nFrames:341 t:3.516639 (0.807163,0.972452,0.983471)
i:363 nFrames:237 t:2.483657 (0.807692,0.972527,0.983516)
i:364 nFrames:284 t:3.005187 (0.808219,0.972603,0.983562)
i:365 nFrames:265 t:2.772279 (0.806011,0.972678,0.983607)
i:366 nFrames:145 t:1.562102 (0.806540,0.972752,0.983651)
i:367 nFrames:335 t:3.531135 (0.807065,0.972826,0.983696)
i:368 nFrames:54 t:0.626055 (0.804878,0.972900,0.983740)
i:369 nFrames:54 t:0.593641 (0.802703,0.972973,0.983784)
i:370 nFrames:167 t:1.708224 (0.803235,0.973046,0.983827)
i:371 nFrames:300 t:3.129253 (0.803763,0.973118,0.983871)
i:372 nFrames:250 t:2.645302 (0.804290,0.973190,0.983914)
i:373 nFrames:499 t:5.175459 (0.804813,0.973262,0.983957)
i:374 nFrames:222 t:2.274178 (0.805333,0.973333,0.984000)
i:375 nFrames:264 t:2.747616 (0.805851,0.973404,0.984043)
i:376 nFrames:120 t:1.281571 (0.806366,0.973475,0.984085)
i:377 nFrames:158 t:1.643555 (0.806878,0.973545,0.984127)
i:378 nFrames:833 t:8.463158 (0.807388,0.973615,0.984169)
i:379 nFrames:105 t:1.188976 (0.807895,0.973684,0.984211)
i:380 nFrames:117 t:1.241567 (0.805774,0.971129,0.984252)
i:381 nFrames:268 t:2.755382 (0.806283,0.971204,0.984293)
i:382 nFrames:155 t:1.619094 (0.806789,0.971279,0.984334)
i:383 nFrames:261 t:2.732293 (0.804688,0.971354,0.984375)
i:384 nFrames:94 t:0.894390 (0.805195,0.971429,0.984416)
i:385 nFrames:101 t:1.076872 (0.805699,0.971503,0.984456)
i:386 nFrames:144 t:1.513424 (0.806202,0.971576,0.984496)
i:387 nFrames:152 t:1.596686 (0.806701,0.971649,0.984536)
i:388 nFrames:251 t:2.621219 (0.804627,0.969152,0.984576)
i:389 nFrames:206 t:2.150249 (0.805128,0.969231,0.984615)
i:390 nFrames:320 t:3.323840 (0.805627,0.969309,0.984655)
i:391 nFrames:68 t:0.750515 (0.806122,0.969388,0.984694)
i:392 nFrames:93 t:0.961158 (0.806616,0.969466,0.984733)
i:393 nFrames:182 t:1.862139 (0.804569,0.969543,0.984772)
i:394 nFrames:166 t:1.715277 (0.805063,0.969620,0.984810)
i:395 nFrames:131 t:1.384547 (0.803030,0.969697,0.984848)
i:396 nFrames:122 t:1.311788 (0.803526,0.969773,0.984887)
i:397 nFrames:243 t:2.531410 (0.804020,0.969849,0.984925)
i:398 nFrames:123 t:1.293681 (0.804511,0.969925,0.984962)
i:399 nFrames:124 t:1.293450 (0.802500,0.970000,0.985000)
i:400 nFrames:198 t:2.055923 (0.802993,0.970075,0.985037)
i:401 nFrames:267 t:2.764927 (0.800995,0.970149,0.985075)
i:402 nFrames:134 t:1.407853 (0.801489,0.970223,0.985112)
i:403 nFrames:240 t:2.491933 (0.801980,0.970297,0.985149)
i:404 nFrames:75 t:0.836506 (0.802469,0.970370,0.985185)
i:405 nFrames:253 t:2.586934 (0.802956,0.970443,0.985222)
i:406 nFrames:170 t:1.779888 (0.800983,0.970516,0.985258)
i:407 nFrames:134 t:1.429974 (0.801471,0.970588,0.985294)
i:408 nFrames:240 t:2.502356 (0.801956,0.970660,0.985330)
i:409 nFrames:98 t:1.021513 (0.802439,0.970732,0.985366)
i:410 nFrames:141 t:1.511495 (0.802920,0.970803,0.985401)
i:411 nFrames:200 t:2.053256 (0.803398,0.970874,0.985437)
i:412 nFrames:133 t:1.422667 (0.803874,0.970944,0.985472)
i:413 nFrames:113 t:1.185088 (0.804348,0.971014,0.985507)
i:414 nFrames:240 t:2.430308 (0.804819,0.971084,0.985542)
i:415 nFrames:300 t:3.103184 (0.805288,0.971154,0.985577)
i:416 nFrames:216 t:2.266097 (0.803357,0.971223,0.985612)
i:417 nFrames:100 t:1.078441 (0.803828,0.971292,0.985646)
i:418 nFrames:110 t:1.168206 (0.804296,0.971360,0.985680)
i:419 nFrames:219 t:2.314578 (0.804762,0.971429,0.985714)
i:420 nFrames:65 t:0.723584 (0.805226,0.971496,0.985748)
i:421 nFrames:180 t:1.847261 (0.805687,0.971564,0.985782)
i:422 nFrames:458 t:4.631862 (0.806147,0.971631,0.985816)
i:423 nFrames:71 t:0.790810 (0.804245,0.971698,0.985849)
i:424 nFrames:94 t:1.067445 (0.804706,0.971765,0.985882)
i:425 nFrames:111 t:1.152826 (0.802817,0.971831,0.985915)
i:426 nFrames:123 t:1.305575 (0.803279,0.971897,0.985948)
i:427 nFrames:176 t:1.884398 (0.801402,0.971963,0.985981)
i:428 nFrames:154 t:1.606289 (0.801865,0.972028,0.986014)
i:429 nFrames:181 t:1.875056 (0.800000,0.969767,0.983721)
i:430 nFrames:252 t:2.646065 (0.800464,0.969838,0.983759)
i:431 nFrames:251 t:2.608550 (0.800926,0.969907,0.983796)
i:432 nFrames:97 t:1.044082 (0.801386,0.969977,0.983834)
i:433 nFrames:171 t:1.772314 (0.801843,0.970046,0.983871)
i:434 nFrames:66 t:0.739452 (0.802299,0.970115,0.983908)
i:435 nFrames:299 t:3.087445 (0.802752,0.970183,0.983945)
i:436 nFrames:105 t:1.147108 (0.803204,0.970252,0.983982)
i:437 nFrames:65 t:0.715091 (0.803653,0.970320,0.984018)
i:438 nFrames:148 t:1.563662 (0.804100,0.970387,0.984055)
i:439 nFrames:219 t:2.305915 (0.804545,0.970455,0.984091)
i:440 nFrames:68 t:0.741862 (0.804989,0.970522,0.984127)
i:441 nFrames:97 t:1.042821 (0.803167,0.970588,0.984163)
i:442 nFrames:145 t:1.532423 (0.803612,0.970655,0.984199)
i:443 nFrames:205 t:2.130049 (0.804054,0.970721,0.984234)
i:444 nFrames:272 t:2.820910 (0.804494,0.970787,0.984270)
i:445 nFrames:183 t:1.885153 (0.804933,0.970852,0.984305)
i:446 nFrames:198 t:2.041770 (0.805369,0.970917,0.984340)
i:447 nFrames:87 t:0.931823 (0.805804,0.970982,0.984375)
i:448 nFrames:160 t:1.641767 (0.806236,0.971047,0.984410)
i:449 nFrames:103 t:1.117035 (0.804444,0.971111,0.984444)
i:450 nFrames:200 t:2.067072 (0.804878,0.971175,0.984479)
i:451 nFrames:114 t:1.214310 (0.803097,0.971239,0.984513)
i:452 nFrames:250 t:2.625343 (0.803532,0.971302,0.984547)
i:453 nFrames:71 t:0.787441 (0.801762,0.969163,0.982379)
i:454 nFrames:80 t:0.954303 (0.802198,0.969231,0.982418)
i:455 nFrames:101 t:1.134988 (0.802632,0.969298,0.982456)
i:456 nFrames:183 t:1.884019 (0.803063,0.969365,0.982495)
i:457 nFrames:157 t:1.649317 (0.803493,0.969432,0.982533)
i:458 nFrames:244 t:2.551535 (0.803922,0.969499,0.982571)
i:459 nFrames:63 t:1.102515 (0.802174,0.967391,0.982609)
i:460 nFrames:205 t:2.118441 (0.800434,0.967462,0.982646)
i:461 nFrames:137 t:1.447721 (0.800866,0.967532,0.982684)
i:462 nFrames:360 t:3.682907 (0.799136,0.967603,0.982721)
i:463 nFrames:333 t:3.426515 (0.797414,0.965517,0.982759)
i:464 nFrames:167 t:1.735920 (0.797849,0.965591,0.982796)
i:465 nFrames:216 t:2.261712 (0.798283,0.965665,0.982833)
i:466 nFrames:195 t:2.015105 (0.798715,0.965739,0.982869)
i:467 nFrames:169 t:1.751429 (0.799145,0.965812,0.982906)
i:468 nFrames:121 t:1.270750 (0.799574,0.965885,0.982942)
i:469 nFrames:235 t:2.422729 (0.800000,0.965957,0.982979)
i:470 nFrames:151 t:1.572389 (0.800425,0.966030,0.983015)
i:471 nFrames:171 t:1.787463 (0.800847,0.966102,0.983051)
i:472 nFrames:225 t:2.393831 (0.801268,0.966173,0.983087)
i:473 nFrames:116 t:1.253334 (0.799578,0.966245,0.983122)
i:474 nFrames:173 t:1.779329 (0.800000,0.966316,0.983158)
i:475 nFrames:158 t:1.666893 (0.800420,0.966387,0.983193)
i:476 nFrames:305 t:3.156352 (0.800839,0.966457,0.983229)
i:477 nFrames:130 t:4.794744 (0.799163,0.966527,0.983264)
i:478 nFrames:168 t:1.741249 (0.799582,0.966597,0.983299)
i:479 nFrames:333 t:3.413215 (0.797917,0.964583,0.983333)
i:480 nFrames:239 t:2.497589 (0.798337,0.964657,0.983368)
i:481 nFrames:65 t:0.732081 (0.798755,0.964730,0.983402)
i:482 nFrames:81 t:0.864903 (0.799172,0.964803,0.983437)
i:483 nFrames:289 t:2.994829 (0.799587,0.964876,0.983471)
i:484 nFrames:125 t:1.350798 (0.797938,0.964948,0.983505)
i:485 nFrames:299 t:3.051551 (0.798354,0.965021,0.983539)
i:486 nFrames:190 t:1.980825 (0.798768,0.965092,0.983573)
i:487 nFrames:56 t:0.617895 (0.799180,0.965164,0.983607)
i:488 nFrames:240 t:2.469966 (0.799591,0.965235,0.983640)
i:489 nFrames:141 t:1.515393 (0.800000,0.965306,0.983673)
i:490 nFrames:80 t:0.860025 (0.798371,0.965377,0.983707)
i:491 nFrames:209 t:2.164913 (0.798780,0.965447,0.983740)
i:492 nFrames:118 t:1.268535 (0.797160,0.965517,0.983773)
i:493 nFrames:128 t:1.375214 (0.797571,0.965587,0.983806)
i:494 nFrames:298 t:3.085095 (0.797980,0.965657,0.983838)
i:495 nFrames:81 t:0.873002 (0.796371,0.963710,0.981855)
i:496 nFrames:144 t:1.529988 (0.796781,0.963783,0.981891)
i:497 nFrames:613 t:6.183684 (0.795181,0.963855,0.981928)
i:498 nFrames:250 t:2.604365 (0.793587,0.963928,0.981964)
i:499 nFrames:111 t:1.191064 (0.794000,0.964000,0.982000)
i:500 nFrames:201 t:2.067686 (0.794411,0.964072,0.982036)
i:501 nFrames:146 t:1.572314 (0.794821,0.964143,0.982072)
i:502 nFrames:220 t:2.310853 (0.795229,0.964215,0.982107)
i:503 nFrames:125 t:1.338548 (0.795635,0.964286,0.982143)
i:504 nFrames:193 t:1.998182 (0.796040,0.964356,0.982178)
i:505 nFrames:186 t:1.957976 (0.794466,0.964427,0.982213)
i:506 nFrames:300 t:3.097998 (0.794872,0.964497,0.982249)
i:507 nFrames:61 t:0.685933 (0.795276,0.964567,0.982283)
i:508 nFrames:93 t:0.965768 (0.793713,0.964637,0.982318)
i:509 nFrames:67 t:0.741044 (0.794118,0.964706,0.982353)
i:510 nFrames:300 t:3.112558 (0.792564,0.962818,0.982387)
i:511 nFrames:184 t:1.901893 (0.792969,0.962891,0.982422)
i:512 nFrames:100 t:1.060617 (0.793372,0.962963,0.982456)
i:513 nFrames:240 t:2.486931 (0.791829,0.961089,0.982490)
i:514 nFrames:137 t:1.433774 (0.790291,0.961165,0.982524)
i:515 nFrames:165 t:1.678668 (0.790698,0.961240,0.982558)
i:516 nFrames:152 t:1.662184 (0.791103,0.961315,0.982592)
i:517 nFrames:155 t:1.608081 (0.789575,0.961390,0.982625)
i:518 nFrames:146 t:1.818454 (0.789981,0.961464,0.982659)
i:519 nFrames:110 t:1.167167 (0.788462,0.959615,0.982692)
i:520 nFrames:125 t:1.261527 (0.788868,0.959693,0.982726)
i:521 nFrames:240 t:2.483148 (0.789272,0.959770,0.982759)
i:522 nFrames:262 t:2.710708 (0.789675,0.959847,0.982792)
i:523 nFrames:209 t:2.188699 (0.790076,0.959924,0.982824)
i:524 nFrames:222 t:2.327499 (0.790476,0.960000,0.982857)
i:525 nFrames:237 t:2.465006 (0.790875,0.960076,0.982890)
i:526 nFrames:119 t:1.249119 (0.791271,0.960152,0.982922)
i:527 nFrames:100 t:1.072183 (0.789773,0.960227,0.982955)
i:528 nFrames:130 t:1.380935 (0.790170,0.960302,0.982987)
i:529 nFrames:88 t:0.905745 (0.788679,0.960377,0.983019)
i:530 nFrames:74 t:0.803402 (0.789077,0.960452,0.983051)
i:531 nFrames:101 t:1.076470 (0.789474,0.960526,0.983083)
i:532 nFrames:329 t:3.389632 (0.789869,0.960600,0.983114)
i:533 nFrames:716 t:7.334137 (0.788390,0.958801,0.983146)
i:534 nFrames:125 t:1.355411 (0.788785,0.958879,0.983178)
i:535 nFrames:145 t:1.512386 (0.789179,0.958955,0.983209)
i:536 nFrames:59 t:0.640180 (0.789572,0.959032,0.983240)
i:537 nFrames:66 t:0.734967 (0.789963,0.959108,0.983271)
i:538 nFrames:145 t:1.481537 (0.790353,0.959184,0.983302)
i:539 nFrames:158 t:1.890945 (0.790741,0.959259,0.983333)
i:540 nFrames:193 t:1.997636 (0.789279,0.959335,0.983364)
i:541 nFrames:148 t:1.568300 (0.789668,0.959410,0.983395)
i:542 nFrames:146 t:1.546378 (0.790055,0.959484,0.983425)
i:543 nFrames:241 t:2.507136 (0.790441,0.959559,0.983456)
i:544 nFrames:245 t:2.564302 (0.788991,0.957798,0.981651)
i:545 nFrames:250 t:2.643097 (0.789377,0.957875,0.981685)
i:546 nFrames:228 t:2.397272 (0.789762,0.957952,0.981718)
i:547 nFrames:202 t:2.086900 (0.790146,0.958029,0.981752)
i:548 nFrames:169 t:1.779678 (0.790528,0.958106,0.981785)
i:549 nFrames:181 t:1.859580 (0.790909,0.958182,0.981818)