Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteIWSecondItMillisecondI�'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSS^C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_218_Run_JumpUpHigh_Run.fbxP�PSSrcDocumentUrlSKStringSUrlSS^C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_218_Run_JumpUpHigh_Run.fbx�$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodesk%EPSOriginal|ApplicationNameSKStringSSS
MotionBuilderr?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 21:12:19.7771PSOriginal|FileNameSKStringSSS?%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk�FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder2@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 21:12:19.777�FileIdR)�#�+�ľ��)�,��CreationTimeS2012-11-08 16:12:19:785\6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105�GlobalSettings�VersionI��Properties70�)PSUpAxisSintSIntegerSI	-PS
UpAxisSignSintSIntegerSIU	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI
0PS
CoordAxisSignSintSIntegerSIJ
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?!@PSOriginalUnitScaleFactorSdoubleSNumberSD�?wHPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective�%PSTimeModeSenumSSI:3PS
TimeSpanStartSKTimeSTimeSL�Ig�Rz2PSTimeSpanStopSKTimeSTimeSL@�
��8PSCustomFrameRateSdoubleSNumberSD�"	Documents
CountI!DocumentL~�S	KFbxSceneSScene�
Properties70�
&PSSourceObjectSobjectSS�
EPSActiveAnimStackNameSKStringSSSRun_JumpUpHigh_Run	RootNodeLF
References�CDefinitionswVersionId�CountI�
ObjectTypeSGlobalSettings�CountI0
ObjectTypeSMotionBuilder_System#CountI�"

ObjectTypeSModelhCountIT�"PropertyTemplateSFbxNode�"Properties70�2PSQuaternionInterpolateSenumSSICKPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD�JPS
ScalingOffsetSVector3DSVectorSDDDJIPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI�KPSTranslationMinSVector3DSVectorSDDD8KPSTranslationMaxSVector3DSVectorSDDDr,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI�,PSTranslationMinZSboolSSI ,PSTranslationMaxXSboolSSIZ,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI6PSRotationSpaceForLimitOnlySboolSSIY;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD)0PSAxisLenSdoubleSNumberSD$@HPSPreRotationSVector3DSVectorSDDD�IPSPostRotationSVector3DSVectorSDDD+PSRotationActiveSboolSSIeHPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD�)PSRotationMinXSboolSSI))PSRotationMinYSboolSSI`)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI)PSRotationMaxZSboolSSI;(PSInheritTypeSenumSSIs*PS
ScalingActiveSboolSSI�GPS
ScalingMinSVector3DSVectorSDDDGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?S(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI+(PSScalingMaxYSboolSSIa(PSScalingMaxZSboolSSI�QPSGeometricTranslationSVector3DSVectorSDDDNPSGeometricRotationSVector3DSVectorSDDDwMPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD�6PS
MinDampRangeYSdoubleSNumberSDC6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD6PS
MaxDampRangeZSdoubleSNumberSDV9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD�9PSMinDampStrengthZSdoubleSNumberSD+9PSMaxDampStrengthXSdoubleSNumberSDr9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD�7PSPreferedAngleXSdoubleSNumberSDC7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�(PSLookAtPropertySobjectSS�*PSUpVectorPropertySobjectSS% !PSShowSboolSSIk 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����� #PSFreezeSboolSSI!#PSLODBoxSboolSSIo!NPSLcl TranslationSLcl TranslationSSADDD�!HPSLcl RotationSLcl RotationSSADDD"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?Y"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI�=
ObjectTypeS
NodeAttribute#CountIT�=PropertyTemplateS	FbxCamera�=Properties70�#>PSPositionSVectorSSADDDI��#>PSUpVectorSVectorSSADD�?DC$FPSInterestPositionSVectorSSADDDw$&PSRollSRollSSAD�$:PSOpticalCenterXSOpticalCenterXSSAD%:PSOpticalCenterYSOpticalCenterYSSADY%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD�%1PSDisplayTurnTableIconSboolSSI&*PS
UseMotionBlurSboolSSIK&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?�&,PSAspectRatioModeSenumSSI'4PSAspectWidthSdoubleSNumberSDt@Q'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?�'/PSFilmOffsetXSNumberSSAD(/PSFilmOffsetYSNumberSSADR(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?�(8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�? )9PSFilmSqueezeRatioSdoubleSNumberSD�?Z),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?�)2PSFilmTranslateXSNumberSSAD*2PSFilmTranslateYSNumberSSADT*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD�*1PS
FilmRollValueSNumberSSAD+*PS
FilmRollOrderSenumSSIB+)PSApertureModeSenumSSIt+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@�+6PSFieldOfViewXSFieldOfViewXSSADD@>,6PSFieldOfViewYSFieldOfViewYSSADD@{,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI�,*PS
UseFrameColorSboolSSI>-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?q-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI�-%PSShowGridSboolSSI..PSShowOpticalCenterSboolSSIP.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSI/GPS
AudioColorSVector3DSVectorSDD�?DP/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@�/1PSAutoComputeClipPanesSboolSSI0/PSViewCameraToLookAtSboolSSIM04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI�05PSBackPlaneDistanceSNumberSSAD@�@12PSBackPlaneDistanceModeSenumSSIW16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@�13PSFrontPlaneDistanceModeSenumSSI2%PSLockModeSboolSSIP23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI�2*PS
BackPlateCropSboolSSI�2,PSBackPlateCenterSboolSSI;3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?�3*PS
ShowBackplateSboolSSI44PSBackPlaneOffsetXSNumberSSADE44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD�43PSBackPlaneScaleXSNumberSSAD�?
53PSBackPlaneScaleYSNumberSSAD�?D5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI�5-PSFrontPlateCenterSboolSSI360PSFrontPlateKeepRatioSboolSSI|6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI�65PSFrontPlaneOffsetXSNumberSSAD;75PSFrontPlaneOffsetYSNumberSSAD76PSFrontPlaneRotationSNumberSSAD�74PSFrontPlaneScaleXSNumberSSAD�?84PSFrontPlaneScaleYSNumberSSAD�?=8,PSForeground TextureSobjectSSw8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI�81PSSafeAreaDisplayStyleSenumSSIB9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?9/PSUse2DMagnifierZoomSboolSSI�95PS2D Magnifier ZoomSNumberSSADY@:2PS2D Magnifier XSNumberSSADI@B:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI�:2PS	OrthoZoomSdoubleSNumberSD�?�:0PSUseRealTimeDOFAndAASboolSSI9;,PSUseDepthOfFieldSboolSSIo;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@�;6PS
FocusDistanceSdoubleSNumberSDi@.<,PSUseAntialiasingSboolSSIz<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI�<2PSUseAccumulationBufferSboolSSI:=5PSFrameSamplingCountSintSIntegerSIv=.PSFrameSamplingTypeSenumSSI�=APSColorSColorRGBSColorSD�������?D�������?D�������?A>
ObjectTypeSMotionBuilder_Generic4>CountI�@
ObjectTypeSAnimationLayer�>CountI�@PropertyTemplateSFbxAnimLayer�@Properties70?*PSWeightSNumberSSADY@0?!PSMuteSboolSSI_?!PSSoloSboolSSI�?!PSLockSboolSSI�?APSColorSColorRGBSColorSD�������?D�������?D�������?@&PS	BlendModeSenumSSIT@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI�@5PSBlendModeBypassS	ULongLongSSL�B
ObjectTypeSAnimationStack?ACountI�BPropertyTemplateSFbxAnimStack�BProperties70�A+PSDescriptionSKStringSSS�A0PS
LocalStartSKTimeSTimeSL:B/PS	LocalStopSKTimeSTimeSL|B4PSReferenceStartSKTimeSTimeSL�B3PS
ReferenceStopSKTimeSTimeSL6C
ObjectTypeSAnimationCurveNode)CCountI��C
ObjectTypeSAnimationCurvewCCountI�$�Objects�H<
NodeAttributeL�i�:S#Producer PerspectiveNodeAttributeSCameraGProperties70`D>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@DEDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?EE1PSDisplayTurnTableIconSboolSSIE,PSFilmFormatIndexSenumSSI�E4PSFieldOfViewSFieldOfViewSSADD@�E/PSFocalLengthSNumberSSAD �Z5@HF<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSAD�F2PS2D Magnifier XSNumberSSADG2PS2D Magnifier YSNumberSSAD9G	TypeFlagsSCameraZGGeometryVersionI|�GPositionDD b@D�r@�GUpDD�?D�GLookAtD1�ʧ�U�<D�����V@DHShowInfoOnMovingIH	ShowAudioIQH
AudioColorDD�?DvH	CameraOrthoZoomD�?N6
NodeAttributeL�e�:SProducer FrontNodeAttributeSCamera�LProperties708I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D�IDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?J1PSDisplayTurnTableIconSboolSSIWJ,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@�J/PSFocalLengthSNumberSSAD �Z5@K2PS	NearPlaneSdoubleSNumberSD�?UK1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�K5PS2D Magnifier ZoomSNumberSSAD"L2PS2D Magnifier XSNumberSSADbL2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI�L	TypeFlagsSCamera�LGeometryVersionI| MPositionDD�V@DL�@JMUpDD�?DxMLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioI�M
AudioColorDD�?DN	CameraOrthoZoomD�?�S5
NodeAttributeL�a�:SProducer BackNodeAttributeSCameraCRProperties70�N>PSPositionSVectorSSADD�V@DL��!OFPSInterestPositionSVectorSSADD�V@DsODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI�O,PSFilmFormatIndexSenumSSI.P4PSFieldOfViewSFieldOfViewSSADD@kP/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?�P1PSFarPlaneSdoubleSNumberSDL�@4Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?wQ5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSAD�Q2PS2D Magnifier YSNumberSSAD6R1PSCameraProjectionTypeSenumSSIdR	TypeFlagsSCamera�RGeometryVersionI|�RPositionDD�V@DL���RUpDD�?D
SLookAtDD�V@D/SShowInfoOnMovingIJS	ShowAudioI|S
AudioColorDD�?D�S	CameraOrthoZoomD�?DY6
NodeAttributeLH��:SProducer RightNodeAttributeSCamera�WProperties70cT>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@D	UDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?HU1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSI�U4PSFieldOfViewSFieldOfViewSSADD@V/PSFocalLengthSNumberSSAD �Z5@AV2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@�V<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?
W5PS2D Magnifier ZoomSNumberSSADMW2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD�W1PSCameraProjectionTypeSenumSSI�W	TypeFlagsSCameraXGeometryVersionI|KXPositionDL�@D�V@DuXUpDD�?D�XLookAtDD�V@D�XShowInfoOnMovingI�X	ShowAudioIY
AudioColorDD�?D7Y	CameraOrthoZoomD�?�^5
NodeAttributeL@��:SProducer LeftNodeAttributeSCameran]Properties70�Y>PSPositionSVectorSSADL��D�V@DLZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�Z1PSDisplayTurnTableIconSboolSSI[,PSFilmFormatIndexSenumSSIY[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@�[2PS	NearPlaneSdoubleSNumberSD�?\1PSFarPlaneSdoubleSNumberSDL�@_\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD�\2PS2D Magnifier XSNumberSSAD"]2PS2D Magnifier YSNumberSSADa]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|�]PositionDL��D�V@D
^UpDD�?D8^LookAtDD�V@DZ^ShowInfoOnMovingIu^	ShowAudioI�^
AudioColorDD�?D�^	CameraOrthoZoomD�?�d4
NodeAttributeL8��:SProducer TopNodeAttributeSCameraNcProperties70�_>PSPositionSVectorSSADDy�@D�_>PSUpVectorSVectorSSADDD�,`FPSInterestPositionSVectorSSADD�V@D~`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�`1PSDisplayTurnTableIconSboolSSI�`,PSFilmFormatIndexSenumSSI9a4PSFieldOfViewSFieldOfViewSSADD@va/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?�a1PSFarPlaneSdoubleSNumberSDL�@?b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSAD�b2PS2D Magnifier XSNumberSSADc2PS2D Magnifier YSNumberSSADAc1PSCameraProjectionTypeSenumSSIoc	TypeFlagsSCamera�cGeometryVersionI|�cPositionDDy�@D�cUpDDD�dLookAtDD�V@D:dShowInfoOnMovingIUd	ShowAudioI�d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeL ��:SProducer BottomNodeAttributeSCamera1iProperties70oe>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?fFPSInterestPositionSVectorSSADD�V@DafDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI�f,PSFilmFormatIndexSenumSSIg4PSFieldOfViewSFieldOfViewSSADD@Yg/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?�g1PSFarPlaneSdoubleSNumberSDL�@"h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?eh5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD�h2PS2D Magnifier YSNumberSSAD$i1PSCameraProjectionTypeSenumSSIRi	TypeFlagsSCamerasiGeometryVersionI|�iPositionDD��D�iUpD�D�D�?�iLookAtDD�V@DjShowInfoOnMovingI8j	ShowAudioIjj
AudioColorDD�?D�j	CameraOrthoZoomD�?�k?
NodeAttributeL(7F:SCamera SwitcherNodeAttributeSCameraSwitcherVkProperties70Ik-PSCamera IndexSIntegerSSAIokVersionIe�kNameSCamera SwitcherModel�kCameraIdI�k
CameraNameId�kCameraIndexNamenl*
NodeAttributeL�1:SNodeAttributeSLimbNodeal
	TypeFlagsSSkeleton�l*
NodeAttributeL�1:SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonVm*
NodeAttributeL��1:SNodeAttributeSLimbNodeIm
	TypeFlagsSSkeleton�m*
NodeAttributeL��1:SNodeAttributeSLimbNode�m
	TypeFlagsSSkeleton>n*
NodeAttributeL@�1:SNodeAttributeSLimbNode1n
	TypeFlagsSSkeleton�n*
NodeAttributeL�1:SNodeAttributeSLimbNode�n
	TypeFlagsSSkeleton&o*
NodeAttributeL��1:SNodeAttributeSLimbNodeo
	TypeFlagsSSkeleton�o*
NodeAttributeL��1:SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonp*
NodeAttributeL��1:SNodeAttributeSLimbNodep
	TypeFlagsSSkeleton�p*
NodeAttributeL@�1:SNodeAttributeSLimbNodeup
	TypeFlagsSSkeleton�p*
NodeAttributeL�31:SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonjq*
NodeAttributeL�41:SNodeAttributeSLimbNode]q
	TypeFlagsSSkeleton�q*
NodeAttributeL�.1:SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonRr*
NodeAttributeL01:SNodeAttributeSLimbNodeEr
	TypeFlagsSSkeleton�r*
NodeAttributeL@B1:SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton:s*
NodeAttributeL@21:SNodeAttributeSLimbNode-s
	TypeFlagsSSkeleton�s*
NodeAttributeL51:SNodeAttributeSLimbNode�s
	TypeFlagsSSkeleton"t*
NodeAttributeL#1:SNodeAttributeSLimbNodet
	TypeFlagsSSkeleton�t*
NodeAttributeL@?1:SNodeAttributeSLimbNode�t
	TypeFlagsSSkeleton
u*
NodeAttributeL?1:SNodeAttributeSLimbNode�t
	TypeFlagsSSkeleton~u*
NodeAttributeL�91:SNodeAttributeSLimbNodequ
	TypeFlagsSSkeleton�u*
NodeAttributeL�71:SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonfv*
NodeAttributeL@;1:SNodeAttributeSLimbNodeYv
	TypeFlagsSSkeleton�v*
NodeAttributeL=1:SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonNw*
NodeAttributeL�?1:SNodeAttributeSLimbNodeAw
	TypeFlagsSSkeleton�w*
NodeAttributeL�"1:SNodeAttributeSLimbNode�w
	TypeFlagsSSkeleton6x*
NodeAttributeL@51:SNodeAttributeSLimbNode)x
	TypeFlagsSSkeleton�x*
NodeAttributeL�#1:SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletony*
NodeAttributeL@>1:SNodeAttributeSLimbNodey
	TypeFlagsSSkeleton�y*
NodeAttributeL@,1:SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonz*
NodeAttributeL�:1:SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonzz*
NodeAttributeL�1:SNodeAttributeSLimbNodemz
	TypeFlagsSSkeleton�z*
NodeAttributeL@�1:SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletonb{*
NodeAttributeLD1:SNodeAttributeSLimbNodeU{
	TypeFlagsSSkeleton�{*
NodeAttributeL��1:SNodeAttributeSLimbNode�{
	TypeFlagsSSkeletonJ|*
NodeAttributeL��1:SNodeAttributeSLimbNode=|
	TypeFlagsSSkeleton�|*
NodeAttributeL@1:SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton2}*
NodeAttributeL1:SNodeAttributeSLimbNode%}
	TypeFlagsSSkeleton�}*
NodeAttributeL�1:SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton~*
NodeAttributeL 1:SNodeAttributeSLimbNode
~
	TypeFlagsSSkeleton�~*
NodeAttributeL�1:SNodeAttributeSLimbNode�~
	TypeFlagsSSkeleton*
NodeAttributeL@1:SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletonv*
NodeAttributeL�1:SNodeAttributeSLimbNodei
	TypeFlagsSSkeleton�*
NodeAttributeL�1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton^�*
NodeAttributeL@1:SNodeAttributeSLimbNodeQ�
	TypeFlagsSSkeletonҀ*
NodeAttributeL�1:SNodeAttributeSLimbNodeŀ
	TypeFlagsSSkeletonF�*
NodeAttributeL@1:SNodeAttributeSLimbNode9�
	TypeFlagsSSkeleton��*
NodeAttributeL@ 1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton.�*
NodeAttributeL�1:SNodeAttributeSLimbNode!�
	TypeFlagsSSkeleton��*
NodeAttributeL�1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL@1:SNodeAttributeSLimbNode	�
	TypeFlagsSSkeleton��*
NodeAttributeL1:SNodeAttributeSLimbNode}�
	TypeFlagsSSkeleton��*
NodeAttributeL�1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonr�*
NodeAttributeL1:SNodeAttributeSLimbNodee�
	TypeFlagsSSkeleton�*
NodeAttributeL@1:SNodeAttributeSLimbNodeل
	TypeFlagsSSkeletonZ�*
NodeAttributeL@F1:SNodeAttributeSLimbNodeM�
	TypeFlagsSSkeleton΅*
NodeAttributeL�1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonB�*
NodeAttributeL��1:SNodeAttributeSLimbNode5�
	TypeFlagsSSkeleton��*
NodeAttributeL��1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton*�*
NodeAttributeL@�1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL@�1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��1:SNodeAttributeSLimbNodey�
	TypeFlagsSSkeleton��*
NodeAttributeL��1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonn�*
NodeAttributeL�1:SNodeAttributeSLimbNodea�
	TypeFlagsSSkeleton�*
NodeAttributeL@�1:SNodeAttributeSLimbNodeՉ
	TypeFlagsSSkeletonV�*
NodeAttributeL��1:SNodeAttributeSLimbNodeI�
	TypeFlagsSSkeletonʊ*
NodeAttributeL��1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton>�*
NodeAttributeL�1:SNodeAttributeSLimbNode1�
	TypeFlagsSSkeleton��*
NodeAttributeL@�1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton&�*
NodeAttributeL��1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��1:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�1:SNodeAttributeSLimbNodeu�
	TypeFlagsSSkeleton��*
NodeAttributeL�J1:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonj�*
NodeAttributeLm1:SNodeAttributeSLimbNode]�
	TypeFlagsSSkeleton��4ModelL8Gv)SProducer PerspectiveModelSCameraɎVersionI�m�Properties707�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?f�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD b@D�r@^�HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V���,PS	MultiTakeSintSIntegerSIӐ-PSManipulationModeSenumSSI6�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDs�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI9�:PSLocalTranslationRefVisibilitySboolSSIy�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI@�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIʓ8PSReferentialSizeSdoubleSNumberSD(@
�5PSDefaultKeyingGroupSintSIntegerSIN�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI*�-PSShowTrajectoriesSboolSSIc�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?ߕ0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSIA�!PSCropSboolSSIr�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI(�4PSDisplay2DMagnifierFrameSboolSSI`�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff��.ModelL0Bv)SProducer FrontModelSCamera�VersionI���Properties70z�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIK�NPSLcl TranslationSLcl TranslationSSADD�V@DL�@��HPSLcl RotationSLcl RotationSSADD�V@Dۙ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIy�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI4�5PSRotationLimitsVisibilitySboolSSI|�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI<�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIǜ6PSGeometricCenterVisibilitySboolSSI
�8PSReferentialSizeSdoubleSNumberSD(@P�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIĝ%PSPickableSboolSSI��*PS
TransformableSboolSSI2�(PSCullingModeSenumSSIm�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?"�0PSAspectHSdoubleSNumberSD�?U�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSI)�2PSForegroundTransparentSboolSSIk�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSIƠShadingCW�CullingS
CullingOff8�-ModelL(=v)SProducer BackModelSCameraN�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI1�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL���HPSLcl RotationSLcl RotationSSAD�D�V�D�,PS	MultiTakeSintSIntegerSIX�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI3�-PSPivotsVisibilitySenumSSIv�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI?�3PSRotationAxisVisibilitySboolSSI~�1PSScalingRefVisibilitySboolSSIť9PSHierarchicalCenterVisibilitySboolSSI	�6PSGeometricCenterVisibilitySboolSSIO�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIӦ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI>�*PS
TransformableSboolSSIt�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI&�0PSAspectWSdoubleSNumberSD�?d�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSIƨ!PSCropSboolSSI��#PSCenterSboolSSI+�&PS	KeepRatioSboolSSIk�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI�ShadingCW+�CullingS
CullingOff{�.ModelLHQv)SProducer RightModelSCamera��VersionI�5�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?.�!PSShowSboolSSIt�8PSDefaultAttributeIndexSintSIntegerSIЫNPSLcl TranslationSLcl TranslationSSADL�@D�V@D&�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@`�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD;�/PSSetPreferedAngleSActionSSIv�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIA�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIL�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@կ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSII�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI+�+PSResolutionModeSenumSSIi�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ڱ%PSFitImageSboolSSI	�!PSCropSboolSSI:�#PSCenterSboolSSIn�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI(�*PSResetCameraSActionSSIK�ShadingCWn�CullingS
CullingOffg�-ModelL�v)SProducer LeftModelSCameraӳVersionI�!�Properties70A�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?p�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL��D�V@DL�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD'�/PSSetPreferedAngleSActionSSIb�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI-�2PSRotationRefVisibilitySboolSSIn�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI8�6PSGeometricCenterVisibilitySboolSSI~�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI5�%PSPickableSboolSSIm�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI޹-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSIU�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ƺ%PSFitImageSboolSSI��!PSCropSboolSSI&�#PSCenterSboolSSIZ�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSIܻ4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI7�ShadingCWZ�CullingS
CullingOff��,ModelL3v)SProducer TopModelSCamera��VersionI�b�Properties70,�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?[�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADDy�@DS�HPSLcl RotationSLcl RotationSSAD�V�D�D�V���,PS	MultiTakeSintSIntegerSIȾ-PSManipulationModeSenumSSI+�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDh�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI.�:PSLocalTranslationRefVisibilitySboolSSIn�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI5�9PSHierarchicalCenterVisibilitySboolSSIy�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIC�3PSDefaultKeyingGroupEnumSenumSSIv�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIX�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI6�!PSCropSboolSSIg�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIU�*PSResetCameraSActionSSIx�ShadingCW��CullingS
CullingOff��/ModelLPVv)SProducer BottomModelSCamera�VersionI���Properties70p�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSIA�NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIo�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI*�5PSRotationLimitsVisibilitySboolSSIr�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI2�1PSScalingRefVisibilitySboolSSIy�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@F�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI(�(PSCullingModeSenumSSIc�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?K�%PSFitImageSboolSSIz�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIa�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOffP�7ModelL �;:SCamera SwitcherModelSCameraSwitcherN�VersionI�
�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI1�8PSDefaultAttributeIndexSintSIntegerSIk�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI	�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIL�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIW�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI!�3PSDefaultKeyingGroupEnumSenumSSIT�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI �ShadingCWC�CullingS
CullingOff|�+ModelL(�;:SReferenceModelSLimbNode��VersionI�6�Properties70��+PSRotationActiveSboolSSI.�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�EPSVisibility InheritanceSVisibility InheritanceSSIV�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD1�/PSSetPreferedAngleSActionSSIl�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI7�2PSRotationRefVisibilitySboolSSIx�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIB�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI?�%PSPickableSboolSSIw�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI)�3PSlockInfluenceWeightsSBoolSSAUIL�ShadingCYo�CullingS
CullingOff��&ModelL0�;:SHipsModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSIU�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIM�OPSLcl TranslationSLcl TranslationSSA+D�i7x�D��V@D���J���IPSLcl RotationSLcl RotationSSA+D`G�K@D���U@DE�<@��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?L�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI$�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDa�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI'�:PSLocalTranslationRefVisibilitySboolSSIg�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI.�9PSHierarchicalCenterVisibilitySboolSSIr�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI<�3PSDefaultKeyingGroupEnumSenumSSIo�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIH�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff]�'ModelL8�;:SSpineModelSLimbNode>�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDa�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D2�D�s"@D�;�?�IPSLcl RotationSLcl RotationSSA+D@��@D���/@D`9l�j�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI2�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI
�-PSPivotsVisibilitySenumSSIP�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIX�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI)�8PSReferentialSizeSdoubleSNumberSD(@l�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIN�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI
�CPSLimbLength 1SNumberSSAUD�?DDY@-�ShadingCYP�CullingS
CullingOff!�'ModelL@�;:SChestModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSI7�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI.�NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſ��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIY�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI\�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIc�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@0�5PSDefaultKeyingGroupSintSIntegerSIq�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIM�-PSShowTrajectoriesSboolSSI}�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��&ModelLH�;:SNeckModelSLimbNoder�VersionI�K�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIO�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+DD�D���9@D <�	�I�IPSLcl RotationSLcl RotationSSA+D`yS,�D�f�D�������GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI+�,PS	MultiTakeSintSIntegerSIf�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIA�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIM�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI]�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIL�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI>�CPSLimbLength 1SNumberSSAUD�?DDY@a�ShadingCY��CullingS
CullingOff&ModelLP�;:SHeadModelSLimbNode��VersionI��Properties704�+PSRotationActiveSboolSSIj�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIb�OPSLcl TranslationSLcl TranslationSSA+DL�D 4� @D s�?��IPSLcl RotationSLcl RotationSSA+D`�'�D��M�D��=�?GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?aEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI9UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDv/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI<:PSLocalTranslationRefVisibilitySboolSSI|2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIC9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIQ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI--PSShowTrajectoriesSboolSSI]"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�
)ModelLX�;:SLeftEyeModelSLimbNodeUVersionI��
Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI2GPS
ScalingMaxSVector3DSVectorSDDDx8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@'EPSVisibility InheritanceSVisibility InheritanceSSIa,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD<	/PSSetPreferedAngleSActionSSIw	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI
:PSLocalTranslationRefVisibilitySboolSSIB
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI	9PSHierarchicalCenterVisibilitySboolSSIM6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIJ%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI#
"PSliwSBoolSSAUIt
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff�*ModelL`�;:SRightEyeModelSLimbNodeVersionI��Properties70m*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI1GPS
ScalingMaxSVector3DSVectorSDDDw8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@&EPSVisibility InheritanceSVisibility InheritanceSSI`,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD;/PSSetPreferedAngleSActionSSIv-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIA2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIL6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSII%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI""PSliwSBoolSSAUIsCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff#%ModelLh�;:S
JawModelSLimbNodeVersionI��Properties70h+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD87PSPreferedAngleXSdoubleSNumberSDUs\O,T9@~8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?0HPSLcl RotationSLcl RotationSSADD�Y	�<D����<�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI[UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI^:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIe9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@25PSDefaultKeyingGroupSintSIntegerSIs3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIO-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�%,ModelLp�;:STongueBackModelSLimbNodezVersionI��%Properties70�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIWGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?L EPSVisibility InheritanceSVisibility InheritanceSSI� ,PS	MultiTakeSintSIntegerSI� -PSManipulationModeSenumSSI$!UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDa!/PSSetPreferedAngleSActionSSI�!-PSPivotsVisibilitySenumSSI�!5PSRotationLimitsVisibilitySboolSSI'":PSLocalTranslationRefVisibilitySboolSSIg"2PSRotationRefVisibilitySboolSSI�"3PSRotationAxisVisibilitySboolSSI�"1PSScalingRefVisibilitySboolSSI.#9PSHierarchicalCenterVisibilitySboolSSIr#6PSGeometricCenterVisibilitySboolSSI�#8PSReferentialSizeSdoubleSNumberSD(@�#5PSDefaultKeyingGroupSintSIntegerSI<$3PSDefaultKeyingGroupEnumSenumSSIo$%PSPickableSboolSSI�$*PS
TransformableSboolSSI�$(PSCullingModeSenumSSI%-PSShowTrajectoriesSboolSSIH%"PSliwSBoolSSAUI�%CPSLimbLength 1SNumberSSAUD�?DDY@�%ShadingCY�%CullingS
CullingOff�-+ModelLx�;:STongueTipModelSLimbNodeB&VersionI�n-Properties70�&+PSRotationActiveSboolSSI�&(PSInheritTypeSenumSSI'GPS
ScalingMaxSVector3DSVectorSDDDe'8PSDefaultAttributeIndexSintSIntegerSI�'NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@(EPSVisibility InheritanceSVisibility InheritanceSSIN(,PS	MultiTakeSintSIntegerSI�(-PSManipulationModeSenumSSI�(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD))/PSSetPreferedAngleSActionSSId)-PSPivotsVisibilitySenumSSI�)5PSRotationLimitsVisibilitySboolSSI�):PSLocalTranslationRefVisibilitySboolSSI/*2PSRotationRefVisibilitySboolSSIp*3PSRotationAxisVisibilitySboolSSI�*1PSScalingRefVisibilitySboolSSI�*9PSHierarchicalCenterVisibilitySboolSSI:+6PSGeometricCenterVisibilitySboolSSI�+8PSReferentialSizeSdoubleSNumberSD(@�+5PSDefaultKeyingGroupSintSIntegerSI,3PSDefaultKeyingGroupEnumSenumSSI7,%PSPickableSboolSSIo,*PS
TransformableSboolSSI�,(PSCullingModeSenumSSI�,-PSShowTrajectoriesSboolSSI-"PSliwSBoolSSAUIa-CPSLimbLength 1SNumberSSAUD�?DDY@�-ShadingCY�-CullingS
CullingOff5.ModelL��8:SLeftLipLowerModelSLimbNode
.VersionI�95Properties70_.+PSRotationActiveSboolSSI�.(PSInheritTypeSenumSSI�.GPS
ScalingMaxSVector3DSVectorSDDD0/8PSDefaultAttributeIndexSintSIntegerSI�/NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�/EPSVisibility InheritanceSVisibility InheritanceSSI0,PS	MultiTakeSintSIntegerSIT0-PSManipulationModeSenumSSI�0UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�0/PSSetPreferedAngleSActionSSI/1-PSPivotsVisibilitySenumSSIr15PSRotationLimitsVisibilitySboolSSI�1:PSLocalTranslationRefVisibilitySboolSSI�12PSRotationRefVisibilitySboolSSI;23PSRotationAxisVisibilitySboolSSIz21PSScalingRefVisibilitySboolSSI�29PSHierarchicalCenterVisibilitySboolSSI36PSGeometricCenterVisibilitySboolSSIK38PSReferentialSizeSdoubleSNumberSD(@�35PSDefaultKeyingGroupSintSIntegerSI�33PSDefaultKeyingGroupEnumSenumSSI4%PSPickableSboolSSI:4*PS
TransformableSboolSSIp4(PSCullingModeSenumSSI�4-PSShowTrajectoriesSboolSSI�4"PSliwSBoolSSAUI,5CPSLimbLength 1SNumberSSAUD�?DDY@O5ShadingCYr5CullingS
CullingOff|=(ModelL��8:S
JawENDModelSLimbNode�5VersionI�6=Properties70#6*PS
RotationOrderSenumSSI\6+PSRotationActiveSboolSSI�6(PSInheritTypeSenumSSI�6GPS
ScalingMaxSVector3DSVectorSDDD-78PSDefaultAttributeIndexSintSIntegerSI�7NPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�7EPSVisibility InheritanceSVisibility InheritanceSSI8,PS	MultiTakeSintSIntegerSIQ8-PSManipulationModeSenumSSI�8UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�8/PSSetPreferedAngleSActionSSI,9-PSPivotsVisibilitySenumSSIo95PSRotationLimitsVisibilitySboolSSI�9:PSLocalTranslationRefVisibilitySboolSSI�92PSRotationRefVisibilitySboolSSI8:3PSRotationAxisVisibilitySboolSSIw:1PSScalingRefVisibilitySboolSSI�:9PSHierarchicalCenterVisibilitySboolSSI;6PSGeometricCenterVisibilitySboolSSIH;8PSReferentialSizeSdoubleSNumberSD(@�;5PSDefaultKeyingGroupSintSIntegerSI�;3PSDefaultKeyingGroupEnumSenumSSI�;%PSPickableSboolSSI7<*PS
TransformableSboolSSIm<(PSCullingModeSenumSSI�<-PSShowTrajectoriesSboolSSI�<"PSliwSBoolSSAUI)=CPSLimbLength 1SNumberSSAUD�?DDY@L=ShadingCYo=CullingS
CullingOffHE/ModelL��8:SRightLipLowerModelSLimbNode�=VersionI�EProperties70(>+PSRotationActiveSboolSSI^>(PSInheritTypeSenumSSI�>GPS
ScalingMaxSVector3DSVectorSDDD�>8PSDefaultAttributeIndexSintSIntegerSIU?NPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�?EPSVisibility InheritanceSVisibility InheritanceSSI�?,PS	MultiTakeSintSIntegerSI@-PSManipulationModeSenumSSI�@UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�@/PSSetPreferedAngleSActionSSI�@-PSPivotsVisibilitySenumSSI;A5PSRotationLimitsVisibilitySboolSSI�A:PSLocalTranslationRefVisibilitySboolSSI�A2PSRotationRefVisibilitySboolSSIB3PSRotationAxisVisibilitySboolSSICB1PSScalingRefVisibilitySboolSSI�B9PSHierarchicalCenterVisibilitySboolSSI�B6PSGeometricCenterVisibilitySboolSSIC8PSReferentialSizeSdoubleSNumberSD(@WC5PSDefaultKeyingGroupSintSIntegerSI�C3PSDefaultKeyingGroupEnumSenumSSI�C%PSPickableSboolSSID*PS
TransformableSboolSSI9D(PSCullingModeSenumSSItD-PSShowTrajectoriesSboolSSI�D"PSliwSBoolSSAUI�DCPSLimbLength 1SNumberSSAUD�?DDY@EShadingCY;ECullingS
CullingOffM0ModelL��8:SRightLipCornerModelSLimbNode�EVersionI��LProperties70�E+PSRotationActiveSboolSSI+F(PSInheritTypeSenumSSI�FGPS
ScalingMaxSVector3DSVectorSDDD�F8PSDefaultAttributeIndexSintSIntegerSI"GNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@uGEPSVisibility InheritanceSVisibility InheritanceSSI�G,PS	MultiTakeSintSIntegerSI�G-PSManipulationModeSenumSSIMHUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�H/PSSetPreferedAngleSActionSSI�H-PSPivotsVisibilitySenumSSII5PSRotationLimitsVisibilitySboolSSIPI:PSLocalTranslationRefVisibilitySboolSSI�I2PSRotationRefVisibilitySboolSSI�I3PSRotationAxisVisibilitySboolSSIJ1PSScalingRefVisibilitySboolSSIWJ9PSHierarchicalCenterVisibilitySboolSSI�J6PSGeometricCenterVisibilitySboolSSI�J8PSReferentialSizeSdoubleSNumberSD(@$K5PSDefaultKeyingGroupSintSIntegerSIeK3PSDefaultKeyingGroupEnumSenumSSI�K%PSPickableSboolSSI�K*PS
TransformableSboolSSIL(PSCullingModeSenumSSIAL-PSShowTrajectoriesSboolSSIqL"PSliwSBoolSSAUI�LCPSLimbLength 1SNumberSSAUD�?DDY@�LShadingCYMCullingS
CullingOff�T/ModelL��8:SLeftLipCornerModelSLimbNodeoMVersionI��TProperties70�M+PSRotationActiveSboolSSI�M(PSInheritTypeSenumSSILNGPS
ScalingMaxSVector3DSVectorSDDD�N8PSDefaultAttributeIndexSintSIntegerSI�NNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@AOEPSVisibility InheritanceSVisibility InheritanceSSI{O,PS	MultiTakeSintSIntegerSI�O-PSManipulationModeSenumSSIPUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDVP/PSSetPreferedAngleSActionSSI�P-PSPivotsVisibilitySenumSSI�P5PSRotationLimitsVisibilitySboolSSIQ:PSLocalTranslationRefVisibilitySboolSSI\Q2PSRotationRefVisibilitySboolSSI�Q3PSRotationAxisVisibilitySboolSSI�Q1PSScalingRefVisibilitySboolSSI#R9PSHierarchicalCenterVisibilitySboolSSIgR6PSGeometricCenterVisibilitySboolSSI�R8PSReferentialSizeSdoubleSNumberSD(@�R5PSDefaultKeyingGroupSintSIntegerSI1S3PSDefaultKeyingGroupEnumSenumSSIdS%PSPickableSboolSSI�S*PS
TransformableSboolSSI�S(PSCullingModeSenumSSI
T-PSShowTrajectoriesSboolSSI=T"PSliwSBoolSSAUI�TCPSLimbLength 1SNumberSSAUD�?DDY@�TShadingCY�TCullingS
CullingOff�\.ModelL��8:SLeftLipUpperModelSLimbNode:UVersionI�f\Properties70�U+PSRotationActiveSboolSSI�U(PSInheritTypeSenumSSIVGPS
ScalingMaxSVector3DSVectorSDDD]V8PSDefaultAttributeIndexSintSIntegerSI�VNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@WEPSVisibility InheritanceSVisibility InheritanceSSIFW,PS	MultiTakeSintSIntegerSI�W-PSManipulationModeSenumSSI�WUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD!X/PSSetPreferedAngleSActionSSI\X-PSPivotsVisibilitySenumSSI�X5PSRotationLimitsVisibilitySboolSSI�X:PSLocalTranslationRefVisibilitySboolSSI'Y2PSRotationRefVisibilitySboolSSIhY3PSRotationAxisVisibilitySboolSSI�Y1PSScalingRefVisibilitySboolSSI�Y9PSHierarchicalCenterVisibilitySboolSSI2Z6PSGeometricCenterVisibilitySboolSSIxZ8PSReferentialSizeSdoubleSNumberSD(@�Z5PSDefaultKeyingGroupSintSIntegerSI�Z3PSDefaultKeyingGroupEnumSenumSSI/[%PSPickableSboolSSIg[*PS
TransformableSboolSSI�[(PSCullingModeSenumSSI�[-PSShowTrajectoriesSboolSSI\"PSliwSBoolSSAUIY\CPSLimbLength 1SNumberSSAUD�?DDY@|\ShadingCY�\CullingS
CullingOffvd-ModelL��8:SLeftNostrilModelSLimbNode]VersionI�0dProperties70V]+PSRotationActiveSboolSSI�](PSInheritTypeSenumSSI�]GPS
ScalingMaxSVector3DSVectorSDDD'^8PSDefaultAttributeIndexSintSIntegerSI�^NPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�^EPSVisibility InheritanceSVisibility InheritanceSSI_,PS	MultiTakeSintSIntegerSIK_-PSManipulationModeSenumSSI�_UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�_/PSSetPreferedAngleSActionSSI&`-PSPivotsVisibilitySenumSSIi`5PSRotationLimitsVisibilitySboolSSI�`:PSLocalTranslationRefVisibilitySboolSSI�`2PSRotationRefVisibilitySboolSSI2a3PSRotationAxisVisibilitySboolSSIqa1PSScalingRefVisibilitySboolSSI�a9PSHierarchicalCenterVisibilitySboolSSI�a6PSGeometricCenterVisibilitySboolSSIBb8PSReferentialSizeSdoubleSNumberSD(@�b5PSDefaultKeyingGroupSintSIntegerSI�b3PSDefaultKeyingGroupEnumSenumSSI�b%PSPickableSboolSSI1c*PS
TransformableSboolSSIgc(PSCullingModeSenumSSI�c-PSShowTrajectoriesSboolSSI�c"PSliwSBoolSSAUI#dCPSLimbLength 1SNumberSSAUD�?DDY@FdShadingCYidCullingS
CullingOff>l+ModelL�9:SLeftCheekModelSLimbNode�dVersionI��kProperties70e+PSRotationActiveSboolSSITe(PSInheritTypeSenumSSI�eGPS
ScalingMaxSVector3DSVectorSDDD�e8PSDefaultAttributeIndexSintSIntegerSIKfNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@�fEPSVisibility InheritanceSVisibility InheritanceSSI�f,PS	MultiTakeSintSIntegerSIg-PSManipulationModeSenumSSIvgUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�g/PSSetPreferedAngleSActionSSI�g-PSPivotsVisibilitySenumSSI1h5PSRotationLimitsVisibilitySboolSSIyh:PSLocalTranslationRefVisibilitySboolSSI�h2PSRotationRefVisibilitySboolSSI�h3PSRotationAxisVisibilitySboolSSI9i1PSScalingRefVisibilitySboolSSI�i9PSHierarchicalCenterVisibilitySboolSSI�i6PSGeometricCenterVisibilitySboolSSI
j8PSReferentialSizeSdoubleSNumberSD(@Mj5PSDefaultKeyingGroupSintSIntegerSI�j3PSDefaultKeyingGroupEnumSenumSSI�j%PSPickableSboolSSI�j*PS
TransformableSboolSSI/k(PSCullingModeSenumSSIjk-PSShowTrajectoriesSboolSSI�k"PSliwSBoolSSAUI�kCPSLimbLength 1SNumberSSAUD�?DDY@lShadingCY1lCullingS
CullingOffbt1ModelL�9:SLeftEyelidLowerModelSLimbNode�lVersionI�tProperties70�l+PSRotationActiveSboolSSI"m(PSInheritTypeSenumSSIwmGPS
ScalingMaxSVector3DSVectorSDDD�m8PSDefaultAttributeIndexSintSIntegerSInNPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@onHPSLcl RotationSLcl RotationSSAD�D�D�nEPSVisibility InheritanceSVisibility InheritanceSSI�n,PS	MultiTakeSintSIntegerSI7o-PSManipulationModeSenumSSI�oUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�o/PSSetPreferedAngleSActionSSIp-PSPivotsVisibilitySenumSSIUp5PSRotationLimitsVisibilitySboolSSI�p:PSLocalTranslationRefVisibilitySboolSSI�p2PSRotationRefVisibilitySboolSSIq3PSRotationAxisVisibilitySboolSSI]q1PSScalingRefVisibilitySboolSSI�q9PSHierarchicalCenterVisibilitySboolSSI�q6PSGeometricCenterVisibilitySboolSSI.r8PSReferentialSizeSdoubleSNumberSD(@qr5PSDefaultKeyingGroupSintSIntegerSI�r3PSDefaultKeyingGroupEnumSenumSSI�r%PSPickableSboolSSIs*PS
TransformableSboolSSISs(PSCullingModeSenumSSI�s-PSShowTrajectoriesSboolSSI�s"PSliwSBoolSSAUItCPSLimbLength 1SNumberSSAUD�?DDY@2tShadingCYUtCullingS
CullingOff0|1ModelL�9:SLeftEyelidUpperModelSLimbNode�tVersionI��{Properties70u+PSRotationActiveSboolSSIFu(PSInheritTypeSenumSSI�uGPS
ScalingMaxSVector3DSVectorSDDD�u8PSDefaultAttributeIndexSintSIntegerSI=vNPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @�vEPSVisibility InheritanceSVisibility InheritanceSSI�v,PS	MultiTakeSintSIntegerSIw-PSManipulationModeSenumSSIhwUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�w/PSSetPreferedAngleSActionSSI�w-PSPivotsVisibilitySenumSSI#x5PSRotationLimitsVisibilitySboolSSIkx:PSLocalTranslationRefVisibilitySboolSSI�x2PSRotationRefVisibilitySboolSSI�x3PSRotationAxisVisibilitySboolSSI+y1PSScalingRefVisibilitySboolSSIry9PSHierarchicalCenterVisibilitySboolSSI�y6PSGeometricCenterVisibilitySboolSSI�y8PSReferentialSizeSdoubleSNumberSD(@?z5PSDefaultKeyingGroupSintSIntegerSI�z3PSDefaultKeyingGroupEnumSenumSSI�z%PSPickableSboolSSI�z*PS
TransformableSboolSSI!{(PSCullingModeSenumSSI\{-PSShowTrajectoriesSboolSSI�{"PSliwSBoolSSAUI�{CPSLimbLength 1SNumberSSAUD�?DDY@|ShadingCY#|CullingS
CullingOff��/ModelL�9:SLeftInnerBrowModelSLimbNode�|VersionI���Properties70�|+PSRotationActiveSboolSSI}(PSInheritTypeSenumSSIg}GPS
ScalingMaxSVector3DSVectorSDDD�}8PSDefaultAttributeIndexSintSIntegerSI	~NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@\~EPSVisibility InheritanceSVisibility InheritanceSSI�~,PS	MultiTakeSintSIntegerSI�~-PSManipulationModeSenumSSI4UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDq/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI7�:PSLocalTranslationRefVisibilitySboolSSIw�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI>�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIȁ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIL�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI(�-PSShowTrajectoriesSboolSSIX�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@̃ShadingCY�CullingS
CullingOff�0ModelL�9:SLeftIOuterBrowModelSLimbNodeW�VersionI���Properties70��*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIl�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@a�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIֆ-PSManipulationModeSenumSSI9�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDv�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI<�:PSLocalTranslationRefVisibilitySboolSSI|�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIC�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI͉8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIQ�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-�-PSShowTrajectoriesSboolSSI]�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ыShadingCY�CullingS
CullingOffΓ0ModelL�:SRightInnerBrowModelSLimbNode\�VersionI���Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI9�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIۍNPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@.�EPSVisibility InheritanceSVisibility InheritanceSSIh�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDC�/PSSetPreferedAngleSActionSSI~�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI	�:PSLocalTranslationRefVisibilitySboolSSII�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIɐ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIT�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ݑ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIQ�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI*�"PSliwSBoolSSAUI{�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffԛ1ModelL�:SRightIOuterBrowModelSLimbNode*�VersionI���Properties70{�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI?�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@4�EPSVisibility InheritanceSVisibility InheritanceSSIn�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDI�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIǗ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIO�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIϘ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIZ�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI$�3PSDefaultKeyingGroupEnumSenumSSIW�%PSPickableSboolSSI��*PS
TransformableSboolSSIŚ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI0�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYǛCullingS
CullingOff��2ModelL�:SRightEyelidUpperModelSLimbNode1�VersionI�]�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDT�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @�EPSVisibility InheritanceSVisibility InheritanceSSI=�,PS	MultiTakeSintSIntegerSIx�-PSManipulationModeSenumSSI۞UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIS�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIޟ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI_�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI)�6PSGeometricCenterVisibilitySboolSSIo�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI&�%PSPickableSboolSSI^�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIϢ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIP�CPSLimbLength 1SNumberSSAUD�?DDY@s�ShadingCY��CullingS
CullingOffȫ2ModelL �:SRightEyelidLowerModelSLimbNode�VersionI���Properties70R�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIݤGPS
ScalingMaxSVector3DSVectorSDDD#�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@եHPSLcl RotationSLcl RotationSSAD�D�D(�EPSVisibility InheritanceSVisibility InheritanceSSIb�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD=�/PSSetPreferedAngleSActionSSIx�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIC�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIè1PSScalingRefVisibilitySboolSSI
�9PSHierarchicalCenterVisibilitySboolSSIN�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ש5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIK�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI$�"PSliwSBoolSSAUIu�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��,ModelL(�:SRightCheekModelSLimbNode�VersionI�K�Properties70q�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDB�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@�EPSVisibility InheritanceSVisibility InheritanceSSI+�,PS	MultiTakeSintSIntegerSIf�-PSManipulationModeSenumSSIɮUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIA�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI̯:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIM�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIӰ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI]�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIL�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI>�CPSLimbLength 1SNumberSSAUD�?DDY@a�ShadingCY��CullingS
CullingOff\�.ModelL0�:SRightNostrilModelSLimbNode�VersionI��Properties70<�+PSRotationActiveSboolSSIr�(PSInheritTypeSenumSSIǴGPS
ScalingMaxSVector3DSVectorSDDD
�8PSDefaultAttributeIndexSintSIntegerSIi�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI1�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDѶ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIO�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI׷2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIW�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI(�8PSReferentialSizeSdoubleSNumberSD(@k�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI߹%PSPickableSboolSSI�*PS
TransformableSboolSSIM�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI	�CPSLimbLength 1SNumberSSAUD�?DDY@,�ShadingCYO�CullingS
CullingOff(�/ModelL8�:SRightLipUpperModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSI>�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDټ8PSDefaultAttributeIndexSintSIntegerSI5�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@��EPSVisibility InheritanceSVisibility InheritanceSSI½,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI`�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIؾ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIc�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI#�1PSScalingRefVisibilitySboolSSIj�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@7�5PSDefaultKeyingGroupSintSIntegerSIx�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIT�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��/ModelL@�:SRightShoulderModelSLimbNode��VersionI���Properties70��HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc�*�+PSRotationActiveSboolSSI`�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIX�OPSLcl TranslationSLcl TranslationSSA+D����D��)6@D@
M����IPSLcl RotationSLcl RotationSSA+D<#�D�]�.@D`O����GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?W�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI/�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDl�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI2�:PSLocalTranslationRefVisibilitySboolSSIr�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI9�9PSHierarchicalCenterVisibilitySboolSSI}�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIG�3PSDefaultKeyingGroupEnumSenumSSIz�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI#�-PSShowTrajectoriesSboolSSIS�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��*ModelLH�:SRightArmModelSLimbNodeL�VersionI�{�Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI*�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI"�OPSLcl TranslationSLcl TranslationSSA+D��$@D �\0�D@��վy�IPSLcl RotationSLcl RotationSSA+D`��.@D@�i(@DY�O@��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?!�EPSVisibility InheritanceSVisibility InheritanceSSI[�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD6�/PSSetPreferedAngleSActionSSIq�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI<�2PSRotationRefVisibilitySboolSSI}�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIG�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSID�%PSPickableSboolSSI|�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIn�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��.ModelLP�:SRightForeArmModelSLimbNode�VersionI�I�Properties70��HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIM�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D`�W9�D �<�?D`,���G�IPSLcl RotationSLcl RotationSSA+D�d0:@D�v�P@D�mN���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI)�,PS	MultiTakeSintSIntegerSId�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI?�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI
�2PSRotationRefVisibilitySboolSSIK�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI[�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIJ�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI<�CPSLimbLength 1SNumberSSAUD�?DDY@_�ShadingCY��CullingS
CullingOff�+ModelLX�:SRightHandModelSLimbNode��VersionI���Properties707�+PSRotationActiveSboolSSIm�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIe�OPSLcl TranslationSLcl TranslationSSA+D ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D����?D����D�*�7��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?d�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI<�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDy�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI?�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIF�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIT�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI0�-PSShowTrajectoriesSboolSSI`�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelL`�:SRightHandPinky1ModelSLimbNode`�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q���+PSRotationActiveSboolSSI>�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI6�OPSLcl TranslationSLcl TranslationSSA+D����D�K�ɿD�ۚ���IPSLcl RotationSLcl RotationSSA+D�l&!�D���1@D`l�2@��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?5�EPSVisibility InheritanceSVisibility InheritanceSSIo�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDJ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIP�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI[�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI%�3PSDefaultKeyingGroupEnumSenumSSIX�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI1�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelL��:SRightHandPinky2ModelSLimbNode1�VersionI�`�Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSId�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D���D�(���D`��^�IPSLcl RotationSLcl RotationSSA+D`K�	�D�7��?D�b6@��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI@�,PS	MultiTakeSintSIntegerSI{�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIV�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI!�2PSRotationRefVisibilitySboolSSIb�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI,�6PSGeometricCenterVisibilitySboolSSIr�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI)�%PSPickableSboolSSIa�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIS�CPSLimbLength 1SNumberSSAUD�?DDY@v�ShadingCY��CullingS
CullingOff!1ModelL ��:SRightHandPinky3ModelSLimbNode�VersionI���Properties70T�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD%�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�8$�D��V��D �@���IPSLcl RotationSLcl RotationSSA+D@!��D�z��?D���;@.�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIY�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI\�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIc�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@0�5PSDefaultKeyingGroupSintSIntegerSIq�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIM�-PSShowTrajectoriesSboolSSI}�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYCullingS
CullingOff�0ModelL(��:SRightHandRing1ModelSLimbNode|VersionI��Properties70�HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�$+PSRotationActiveSboolSSIZ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIROPSLcl TranslationSLcl TranslationSSA+D�H=�Djs�?D �m←IPSLcl RotationSLcl RotationSSA+D��#�D��6@D���3@�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?QEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI)UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI,:PSLocalTranslationRefVisibilitySboolSSIl2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI39PSHierarchicalCenterVisibilitySboolSSIw6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIA3PSDefaultKeyingGroupEnumSenumSSIt%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIM"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL0��:SRightHandRing2ModelSLimbNodeL	VersionI�{Properties70�	HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{��	+PSRotationActiveSboolSSI*
(PSInheritTypeSenumSSI
GPS
ScalingMaxSVector3DSVectorSDDD�
8PSDefaultAttributeIndexSintSIntegerSI"OPSLcl TranslationSLcl TranslationSSA+D�'�D ښ��D`K�߿yIPSLcl RotationSLcl RotationSSA+D�
�D�]�?D��5@�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?!EPSVisibility InheritanceSVisibility InheritanceSSI[,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD6
/PSSetPreferedAngleSActionSSIq
-PSPivotsVisibilitySenumSSI�
5PSRotationLimitsVisibilitySboolSSI�
:PSLocalTranslationRefVisibilitySboolSSI<2PSRotationRefVisibilitySboolSSI}3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIG6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSID%PSPickableSboolSSI|*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUInCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff;0ModelL8‰:SRightHandRing3ModelSLimbNodeVersionI��Properties70n+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD?8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@���D�
��D��ݿ�IPSLcl RotationSLcl RotationSSA+D�3��D����?D �m<@HGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIsUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI.5PSRotationLimitsVisibilitySboolSSIv:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI61PSScalingRefVisibilitySboolSSI}9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@J5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI,(PSCullingModeSenumSSIg-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY.CullingS
CullingOff
#2ModelL@lj:SRightHandMiddle1ModelSLimbNode�VersionI��"Properties70HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�@+PSRotationActiveSboolSSIv(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSInOPSLcl TranslationSLcl TranslationSSA+D�QB�D<��?D@��?�IPSLcl RotationSLcl RotationSSA+D�u*�?D�X��D���3@GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?mEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIEUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIH:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI 1PSScalingRefVisibilitySboolSSIO 9PSHierarchicalCenterVisibilitySboolSSI� 6PSGeometricCenterVisibilitySboolSSI� 8PSReferentialSizeSdoubleSNumberSD(@!5PSDefaultKeyingGroupSintSIntegerSI]!3PSDefaultKeyingGroupEnumSenumSSI�!%PSPickableSboolSSI�!*PS
TransformableSboolSSI�!(PSCullingModeSenumSSI9"-PSShowTrajectoriesSboolSSIi""PSliwSBoolSSAUI�"CPSLimbLength 1SNumberSSAUD�?DDY@�"ShadingCY#CullingS
CullingOff�+2ModelLH̉:SRightHandMiddle2ModelSLimbNodej#VersionI��+Properties70�#HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9�$+PSRotationActiveSboolSSIH$(PSInheritTypeSenumSSI�$GPS
ScalingMaxSVector3DSVectorSDDD�$8PSDefaultAttributeIndexSintSIntegerSI@%OPSLcl TranslationSLcl TranslationSSA+D`��D`��?D@��?�%IPSLcl RotationSLcl RotationSSA+D�c��?D`��}�D���8@�%GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�??&EPSVisibility InheritanceSVisibility InheritanceSSIy&,PS	MultiTakeSintSIntegerSI�&-PSManipulationModeSenumSSI'UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDT'/PSSetPreferedAngleSActionSSI�'-PSPivotsVisibilitySenumSSI�'5PSRotationLimitsVisibilitySboolSSI(:PSLocalTranslationRefVisibilitySboolSSIZ(2PSRotationRefVisibilitySboolSSI�(3PSRotationAxisVisibilitySboolSSI�(1PSScalingRefVisibilitySboolSSI!)9PSHierarchicalCenterVisibilitySboolSSIe)6PSGeometricCenterVisibilitySboolSSI�)8PSReferentialSizeSdoubleSNumberSD(@�)5PSDefaultKeyingGroupSintSIntegerSI/*3PSDefaultKeyingGroupEnumSenumSSIb*%PSPickableSboolSSI�**PS
TransformableSboolSSI�*(PSCullingModeSenumSSI+-PSShowTrajectoriesSboolSSI;+"PSliwSBoolSSAUI�+CPSLimbLength 1SNumberSSAUD�?DDY@�+ShadingCY�+CullingS
CullingOff[42ModelLPщ:SRightHandMiddle3ModelSLimbNode<,VersionI�4Properties70�,+PSRotationActiveSboolSSI�,(PSInheritTypeSenumSSI-GPS
ScalingMaxSVector3DSVectorSDDD_-8PSDefaultAttributeIndexSintSIntegerSI�-OPSLcl TranslationSLcl TranslationSSA+D >u
�D@�&�D�I��?.IPSLcl RotationSLcl RotationSSA+D`R;�?D�@^ÿD ��@@h.GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�.EPSVisibility InheritanceSVisibility InheritanceSSI�.,PS	MultiTakeSintSIntegerSI0/-PSManipulationModeSenumSSI�/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�//PSSetPreferedAngleSActionSSI0-PSPivotsVisibilitySenumSSIN05PSRotationLimitsVisibilitySboolSSI�0:PSLocalTranslationRefVisibilitySboolSSI�02PSRotationRefVisibilitySboolSSI13PSRotationAxisVisibilitySboolSSIV11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI�16PSGeometricCenterVisibilitySboolSSI'28PSReferentialSizeSdoubleSNumberSD(@j25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI�2%PSPickableSboolSSI3*PS
TransformableSboolSSIL3(PSCullingModeSenumSSI�3-PSShowTrajectoriesSboolSSI�3"PSliwSBoolSSAUI4CPSLimbLength 1SNumberSSAUD�?DDY@+4ShadingCYN4CullingS
CullingOff,=1ModelLX։:SRightHandIndex1ModelSLimbNode�4VersionI��<Properties70&5HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��_5+PSRotationActiveSboolSSI�5(PSInheritTypeSenumSSI�5GPS
ScalingMaxSVector3DSVectorSDDD068PSDefaultAttributeIndexSintSIntegerSI�6OPSLcl TranslationSLcl TranslationSSA+D�e��D`zҿ�D��y@�6IPSLcl RotationSLcl RotationSSA+DV�?D@^/,�D@�1&@97GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�7EPSVisibility InheritanceSVisibility InheritanceSSI�7,PS	MultiTakeSintSIntegerSI8-PSManipulationModeSenumSSId8UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�8/PSSetPreferedAngleSActionSSI�8-PSPivotsVisibilitySenumSSI95PSRotationLimitsVisibilitySboolSSIg9:PSLocalTranslationRefVisibilitySboolSSI�92PSRotationRefVisibilitySboolSSI�93PSRotationAxisVisibilitySboolSSI':1PSScalingRefVisibilitySboolSSIn:9PSHierarchicalCenterVisibilitySboolSSI�:6PSGeometricCenterVisibilitySboolSSI�:8PSReferentialSizeSdoubleSNumberSD(@;;5PSDefaultKeyingGroupSintSIntegerSI|;3PSDefaultKeyingGroupEnumSenumSSI�;%PSPickableSboolSSI�;*PS
TransformableSboolSSI<(PSCullingModeSenumSSIX<-PSShowTrajectoriesSboolSSI�<"PSliwSBoolSSAUI�<CPSLimbLength 1SNumberSSAUD�?DDY@�<ShadingCY=CullingS
CullingOff�E1ModelL`ۉ:SRightHandIndex2ModelSLimbNode�=VersionI��EProperties70�=HPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�0>+PSRotationActiveSboolSSIf>(PSInheritTypeSenumSSI�>GPS
ScalingMaxSVector3DSVectorSDDD?8PSDefaultAttributeIndexSintSIntegerSI^?OPSLcl TranslationSLcl TranslationSSA+D���
�Dഖ�?D�!C�?�?IPSLcl RotationSLcl RotationSSA+D���@D �8�D �69@
@GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?]@EPSVisibility InheritanceSVisibility InheritanceSSI�@,PS	MultiTakeSintSIntegerSI�@-PSManipulationModeSenumSSI5AUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDrA/PSSetPreferedAngleSActionSSI�A-PSPivotsVisibilitySenumSSI�A5PSRotationLimitsVisibilitySboolSSI8B:PSLocalTranslationRefVisibilitySboolSSIxB2PSRotationRefVisibilitySboolSSI�B3PSRotationAxisVisibilitySboolSSI�B1PSScalingRefVisibilitySboolSSI?C9PSHierarchicalCenterVisibilitySboolSSI�C6PSGeometricCenterVisibilitySboolSSI�C8PSReferentialSizeSdoubleSNumberSD(@D5PSDefaultKeyingGroupSintSIntegerSIMD3PSDefaultKeyingGroupEnumSenumSSI�D%PSPickableSboolSSI�D*PS
TransformableSboolSSI�D(PSCullingModeSenumSSI)E-PSShowTrajectoriesSboolSSIYE"PSliwSBoolSSAUI�ECPSLimbLength 1SNumberSSAUD�?DDY@�EShadingCY�ECullingS
CullingOffxN1ModelLh��:SRightHandIndex3ModelSLimbNodeYFVersionI�2NProperties70�F+PSRotationActiveSboolSSI�F(PSInheritTypeSenumSSI6GGPS
ScalingMaxSVector3DSVectorSDDD|G8PSDefaultAttributeIndexSintSIntegerSI�GOPSLcl TranslationSLcl TranslationSSA+D�.�D��߿D@���?0HIPSLcl RotationSLcl RotationSSA+D�!��?D�C��D�5@�HGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�HEPSVisibility InheritanceSVisibility InheritanceSSII,PS	MultiTakeSintSIntegerSIMI-PSManipulationModeSenumSSI�IUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�I/PSSetPreferedAngleSActionSSI(J-PSPivotsVisibilitySenumSSIkJ5PSRotationLimitsVisibilitySboolSSI�J:PSLocalTranslationRefVisibilitySboolSSI�J2PSRotationRefVisibilitySboolSSI4K3PSRotationAxisVisibilitySboolSSIsK1PSScalingRefVisibilitySboolSSI�K9PSHierarchicalCenterVisibilitySboolSSI�K6PSGeometricCenterVisibilitySboolSSIDL8PSReferentialSizeSdoubleSNumberSD(@�L5PSDefaultKeyingGroupSintSIntegerSI�L3PSDefaultKeyingGroupEnumSenumSSI�L%PSPickableSboolSSI3M*PS
TransformableSboolSSIiM(PSCullingModeSenumSSI�M-PSShowTrajectoriesSboolSSI�M"PSliwSBoolSSAUI%NCPSLimbLength 1SNumberSSAUD�?DDY@HNShadingCYkNCullingS
CullingOffIW1ModelLp�:SRightHandThumb1ModelSLimbNode�NVersionI�WProperties70COHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D��*�|O+PSRotationActiveSboolSSI�O(PSInheritTypeSenumSSIPGPS
ScalingMaxSVector3DSVectorSDDDMP8PSDefaultAttributeIndexSintSIntegerSI�POPSLcl TranslationSLcl TranslationSSA+D�~��D����D༯@QIPSLcl RotationSLcl RotationSSA+D@�B)@D � �D �@VQGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�QEPSVisibility InheritanceSVisibility InheritanceSSI�Q,PS	MultiTakeSintSIntegerSIR-PSManipulationModeSenumSSI�RUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�R/PSSetPreferedAngleSActionSSI�R-PSPivotsVisibilitySenumSSI<S5PSRotationLimitsVisibilitySboolSSI�S:PSLocalTranslationRefVisibilitySboolSSI�S2PSRotationRefVisibilitySboolSSIT3PSRotationAxisVisibilitySboolSSIDT1PSScalingRefVisibilitySboolSSI�T9PSHierarchicalCenterVisibilitySboolSSI�T6PSGeometricCenterVisibilitySboolSSIU8PSReferentialSizeSdoubleSNumberSD(@XU5PSDefaultKeyingGroupSintSIntegerSI�U3PSDefaultKeyingGroupEnumSenumSSI�U%PSPickableSboolSSIV*PS
TransformableSboolSSI:V(PSCullingModeSenumSSIuV-PSShowTrajectoriesSboolSSI�V"PSliwSBoolSSAUI�VCPSLimbLength 1SNumberSSAUD�?DDY@WShadingCY<WCullingS
CullingOff�_1ModelL��:SRightHandThumb2ModelSLimbNode�WVersionI�~_Properties70�W+PSRotationActiveSboolSSI-X(PSInheritTypeSenumSSI�XGPS
ScalingMaxSVector3DSVectorSDDD�X8PSDefaultAttributeIndexSintSIntegerSI%YOPSLcl TranslationSLcl TranslationSSA+D`�2��D`���D��@|YIPSLcl RotationSLcl RotationSSA+D@���?D �� �D`*п�YGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?$ZEPSVisibility InheritanceSVisibility InheritanceSSI^Z,PS	MultiTakeSintSIntegerSI�Z-PSManipulationModeSenumSSI�ZUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD9[/PSSetPreferedAngleSActionSSIt[-PSPivotsVisibilitySenumSSI�[5PSRotationLimitsVisibilitySboolSSI�[:PSLocalTranslationRefVisibilitySboolSSI?\2PSRotationRefVisibilitySboolSSI�\3PSRotationAxisVisibilitySboolSSI�\1PSScalingRefVisibilitySboolSSI]9PSHierarchicalCenterVisibilitySboolSSIJ]6PSGeometricCenterVisibilitySboolSSI�]8PSReferentialSizeSdoubleSNumberSD(@�]5PSDefaultKeyingGroupSintSIntegerSI^3PSDefaultKeyingGroupEnumSenumSSIG^%PSPickableSboolSSI^*PS
TransformableSboolSSI�^(PSCullingModeSenumSSI�^-PSShowTrajectoriesSboolSSI _"PSliwSBoolSSAUIq_CPSLimbLength 1SNumberSSAUD�?DDY@�_ShadingCY�_CullingS
CullingOff�h1ModelL��:SRightHandThumb3ModelSLimbNode `VersionI�OhProperties70�`HPSPreRotationSVector3DSVectorSD$�rOϸ>DD�`+PSRotationActiveSboolSSI�`(PSInheritTypeSenumSSISaGPS
ScalingMaxSVector3DSVectorSDDD�a8PSDefaultAttributeIndexSintSIntegerSI�aOPSLcl TranslationSLcl TranslationSSA+D@5^�D �r�D@��@MbIPSLcl RotationSLcl RotationSSA+D@C@D`99�D�w��bGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�bEPSVisibility InheritanceSVisibility InheritanceSSI/c,PS	MultiTakeSintSIntegerSIjc-PSManipulationModeSenumSSI�cUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD
d/PSSetPreferedAngleSActionSSIEd-PSPivotsVisibilitySenumSSI�d5PSRotationLimitsVisibilitySboolSSI�d:PSLocalTranslationRefVisibilitySboolSSIe2PSRotationRefVisibilitySboolSSIQe3PSRotationAxisVisibilitySboolSSI�e1PSScalingRefVisibilitySboolSSI�e9PSHierarchicalCenterVisibilitySboolSSIf6PSGeometricCenterVisibilitySboolSSIaf8PSReferentialSizeSdoubleSNumberSD(@�f5PSDefaultKeyingGroupSintSIntegerSI�f3PSDefaultKeyingGroupEnumSenumSSIg%PSPickableSboolSSIPg*PS
TransformableSboolSSI�g(PSCullingModeSenumSSI�g-PSShowTrajectoriesSboolSSI�g"PSliwSBoolSSAUIBhCPSLimbLength 1SNumberSSAUD�?DDY@ehShadingCY�hCullingS
CullingOffcq.ModelL��:SLeftShoulderModelSLimbNode�hVersionI�qProperties70]iHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9��i+PSRotationActiveSboolSSI�i(PSInheritTypeSenumSSI!jGPS
ScalingMaxSVector3DSVectorSDDDgj8PSDefaultAttributeIndexSintSIntegerSI�jOPSLcl TranslationSLcl TranslationSSA+D��@D@�)6@D@
M��kIPSLcl RotationSLcl RotationSSA+D`@D@� �D`% �pkGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�kEPSVisibility InheritanceSVisibility InheritanceSSI�k,PS	MultiTakeSintSIntegerSI8l-PSManipulationModeSenumSSI�lUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�l/PSSetPreferedAngleSActionSSIm-PSPivotsVisibilitySenumSSIVm5PSRotationLimitsVisibilitySboolSSI�m:PSLocalTranslationRefVisibilitySboolSSI�m2PSRotationRefVisibilitySboolSSIn3PSRotationAxisVisibilitySboolSSI^n1PSScalingRefVisibilitySboolSSI�n9PSHierarchicalCenterVisibilitySboolSSI�n6PSGeometricCenterVisibilitySboolSSI/o8PSReferentialSizeSdoubleSNumberSD(@ro5PSDefaultKeyingGroupSintSIntegerSI�o3PSDefaultKeyingGroupEnumSenumSSI�o%PSPickableSboolSSIp*PS
TransformableSboolSSITp(PSCullingModeSenumSSI�p-PSShowTrajectoriesSboolSSI�p"PSliwSBoolSSAUIqCPSLimbLength 1SNumberSSAUD�?DDY@3qShadingCYVqCullingS
CullingOff,z)ModelL���:SLeftArmModelSLimbNode�qVersionI��yProperties70&rHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@_r+PSRotationActiveSboolSSI�r(PSInheritTypeSenumSSI�rGPS
ScalingMaxSVector3DSVectorSDDD0s8PSDefaultAttributeIndexSintSIntegerSI�sOPSLcl TranslationSLcl TranslationSSA+D��$@D��3~>DlqT��sIPSLcl RotationSLcl RotationSSA+D �?@D@�:@D�9Q�9tGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�tEPSVisibility InheritanceSVisibility InheritanceSSI�t,PS	MultiTakeSintSIntegerSIu-PSManipulationModeSenumSSIduUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�u/PSSetPreferedAngleSActionSSI�u-PSPivotsVisibilitySenumSSIv5PSRotationLimitsVisibilitySboolSSIgv:PSLocalTranslationRefVisibilitySboolSSI�v2PSRotationRefVisibilitySboolSSI�v3PSRotationAxisVisibilitySboolSSI'w1PSScalingRefVisibilitySboolSSInw9PSHierarchicalCenterVisibilitySboolSSI�w6PSGeometricCenterVisibilitySboolSSI�w8PSReferentialSizeSdoubleSNumberSD(@;x5PSDefaultKeyingGroupSintSIntegerSI|x3PSDefaultKeyingGroupEnumSenumSSI�x%PSPickableSboolSSI�x*PS
TransformableSboolSSIy(PSCullingModeSenumSSIXy-PSShowTrajectoriesSboolSSI�y"PSliwSBoolSSAUI�yCPSLimbLength 1SNumberSSAUD�?DDY@�yShadingCYzCullingS
CullingOff��-ModelL���:SLeftForeArmModelSLimbNode�zVersionI���Properties70�zHPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?,{+PSRotationActiveSboolSSIb{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDD�{8PSDefaultAttributeIndexSintSIntegerSIZ|OPSLcl TranslationSLcl TranslationSSA+D��g9@D �F�D��G>�|IPSLcl RotationSLcl RotationSSA+D@51�Dr��D �R�}GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?Y}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI1~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDn~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI4:PSLocalTranslationRefVisibilitySboolSSIt2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI;�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIŀ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSII�3PSDefaultKeyingGroupEnumSenumSSI|�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI%�-PSShowTrajectoriesSboolSSIU�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ɂShadingCY�CullingS
CullingOffm�*ModelL���:SLeftHandModelSLimbNodeN�VersionI�'�Properties70��+PSRotationActiveSboolSSIփ(PSInheritTypeSenumSSI+�GPS
ScalingMaxSVector3DSVectorSDDDq�8PSDefaultAttributeIndexSintSIntegerSI΄OPSLcl TranslationSLcl TranslationSSA+D���8@D2�G�D��>%�IPSLcl RotationSLcl RotationSSA+D@�E��D@Uq@D�ӷ'�z�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ͅEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIB�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI`�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI)�3PSRotationAxisVisibilitySboolSSIh�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI9�8PSReferentialSizeSdoubleSNumberSD(@|�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI(�*PS
TransformableSboolSSI^�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIɊ"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@=�ShadingCY`�CullingS
CullingOff=�0ModelL���:SLeftHandPinky1ModelSLimbNodeȋVersionI���Properties707�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@DU�Z~Q��p�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDA�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D �C@D�S
�D@�	���IPSLcl RotationSLcl RotationSSA+D��@D�b�(�D�aB�J�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI׎,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIu�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI0�5PSRotationLimitsVisibilitySboolSSIx�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI8�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIÑ6PSGeometricCenterVisibilitySboolSSI	�8PSReferentialSizeSdoubleSNumberSD(@L�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI.�(PSCullingModeSenumSSIi�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@
�ShadingCY0�CullingS
CullingOff
�0ModelL��:SLeftHandPinky2ModelSLimbNode��VersionI�ǜProperties70�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?@�+PSRotationActiveSboolSSIv�(PSInheritTypeSenumSSI˕GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIn�OPSLcl TranslationSLcl TranslationSSA+D���@D �Ji�D`�¿ŖIPSLcl RotationSLcl RotationSSA+D`�3@D@��?D���A��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?m�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIE�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIH�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIə3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIO�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIٚ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI]�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIț*PS
TransformableSboolSSI��(PSCullingModeSenumSSI9�-PSShowTrajectoriesSboolSSIi�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ݜShadingCY�CullingS
CullingOff��0ModelL�	�:SLeftHandPinky3ModelSLimbNodeh�VersionI�A�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIE�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@�s@D ��D�D5}�>?�IPSLcl RotationSLcl RotationSSA+D`0a
@D O��?D�V�1���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI!�,PS	MultiTakeSintSIntegerSI\�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI7�-PSPivotsVisibilitySenumSSIz�5PSRotationLimitsVisibilitySboolSSI¡:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIC�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIɢ9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIS�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIף3PSDefaultKeyingGroupEnumSenumSSI
�%PSPickableSboolSSIB�*PS
TransformableSboolSSIx�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI4�CPSLimbLength 1SNumberSSAUD�?DDY@W�ShadingCYz�CullingS
CullingOffV�/ModelL��:SLeftHandRing1ModelSLimbNode�VersionI��Properties70P�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDZ�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��@D�P�׿D EB��IPSLcl RotationSLcl RotationSSA+D��@D����D`N�@�c�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI+�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD˩/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSII�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIѪ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIQ�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIܫ6PSGeometricCenterVisibilitySboolSSI"�8PSReferentialSizeSdoubleSNumberSD(@e�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI٬%PSPickableSboolSSI�*PS
TransformableSboolSSIG�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@&�ShadingCYI�CullingS
CullingOff%�/ModelL��:SLeftHandRing2ModelSLimbNode��VersionI�߶Properties70�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{�X�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD)�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D A@D�Ua�D`;�̿ݰIPSLcl RotationSLcl RotationSSA+DN7�?D��?D``�A�2�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI]�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIղ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI`�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI �1PSScalingRefVisibilitySboolSSIg�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@4�5PSDefaultKeyingGroupSintSIntegerSIu�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSIQ�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIҶCPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��/ModelL��:SLeftHandRing3ModelSLimbNode�VersionI�X�Properties70ѷ+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI\�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��@D4�Q>D@���V�IPSLcl RotationSLcl RotationSSA+D����?D�[$�?D��1���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI8�,PS	MultiTakeSintSIntegerSIs�-PSManipulationModeSenumSSIֺUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIN�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIٻ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIZ�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI$�6PSGeometricCenterVisibilitySboolSSIj�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI!�%PSPickableSboolSSIY�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIʾ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIK�CPSLimbLength 1SNumberSSAUD�?DDY@n�ShadingCY��CullingS
CullingOffo�1ModelL �<SLeftHandMiddle1ModelSLimbNode��VersionI�)�Properties70i�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI-�GPS
ScalingMaxSVector3DSVectorSDDDs�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�h@D`5!ȿD�9�?'�IPSLcl RotationSLcl RotationSSA+D`���D��?D�׵A�|�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI	�,PS	MultiTakeSintSIntegerSID�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIb�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI+�3PSRotationAxisVisibilitySboolSSIj�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI;�8PSReferentialSizeSdoubleSNumberSD(@~�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI*�*PS
TransformableSboolSSI`�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@?�ShadingCYb�CullingS
CullingOff@�1ModelL(��<SLeftHandMiddle2ModelSLimbNode��VersionI���Properties70:�HPSPreRotationSVector3DSVectorSD��`�տD`���@D8�#W'9�s�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDD�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D Q�@D`*s??D��ǥ���IPSLcl RotationSLcl RotationSSA+D�u�D�|�׿D@�D�M�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIx�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI3�5PSRotationLimitsVisibilitySboolSSI{�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI;�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@O�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI1�(PSCullingModeSenumSSIl�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY3�CullingS
CullingOff��1ModelL0��<SLeftHandMiddle3ModelSLimbNode��VersionI�u�Properties70��+PSRotationActiveSboolSSI$�(PSInheritTypeSenumSSIy�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D �+@D�Vr��D@�.�>s�IPSLcl RotationSLcl RotationSSA+D�B�D��4ƿD@��6���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIU�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0�/PSSetPreferedAngleSActionSSIk�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI6�2PSRotationRefVisibilitySboolSSIw�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIA�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI>�%PSPickableSboolSSIv�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIh�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelL8��<SLeftHandIndex1ModelSLimbNode�VersionI�E�Properties70��HPSPreRotationSVector3DSVectorSD4�t�c�D���PNk"�Dʴ	A����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSII�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��@D���D�B
@C�IPSLcl RotationSLcl RotationSSA+D`l�"�D���@D�̃:���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI%�,PS	MultiTakeSintSIntegerSI`�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI;�-PSPivotsVisibilitySenumSSI~�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIG�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIW�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIF�*PS
TransformableSboolSSI|�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI8�CPSLimbLength 1SNumberSSAUD�?DDY@[�ShadingCY~�CullingS
CullingOff[�0ModelL@�<SLeftHandIndex2ModelSLimbNode��VersionI��Properties70U�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD_�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�{�@D`�ft?D`�Z�?�IPSLcl RotationSLcl RotationSSA+D����D`��D�B�C�h�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI0�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIN�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIV�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI'�8PSReferentialSizeSdoubleSNumberSD(@j�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIL�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@+�ShadingCYN�CullingS
CullingOff��0ModelLH	�<SLeftHandIndex3ModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSI>�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI6�OPSLcl TranslationSLcl TranslationSSA+D��_@D�����D@��վ��IPSLcl RotationSLcl RotationSSA+D�u�D���?D ��"���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?5�EPSVisibility InheritanceSVisibility InheritanceSSIo�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDJ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIP�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI[�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI%�3PSDefaultKeyingGroupEnumSenumSSIX�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI1�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelLP�<SLeftHandThumb1ModelSLimbNode0�VersionI�_�Properties70��HPSPreRotationSVector3DSVectorSDD��t[��?D2��*���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIc�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D���?D���D��l@]�IPSLcl RotationSLcl RotationSSA+D���+@D�
@D}f���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI?�,PS	MultiTakeSintSIntegerSIz�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIU�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI �2PSRotationRefVisibilitySboolSSIa�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI+�6PSGeometricCenterVisibilitySboolSSIq�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI(�%PSPickableSboolSSI`�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIR�CPSLimbLength 1SNumberSSAUD�?DDY@u�ShadingCY��CullingS
CullingOff0ModelLX�<SLeftHandThumb2ModelSLimbNode�VersionI��Properties70R�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD#�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D`�2�?D`���D`
�@��IPSLcl RotationSLcl RotationSSA+D����?D`0� @D �[�?,�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIWUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIZ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIa9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@.5PSDefaultKeyingGroupSintSIntegerSIo3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIK-PSShowTrajectoriesSboolSSI{"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�
0ModelL`�<SLeftHandThumb3ModelSLimbNodezVersionI��
Properties70�HPSPreRotationSVector3DSVectorSD��cܥ�>DD"+PSRotationActiveSboolSSIX(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIPOPSLcl TranslationSLcl TranslationSSA+D@5^@D �r�D@��@�IPSLcl RotationSLcl RotationSSA+D�C@D�99@D`�s@�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?OEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI'	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDd	/PSSetPreferedAngleSActionSSI�	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI*
:PSLocalTranslationRefVisibilitySboolSSIj
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI19PSHierarchicalCenterVisibilitySboolSSIu6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI?3PSDefaultKeyingGroupEnumSenumSSIr%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI
-PSShowTrajectoriesSboolSSIK
"PSliwSBoolSSAUI�
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOffe,ModelLh�<SRightUpLegModelSLimbNodeFVersionI�Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI#GPS
ScalingMaxSVector3DSVectorSDDDi8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@.�D �C�D0�IPSLcl RotationSLcl RotationSSA+D -@D@��(�D`��?rGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI:-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIX5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI!3PSRotationAxisVisibilitySboolSSI`1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI18PSReferentialSizeSdoubleSNumberSD(@t5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI *PS
TransformableSboolSSIV(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@5ShadingCYXCullingS
CullingOff�*ModelLp"�<SRightLegModelSLimbNode�VersionI��Properties70+PSRotationActiveSboolSSIB(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI:OPSLcl TranslationSLcl TranslationSSA+D`�p�D@�tD�D@�e���IPSLcl RotationSLcl RotationSSA+D�OB@D ��3@D��b@�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?9EPSVisibility InheritanceSVisibility InheritanceSSIs,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDN/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIT2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSI_6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI)3PSDefaultKeyingGroupEnumSenumSSI\%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSI5"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOffN'+ModelLx'�<SRightFootModelSLimbNode/VersionI�'Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI GPS
ScalingMaxSVector3DSVectorSDDDR 8PSDefaultAttributeIndexSintSIntegerSI� OPSLcl TranslationSLcl TranslationSSA+D`V}�D@e(E�D |�!IPSLcl RotationSLcl RotationSSA+D�TF1@D���D �$@[!GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�!EPSVisibility InheritanceSVisibility InheritanceSSI�!,PS	MultiTakeSintSIntegerSI#"-PSManipulationModeSenumSSI�"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSIA#5PSRotationLimitsVisibilitySboolSSI�#:PSLocalTranslationRefVisibilitySboolSSI�#2PSRotationRefVisibilitySboolSSI
$3PSRotationAxisVisibilitySboolSSII$1PSScalingRefVisibilitySboolSSI�$9PSHierarchicalCenterVisibilitySboolSSI�$6PSGeometricCenterVisibilitySboolSSI%8PSReferentialSizeSdoubleSNumberSD(@]%5PSDefaultKeyingGroupSintSIntegerSI�%3PSDefaultKeyingGroupEnumSenumSSI�%%PSPickableSboolSSI	&*PS
TransformableSboolSSI?&(PSCullingModeSenumSSIz&-PSShowTrajectoriesSboolSSI�&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@'ShadingCYA'CullingS
CullingOff/+ModelL�:SRightToesModelSLimbNode�'VersionI��.Properties70�'+PSRotationActiveSboolSSI,((PSInheritTypeSenumSSI�(GPS
ScalingMaxSVector3DSVectorSDDD�(8PSDefaultAttributeIndexSintSIntegerSI#)NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@v)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSIN*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI	+5PSRotationLimitsVisibilitySboolSSIQ+:PSLocalTranslationRefVisibilitySboolSSI�+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI,1PSScalingRefVisibilitySboolSSIX,9PSHierarchicalCenterVisibilitySboolSSI�,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@%-5PSDefaultKeyingGroupSintSIntegerSIf-3PSDefaultKeyingGroupEnumSenumSSI�-%PSPickableSboolSSI�-*PS
TransformableSboolSSI.(PSCullingModeSenumSSIB.-PSShowTrajectoriesSboolSSIr."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY	/CullingS
CullingOff�7+ModelL�:SLeftUpLegModelSLimbNodel/VersionI�E7Properties70�/+PSRotationActiveSboolSSI�/(PSInheritTypeSenumSSII0GPS
ScalingMaxSVector3DSVectorSDDD�08PSDefaultAttributeIndexSintSIntegerSI�0OPSLcl TranslationSLcl TranslationSSA+D`.@D��C�DP�C1IPSLcl RotationSLcl RotationSSA+D@�O�D@v��?D����1GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�1EPSVisibility InheritanceSVisibility InheritanceSSI%2,PS	MultiTakeSintSIntegerSI`2-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD3/PSSetPreferedAngleSActionSSI;3-PSPivotsVisibilitySenumSSI~35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI42PSRotationRefVisibilitySboolSSIG43PSRotationAxisVisibilitySboolSSI�41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI56PSGeometricCenterVisibilitySboolSSIW58PSReferentialSizeSdoubleSNumberSD(@�55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI6%PSPickableSboolSSIF6*PS
TransformableSboolSSI|6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI87CPSLimbLength 1SNumberSSAUD�?DDY@[7ShadingCY~7CullingS
CullingOff�?)ModelL�:SLeftLegModelSLimbNode�7VersionI��?Properties7018+PSRotationActiveSboolSSIg8(PSInheritTypeSenumSSI�8GPS
ScalingMaxSVector3DSVectorSDDD98PSDefaultAttributeIndexSintSIntegerSI_9OPSLcl TranslationSLcl TranslationSSA+D�p@D �tD�D@�e���9IPSLcl RotationSLcl RotationSSA+D�`?.@D�;�?Du!�?:GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?^:EPSVisibility InheritanceSVisibility InheritanceSSI�:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI6;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDs;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI�;5PSRotationLimitsVisibilitySboolSSI9<:PSLocalTranslationRefVisibilitySboolSSIy<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI@=9PSHierarchicalCenterVisibilitySboolSSI�=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@
>5PSDefaultKeyingGroupSintSIntegerSIN>3PSDefaultKeyingGroupEnumSenumSSI�>%PSPickableSboolSSI�>*PS
TransformableSboolSSI�>(PSCullingModeSenumSSI*?-PSShowTrajectoriesSboolSSIZ?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY�?CullingS
CullingOffrH*ModelL �:SLeftFootModelSLimbNodeS@VersionI�,HProperties70�@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSI0AGPS
ScalingMaxSVector3DSVectorSDDDvA8PSDefaultAttributeIndexSintSIntegerSI�AOPSLcl TranslationSLcl TranslationSSA+D`V}�?D@e(E�D |�*BIPSLcl RotationSLcl RotationSSA+D`8?$�D�>пD`h�'�BGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�BEPSVisibility InheritanceSVisibility InheritanceSSIC,PS	MultiTakeSintSIntegerSIGC-PSManipulationModeSenumSSI�CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI"D-PSPivotsVisibilitySenumSSIeD5PSRotationLimitsVisibilitySboolSSI�D:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSI.E3PSRotationAxisVisibilitySboolSSImE1PSScalingRefVisibilitySboolSSI�E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSI>F8PSReferentialSizeSdoubleSNumberSD(@�F5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSI-G*PS
TransformableSboolSSIcG(PSCullingModeSenumSSI�G-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUIHCPSLimbLength 1SNumberSSAUD�?DDY@BHShadingCYeHCullingS
CullingOff9P*ModelL(�:SLeftToesModelSLimbNode�HVersionI��OProperties70I+PSRotationActiveSboolSSIOI(PSInheritTypeSenumSSI�IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSIFJNPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@�JEPSVisibility InheritanceSVisibility InheritanceSSI�J,PS	MultiTakeSintSIntegerSIK-PSManipulationModeSenumSSIqKUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�K/PSSetPreferedAngleSActionSSI�K-PSPivotsVisibilitySenumSSI,L5PSRotationLimitsVisibilitySboolSSItL:PSLocalTranslationRefVisibilitySboolSSI�L2PSRotationRefVisibilitySboolSSI�L3PSRotationAxisVisibilitySboolSSI4M1PSScalingRefVisibilitySboolSSI{M9PSHierarchicalCenterVisibilitySboolSSI�M6PSGeometricCenterVisibilitySboolSSIN8PSReferentialSizeSdoubleSNumberSD(@HN5PSDefaultKeyingGroupSintSIntegerSI�N3PSDefaultKeyingGroupEnumSenumSSI�N%PSPickableSboolSSI�N*PS
TransformableSboolSSI*O(PSCullingModeSenumSSIeO-PSShowTrajectoriesSboolSSI�O"PSliwSBoolSSAUI�OCPSLimbLength 1SNumberSSAUD�?DDY@	PShadingCY,PCullingS
CullingOff�Q0AnimationStackL�;SRun_JumpUpHigh_RunAnimStackS�QProperties70�P0PS
LocalStartSKTimeSTimeSL�Ig�RQ/PS	LocalStopSKTimeSTimeSL@�
�ZQ4PSReferenceStartSKTimeSTimeSL�Ig�R�Q3PS
ReferenceStopSKTimeSTimeSL@�
�aT>AnimationLayerL�9S+Run_JumpUpHigh_Run:BaseAnimationAnimLayerSTTProperties70vRAPSColorSColorRGBSColorSD�������?DD�������?�R5PSBlendModeBypassS	ULongLongSSL�R,PS	MultiTakeSintSIntegerSI,S+PSmLayerIDSintSIntegerSIcS)PSMutedForSoloSboolSSI�S*PS
MutedByParentSboolSSI�S+PSLockedByParentSboolSSIT5PSParentCollapseVisibilitySboolSSIGT"PSEmptySboolSSI
W;AnimationLayerLXԯ9S(Run_JumpUpHigh_Run:AnimLayer1AnimLayerS�VProperties70UAPSColorSColorRGBSColorSD�������?DD�������?bU5PSBlendModeBypassS	ULongLongSSL�U,PS	MultiTakeSintSIntegerSI�U+PSmLayerIDSintSIntegerSIV)PSMutedForSoloSboolSSIDV*PS
MutedByParentSboolSSI}V+PSLockedByParentSboolSSI�V5PSParentCollapseVisibilitySboolSSI�V"PSEmptySboolSSI�Y;AnimationLayerL�	�9S(Run_JumpUpHigh_Run:AnimLayer2AnimLayerS�YProperties70�WAPSColorSColorRGBSColorSD�������?DD�������?X5PSBlendModeBypassS	ULongLongSSLEX,PS	MultiTakeSintSIntegerSI~X+PSmLayerIDSintSIntegerSI�X)PSMutedForSoloSboolSSI�X*PS
MutedByParentSboolSSI&Y+PSLockedByParentSboolSSIiY5PSParentCollapseVisibilitySboolSSI�Y"PSEmptySboolSSI\\;AnimationLayerL,�9S(Run_JumpUpHigh_Run:AnimLayer3AnimLayerSO\Properties70qZAPSColorSColorRGBSColorSD�������?DD�������?�Z5PSBlendModeBypassS	ULongLongSSL�Z,PS	MultiTakeSintSIntegerSI'[+PSmLayerIDSintSIntegerSI^[)PSMutedForSoloSboolSSI�[*PS
MutedByParentSboolSSI�[+PSLockedByParentSboolSSI\5PSParentCollapseVisibilitySboolSSIB\"PSEmptySboolSSI�]#AnimationCurveNodeLh�:STAnimCurveNodeS�]Properties70�\PSdSCompoundSS]'PSd|XSNumberSSADL]'PSd|YSNumberSSAD�]'PSd|ZSNumberSSAD�^#AnimationCurveNodeL(��:SRAnimCurveNodeS�^Properties70!^PSdSCompoundSSV^'PSd|XSNumberSSAD`G�K@�^'PSd|YSNumberSSAD���U@�^'PSd|ZSNumberSSADE�<@`#AnimationCurveNodeL���:SSAnimCurveNodeS`Properties70`_PSdSCompoundSS�_'PSd|XSNumberSSAD�_'PSd|YSNumberSSAD�_'PSd|ZSNumberSSADXa#AnimationCurveNodeL8�:STAnimCurveNodeSKaProperties70�`PSdSCompoundSS�`'PSd|XSNumberSSAD	a'PSd|YSNumberSSAD>a'PSd|ZSNumberSSAD�b#AnimationCurveNodeL�[�:SRAnimCurveNodeS�bProperties70�aPSdSCompoundSSb'PSd|XSNumberSSAD@��@Hb'PSd|YSNumberSSAD���/@}b'PSd|ZSNumberSSAD`9l��c#AnimationCurveNodeLж�:SSAnimCurveNodeS�cProperties70cPSdSCompoundSSRc'PSd|XSNumberSSAD�c'PSd|YSNumberSSAD�c'PSd|ZSNumberSSADe#AnimationCurveNodeLp�:STAnimCurveNodeSeProperties70\dPSdSCompoundSS�d'PSd|XSNumberSSAD�d'PSd|YSNumberSSAD�d'PSd|ZSNumberSSADTf#AnimationCurveNodeL�߅:SRAnimCurveNodeSGfProperties70�ePSdSCompoundSS�e'PSd|XSNumberSSAD`yS,�f'PSd|YSNumberSSAD�f�:f'PSd|ZSNumberSSAD������g#AnimationCurveNodeL(P�:SSAnimCurveNodeS�gProperties70�fPSdSCompoundSSg'PSd|XSNumberSSADDg'PSd|YSNumberSSADyg'PSd|ZSNumberSSAD�h#AnimationCurveNodeL���:STAnimCurveNodeS�hProperties70hPSdSCompoundSSNh'PSd|XSNumberSSAD�h'PSd|YSNumberSSAD�h'PSd|ZSNumberSSADj#AnimationCurveNodeL觅:SRAnimCurveNodeSjProperties70XiPSdSCompoundSS�i'PSd|XSNumberSSAD`�'��i'PSd|YSNumberSSAD��M��i'PSd|ZSNumberSSAD��=�?Pk#AnimationCurveNodeL��:SSAnimCurveNodeSCkProperties70�jPSdSCompoundSS�j'PSd|XSNumberSSADk'PSd|YSNumberSSAD6k'PSd|ZSNumberSSAD�l#AnimationCurveNodeL(k�:STAnimCurveNodeS�lProperties70�kPSdSCompoundSSl'PSd|XSNumberSSAD@l'PSd|YSNumberSSADul'PSd|ZSNumberSSAD�m#AnimationCurveNodeL�l�:SRAnimCurveNodeS�mProperties70mPSdSCompoundSSJm'PSd|XSNumberSSAD<#�m'PSd|YSNumberSSAD�]�.@�m'PSd|ZSNumberSSAD`O���
o#AnimationCurveNodeL���:SSAnimCurveNodeSoProperties70TnPSdSCompoundSS�n'PSd|XSNumberSSAD�n'PSd|YSNumberSSAD�n'PSd|ZSNumberSSADLp#AnimationCurveNodeL�ͅ:STAnimCurveNodeS?pProperties70�oPSdSCompoundSS�o'PSd|XSNumberSSAD�o'PSd|YSNumberSSAD2p'PSd|ZSNumberSSAD�q#AnimationCurveNodeL�e�:SRAnimCurveNodeS~qProperties70�pPSdSCompoundSSq'PSd|XSNumberSSAD`��.@<q'PSd|YSNumberSSAD@�i(@qq'PSd|ZSNumberSSADY�O@�r#AnimationCurveNodeLf�:SSAnimCurveNodeS�rProperties70rPSdSCompoundSSFr'PSd|XSNumberSSAD{r'PSd|YSNumberSSAD�r'PSd|ZSNumberSSAD	t#AnimationCurveNodeL0!�:STAnimCurveNodeS�sProperties70PsPSdSCompoundSS�s'PSd|XSNumberSSAD�s'PSd|YSNumberSSAD�s'PSd|ZSNumberSSADHu#AnimationCurveNodeL��:SRAnimCurveNodeS;uProperties70�tPSdSCompoundSS�t'PSd|XSNumberSSAD�d0:@�t'PSd|YSNumberSSAD�v�P@.u'PSd|ZSNumberSSAD�mN��v#AnimationCurveNodeL`Ʌ:SSAnimCurveNodeSzvProperties70�uPSdSCompoundSSv'PSd|XSNumberSSAD8v'PSd|YSNumberSSADmv'PSd|ZSNumberSSAD�w#AnimationCurveNodeLH$�:STAnimCurveNodeS�wProperties70
wPSdSCompoundSSBw'PSd|XSNumberSSADww'PSd|YSNumberSSAD�w'PSd|ZSNumberSSADy#AnimationCurveNodeL���:SRAnimCurveNodeS�xProperties70LxPSdSCompoundSS�x'PSd|XSNumberSSAD����?�x'PSd|YSNumberSSAD�����x'PSd|ZSNumberSSAD�*�7�Dz#AnimationCurveNodeL`9�:SSAnimCurveNodeS7zProperties70�yPSdSCompoundSS�y'PSd|XSNumberSSAD�y'PSd|YSNumberSSAD*z'PSd|ZSNumberSSAD�{#AnimationCurveNodeL�1�:STAnimCurveNodeSv{Properties70�zPSdSCompoundSS�z'PSd|XSNumberSSAD4{'PSd|YSNumberSSADi{'PSd|ZSNumberSSAD�|#AnimationCurveNodeL���:SRAnimCurveNodeS�|Properties70	|PSdSCompoundSS>|'PSd|XSNumberSSAD�l&!�s|'PSd|YSNumberSSAD���1@�|'PSd|ZSNumberSSAD`l�2@~#AnimationCurveNodeLxÅ:SSAnimCurveNodeS�}Properties70H}PSdSCompoundSS}}'PSd|XSNumberSSAD�}'PSd|YSNumberSSAD�}'PSd|ZSNumberSSAD@#AnimationCurveNodeL�P�:STAnimCurveNodeS3Properties70�~PSdSCompoundSS�~'PSd|XSNumberSSAD�~'PSd|YSNumberSSAD&'PSd|ZSNumberSSAD�#AnimationCurveNodeLc�:SRAnimCurveNodeSr�Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD`K�	�0�'PSd|YSNumberSSAD�7��?e�'PSd|ZSNumberSSAD�b6@��#AnimationCurveNodeL��:SSAnimCurveNodeS��Properties70�PSdSCompoundSS:�'PSd|XSNumberSSADo�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeLx��9STAnimCurveNodeS��Properties70D�PSdSCompoundSSy�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD<�#AnimationCurveNodeL��9SRAnimCurveNodeS/�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD@!���'PSd|YSNumberSSAD�z��?"�'PSd|ZSNumberSSAD���;@{�#AnimationCurveNodeL ��9SSAnimCurveNodeSn�Properties70„PSdSCompoundSS��'PSd|XSNumberSSAD,�'PSd|YSNumberSSADa�'PSd|ZSNumberSSAD��#AnimationCurveNodeL`��9STAnimCurveNodeS��Properties70�PSdSCompoundSS6�'PSd|XSNumberSSADk�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70@�PSdSCompoundSSu�'PSd|XSNumberSSAD��#�'PSd|YSNumberSSAD��6@߇'PSd|ZSNumberSSAD���3@8�#AnimationCurveNodeL(��9SSAnimCurveNodeS+�Properties70�PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSADw�#AnimationCurveNodeLH�9STAnimCurveNodeSj�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD(�'PSd|YSNumberSSAD]�'PSd|ZSNumberSSAD��#AnimationCurveNodeL(��9SRAnimCurveNodeS��Properties70��PSdSCompoundSS2�'PSd|XSNumberSSAD�
�g�'PSd|YSNumberSSAD�]�?��'PSd|ZSNumberSSAD��5@��#AnimationCurveNodeL���9SSAnimCurveNodeS�Properties70<�PSdSCompoundSSq�'PSd|XSNumberSSAD��'PSd|YSNumberSSADی'PSd|ZSNumberSSAD4�#AnimationCurveNodeL ��9STAnimCurveNodeS'�Properties70{�PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSADs�#AnimationCurveNodeL�2�9SRAnimCurveNodeSf�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�3��$�'PSd|YSNumberSSAD����?Y�'PSd|ZSNumberSSAD �m<@��#AnimationCurveNodeL8��9SSAnimCurveNodeS��Properties70��PSdSCompoundSS.�'PSd|XSNumberSSADc�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�)�9STAnimCurveNodeS�Properties708�PSdSCompoundSSm�'PSd|XSNumberSSAD��'PSd|YSNumberSSADב'PSd|ZSNumberSSAD0�#AnimationCurveNodeL��9SRAnimCurveNodeS#�Properties70w�PSdSCompoundSS��'PSd|XSNumberSSAD�u*�?�'PSd|YSNumberSSAD�X���'PSd|ZSNumberSSAD���3@o�#AnimationCurveNodeL�9SSAnimCurveNodeSb�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD �'PSd|YSNumberSSADU�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�.�9STAnimCurveNodeS��Properties70��PSdSCompoundSS*�'PSd|XSNumberSSAD_�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL ��9SRAnimCurveNodeS��Properties704�PSdSCompoundSSi�'PSd|XSNumberSSAD�c��?��'PSd|YSNumberSSAD`��}�Ӗ'PSd|ZSNumberSSAD���8@,�#AnimationCurveNodeL���9SSAnimCurveNodeS�Properties70s�PSdSCompoundSS��'PSd|XSNumberSSADݗ'PSd|YSNumberSSAD�'PSd|ZSNumberSSADk�#AnimationCurveNodeL`��9STAnimCurveNodeS^�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSADQ�'PSd|ZSNumberSSAD��#AnimationCurveNodeL���9SRAnimCurveNodeS��Properties70�PSdSCompoundSS&�'PSd|XSNumberSSAD`R;�?[�'PSd|YSNumberSSAD�@^ÿ��'PSd|ZSNumberSSAD ��@@�#AnimationCurveNodeL���9SSAnimCurveNodeSܛProperties700�PSdSCompoundSSe�'PSd|XSNumberSSAD��'PSd|YSNumberSSADϛ'PSd|ZSNumberSSAD(�#AnimationCurveNodeLX��9STAnimCurveNodeS�Properties70o�PSdSCompoundSS��'PSd|XSNumberSSADٜ'PSd|YSNumberSSAD�'PSd|ZSNumberSSADg�#AnimationCurveNodeL��9SRAnimCurveNodeSZ�Properties70��PSdSCompoundSS�'PSd|XSNumberSSADV�?�'PSd|YSNumberSSAD@^/,�M�'PSd|ZSNumberSSAD@�1&@��#AnimationCurveNodeL��9SSAnimCurveNodeS��Properties70�PSdSCompoundSS"�'PSd|XSNumberSSADW�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeLp*�9STAnimCurveNodeSؠProperties70,�PSdSCompoundSSa�'PSd|XSNumberSSAD��'PSd|YSNumberSSADˠ'PSd|ZSNumberSSAD$�#AnimationCurveNodeL@$�9SRAnimCurveNodeS�Properties70k�PSdSCompoundSS��'PSd|XSNumberSSAD���@ա'PSd|YSNumberSSAD �8�
�'PSd|ZSNumberSSAD �69@c�#AnimationCurveNodeLh��9SSAnimCurveNodeSV�Properties70��PSdSCompoundSSߢ'PSd|XSNumberSSAD�'PSd|YSNumberSSADI�'PSd|ZSNumberSSAD��#AnimationCurveNodeL(��9STAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADS�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeLH"�9SRAnimCurveNodeSԥProperties70(�PSdSCompoundSS]�'PSd|XSNumberSSAD�!��?��'PSd|YSNumberSSAD�C��ǥ'PSd|ZSNumberSSAD�5@ �#AnimationCurveNodeLH+�9SSAnimCurveNodeS�Properties70g�PSdSCompoundSS��'PSd|XSNumberSSADѦ'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD_�#AnimationCurveNodeL���9STAnimCurveNodeSR�Properties70��PSdSCompoundSSۧ'PSd|XSNumberSSAD�'PSd|YSNumberSSADE�'PSd|ZSNumberSSAD��#AnimationCurveNodeLp��9SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD@�B)@O�'PSd|YSNumberSSAD � ���'PSd|ZSNumberSSAD �@ݪ#AnimationCurveNodeL�1�9SSAnimCurveNodeSЪProperties70$�PSdSCompoundSSY�'PSd|XSNumberSSAD��'PSd|YSNumberSSADê'PSd|ZSNumberSSAD�#AnimationCurveNodeL���9STAnimCurveNodeS�Properties70c�PSdSCompoundSS��'PSd|XSNumberSSADͫ'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD[�#AnimationCurveNodeLH��9SRAnimCurveNodeSN�Properties70��PSdSCompoundSS׬'PSd|XSNumberSSAD@���?�'PSd|YSNumberSSAD �� �A�'PSd|ZSNumberSSAD`*п��#AnimationCurveNodeL��9SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSADK�'PSd|YSNumberSSAD��'PSd|ZSNumberSSADٯ#AnimationCurveNodeL���9STAnimCurveNodeS̯Properties70 �PSdSCompoundSSU�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL��9SRAnimCurveNodeS�Properties70_�PSdSCompoundSS��'PSd|XSNumberSSAD@C@ɰ'PSd|YSNumberSSAD`99���'PSd|ZSNumberSSAD�w�W�#AnimationCurveNodeL@��9SSAnimCurveNodeSJ�Properties70��PSdSCompoundSSӱ'PSd|XSNumberSSAD�'PSd|YSNumberSSAD=�'PSd|ZSNumberSSAD��#AnimationCurveNodeLP��9STAnimCurveNodeS��Properties70ݲPSdSCompoundSS�'PSd|XSNumberSSADG�'PSd|YSNumberSSAD|�'PSd|ZSNumberSSADմ#AnimationCurveNodeL���9SRAnimCurveNodeSȴProperties70�PSdSCompoundSSQ�'PSd|XSNumberSSAD`@��'PSd|YSNumberSSAD@� ���'PSd|ZSNumberSSAD`% ��#AnimationCurveNodeL���9SSAnimCurveNodeS�Properties70[�PSdSCompoundSS��'PSd|XSNumberSSADŵ'PSd|YSNumberSSAD��'PSd|ZSNumberSSADS�#AnimationCurveNodeL���9STAnimCurveNodeSF�Properties70��PSdSCompoundSS϶'PSd|XSNumberSSAD�'PSd|YSNumberSSAD9�'PSd|ZSNumberSSAD��#AnimationCurveNodeL��9SRAnimCurveNodeS��Properties70ٷPSdSCompoundSS�'PSd|XSNumberSSAD �?@C�'PSd|YSNumberSSAD@�:@x�'PSd|ZSNumberSSAD�9Q�ѹ#AnimationCurveNodeL ��9SSAnimCurveNodeSĹProperties70�PSdSCompoundSSM�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL0��9STAnimCurveNodeS�Properties70W�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADO�#AnimationCurveNodeL@��9SRAnimCurveNodeSB�Properties70��PSdSCompoundSS˻'PSd|XSNumberSSAD@51��'PSd|YSNumberSSADr��5�'PSd|ZSNumberSSAD �R���#AnimationCurveNodeLp��9SSAnimCurveNodeS��Properties70ռPSdSCompoundSS
�'PSd|XSNumberSSAD?�'PSd|YSNumberSSADt�'PSd|ZSNumberSSAD;#AnimationCurveNodeL���9STAnimCurveNodeS��Properties70�PSdSCompoundSSI�'PSd|XSNumberSSAD~�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�|�9SRAnimCurveNodeS��Properties70S�PSdSCompoundSS��'PSd|XSNumberSSAD@�E����'PSd|YSNumberSSAD@Uq@�'PSd|ZSNumberSSAD�ӷ'�K�#AnimationCurveNodeL�x�9SSAnimCurveNodeS>�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD1�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�u�9STAnimCurveNodeS}�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD;�'PSd|YSNumberSSADp�'PSd|ZSNumberSSAD��#AnimationCurveNodeLs�9SRAnimCurveNodeS��Properties70�PSdSCompoundSSE�'PSd|XSNumberSSAD��@z�'PSd|YSNumberSSAD�b�(���'PSd|ZSNumberSSAD�aB��#AnimationCurveNodeL0p�9SSAnimCurveNodeS��Properties70O�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADG�#AnimationCurveNodeL@l�9STAnimCurveNodeS:�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD-�'PSd|ZSNumberSSAD��#AnimationCurveNodeLPh�9SRAnimCurveNodeSy�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD`�3@7�'PSd|YSNumberSSAD@��?l�'PSd|ZSNumberSSAD���A���#AnimationCurveNodeL�e�9SSAnimCurveNodeS��Properties70�PSdSCompoundSSA�'PSd|XSNumberSSADv�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�a�9STAnimCurveNodeS��Properties70K�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADC�#AnimationCurveNodeL�]�9SRAnimCurveNodeS6�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`0a
@��'PSd|YSNumberSSAD O��?)�'PSd|ZSNumberSSAD�V�1���#AnimationCurveNodeL�Y�9SSAnimCurveNodeSu�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD3�'PSd|YSNumberSSADh�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�V�9STAnimCurveNodeS��Properties70�PSdSCompoundSS=�'PSd|XSNumberSSADr�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeLT�9SRAnimCurveNodeS��Properties70G�PSdSCompoundSS|�'PSd|XSNumberSSAD��@��'PSd|YSNumberSSAD������'PSd|ZSNumberSSAD`N�@�?�#AnimationCurveNodeL@Q�9SSAnimCurveNodeS2�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD%�'PSd|ZSNumberSSAD~�#AnimationCurveNodeLpN�9STAnimCurveNodeSq�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD/�'PSd|YSNumberSSADd�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�K�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS9�'PSd|XSNumberSSADN7�?n�'PSd|YSNumberSSAD��?��'PSd|ZSNumberSSAD``�A���#AnimationCurveNodeL�H�9SSAnimCurveNodeS��Properties70C�PSdSCompoundSSx�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD;�#AnimationCurveNodeLF�9STAnimCurveNodeS.�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD!�'PSd|ZSNumberSSADz�#AnimationCurveNodeL0C�9SRAnimCurveNodeSm�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD����?+�'PSd|YSNumberSSAD�[$�?`�'PSd|ZSNumberSSAD��1���#AnimationCurveNodeL`@�9SSAnimCurveNodeS��Properties70�PSdSCompoundSS5�'PSd|XSNumberSSADj�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL�=�9STAnimCurveNodeS��Properties70?�PSdSCompoundSSt�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD7�#AnimationCurveNodeL�:�9SRAnimCurveNodeS*�Properties70~�PSdSCompoundSS��'PSd|XSNumberSSAD`�����'PSd|YSNumberSSAD��?�'PSd|ZSNumberSSAD�׵A�v�#AnimationCurveNodeL�7�9SSAnimCurveNodeSi�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD'�'PSd|YSNumberSSAD\�'PSd|ZSNumberSSAD��#AnimationCurveNodeLȤ�9STAnimCurveNodeS��Properties70��PSdSCompoundSS1�'PSd|XSNumberSSADf�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL #�9SRAnimCurveNodeS��Properties70;�PSdSCompoundSSp�'PSd|XSNumberSSAD�u鿥�'PSd|YSNumberSSAD�|�׿��'PSd|ZSNumberSSAD@�D�3�#AnimationCurveNodeL��9SSAnimCurveNodeS&�Properties70z�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADr�#AnimationCurveNodeL8�9STAnimCurveNodeSe�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD#�'PSd|YSNumberSSADX�'PSd|ZSNumberSSAD��#AnimationCurveNodeL��9SRAnimCurveNodeS��Properties70��PSdSCompoundSS-�'PSd|XSNumberSSAD�B�b�'PSd|YSNumberSSAD��4ƿ��'PSd|ZSNumberSSAD@��6���#AnimationCurveNodeL���9SSAnimCurveNodeS��Properties707�PSdSCompoundSSl�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD/�#AnimationCurveNodeL0��9STAnimCurveNodeS"�Properties70v�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADn�#AnimationCurveNodeL���9SRAnimCurveNodeSa�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`l�"��'PSd|YSNumberSSAD���@T�'PSd|ZSNumberSSAD�̃:���#AnimationCurveNodeLp��9SSAnimCurveNodeS��Properties70��PSdSCompoundSS)�'PSd|XSNumberSSAD^�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL��9STAnimCurveNodeS��Properties703�PSdSCompoundSSh�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD+�#AnimationCurveNodeL �9SRAnimCurveNodeS�Properties70r�PSdSCompoundSS��'PSd|XSNumberSSAD������'PSd|YSNumberSSAD`���'PSd|ZSNumberSSAD�B�C�j�#AnimationCurveNodeL���9SSAnimCurveNodeS]�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSADP�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�Y�9STAnimCurveNodeS��Properties70��PSdSCompoundSS%�'PSd|XSNumberSSADZ�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL�d�9SRAnimCurveNodeS��Properties70/�PSdSCompoundSSd�'PSd|XSNumberSSAD�u���'PSd|YSNumberSSAD���?��'PSd|ZSNumberSSAD ��"�'�#AnimationCurveNodeL`��9SSAnimCurveNodeS�Properties70n�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD
�'PSd|ZSNumberSSADf�#AnimationCurveNodeLؠ�9STAnimCurveNodeSY�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSADL�'PSd|ZSNumberSSAD��#AnimationCurveNodeLx�9SRAnimCurveNodeS��Properties70��PSdSCompoundSS!�'PSd|XSNumberSSAD���+@V�'PSd|YSNumberSSAD�
@��'PSd|ZSNumberSSAD}f���#AnimationCurveNodeL��9SSAnimCurveNodeS��Properties70+�PSdSCompoundSS`�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD#�#AnimationCurveNodeL���9STAnimCurveNodeS�Properties70j�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD	�'PSd|ZSNumberSSADb�#AnimationCurveNodeL��3;SRAnimCurveNodeSU�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD����?�'PSd|YSNumberSSAD`0� @H�'PSd|ZSNumberSSAD �[�?��#AnimationCurveNodeL��3;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSADR�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL�3;STAnimCurveNodeS��Properties70'�PSdSCompoundSS\�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL8�3;SRAnimCurveNodeS�Properties70f�PSdSCompoundSS��'PSd|XSNumberSSAD�C@��'PSd|YSNumberSSAD�99@�'PSd|ZSNumberSSAD`�s@^�#AnimationCurveNodeL�3;SSAnimCurveNodeSQ�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSADD�'PSd|ZSNumberSSAD��#AnimationCurveNodeL@�3;STAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSADN�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeLش3;SRAnimCurveNodeS��Properties70#�PSdSCompoundSSX�'PSd|XSNumberSSAD -@��'PSd|YSNumberSSAD@��(���'PSd|ZSNumberSSAD`��?�#AnimationCurveNodeL��3;SSAnimCurveNodeS�Properties70b�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADZ�#AnimationCurveNodeL@e3;STAnimCurveNodeSM�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD@�'PSd|ZSNumberSSAD��#AnimationCurveNodeLXh3;SRAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�OB@J�'PSd|YSNumberSSAD ��3@�'PSd|ZSNumberSSAD��b@�#AnimationCurveNodeL�k3;SSAnimCurveNodeS�Properties70PSdSCompoundSST'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD#AnimationCurveNodeLo3;STAnimCurveNodeS
Properties70^PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSADV#AnimationCurveNodeLФ3;SRAnimCurveNodeSIProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�TF1@'PSd|YSNumberSSAD���<'PSd|ZSNumberSSAD �$@�#AnimationCurveNodeL0�3;SSAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSADF'PSd|YSNumberSSAD{'PSd|ZSNumberSSAD�#AnimationCurveNodeLȦ3;STAnimCurveNodeS�Properties70PSdSCompoundSSP'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD#AnimationCurveNodeL0�3;SRAnimCurveNodeSProperties70ZPSdSCompoundSS�'PSd|XSNumberSSAD@�O��'PSd|YSNumberSSAD@v��?�'PSd|ZSNumberSSAD���R#AnimationCurveNodeL��3;SSAnimCurveNodeSEProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD'PSd|YSNumberSSAD8'PSd|ZSNumberSSAD�	#AnimationCurveNodeL�3;STAnimCurveNodeS�	Properties70�PSdSCompoundSS
	'PSd|XSNumberSSADB	'PSd|YSNumberSSADw	'PSd|ZSNumberSSAD�
#AnimationCurveNodeL��3;SRAnimCurveNodeS�
Properties70
PSdSCompoundSSL
'PSd|XSNumberSSAD�`?.@�
'PSd|YSNumberSSAD�;�?�
'PSd|ZSNumberSSADu!�?#AnimationCurveNodeL��3;SSAnimCurveNodeSProperties70VPSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSADN
#AnimationCurveNodeLP�3;STAnimCurveNodeSA
Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSAD4
'PSd|ZSNumberSSAD�#AnimationCurveNodeL��3;SRAnimCurveNodeS�Properties70�
PSdSCompoundSS	'PSd|XSNumberSSAD`8?$�>'PSd|YSNumberSSAD�>пs'PSd|ZSNumberSSAD`h�'��#AnimationCurveNodeLp�3;SSAnimCurveNodeS�Properties70PSdSCompoundSSH'PSd|XSNumberSSAD}'PSd|YSNumberSSAD�'PSd|ZSNumberSSADAnimationCurveL�YN;SAnimCurveS"	DefaultD:KeyVerI�7�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&f
KeyValueFloatf�N����F�ð��ý=�����v���m��!��ò���~_���3z�!�k�&�\�$8OÞ�B�#�5�](à�2��Lc��Hm�����ƒ���O�½�a��7¿h�q���"���3_��_@�NA~�nA�A�A���A�A��A��BH�B��B�n$Bu)B`�.BI�6BtD@B̋JBg6UBQ_BдhBX qB֧xB��}Bb~B�~B��zB=�tB�nB��hBÕeB�&eB��fB%jB�QmB3GoBxpBGhqBUtB�yB/�B��B��Bi��B��Bף�B��B��B��Bƾ�B��B���B���Bmu�BR9�B�Ce�C��C��ChS'C��.CM.7C%�?C�0GC��NC�VC�_C�&hC��qC��{C�>�C/��C���CM�C.o�CȐ�Ch��C"��C��CCf�C��C��C_0�C�}�C��C���CO��C@�C_��Cu��C�p�Cr/�C�:�C2��C[��Cz��C��C
��C�<�C�!�C�8�C{4�C�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�<AnimationCurveLH�M;SAnimCurveSZ	DefaultDrKeyVerI�o�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf���B�ӴB���B]ǯB�ܭB'ڭB��B���B��B�E�B{��Be��B�8�B\V�BC�B?�B�a�B��BjM�BpZ�Bw��BC�B�v�B=/�Bx�B��B���B��Bڹ�B��B��B�Cj2
C4�C��C�"C�z*C̓2C�:C�BCr�JC��RC�YC��^C��cC�gC\�kC��nCbqC��sCI�uC��wC>XyCL:{Cז}C)G�C��CF�C`��C�F�C,��C���C-ԏC�f�C��Cy��Cj��CDe�CN��C7�C<K�C�)�CW�C�ґC���CM��C�ÔCd��C�)�C�;�C+%�C��C�z�CRԚC��C�C�CQ�C���Cb�CޚC���C�x�CO�CkE�CFM�C���C�ÚCc��C�5�C���C3��C�C��C�@�C�@�C��Co’C
ݑC�|�CX��CqK�C+C�CT�CL��C��C��C��C\i�C�8�C�a�Cq=�Cc�C�%�C�a{CSqC��eC�YCA�KC�r=C�P.C�KeyAttrFlagsi!KeyAttrDataFloatf

/KeyAttrRefCounti�t"AnimationCurveLx�M;SAnimCurveS�	DefaultD�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�!
KeyValueFloatf��dT–�S�z�S���T�r�V�WkW�zX�e�X�ުX¤�X�#zY�UZ��Y³NXŸ�U�w.S·�Q��Q¦�NAL˜Jˆ�F��)D�uB†�>���9�4:�o�>¾+?°�;�O�9��7�*�4Š�0�Ⱥ+��K&�S� ���ºe�P��L��*��u��
����!��%�^)��.�:[4�:›E?�C�l�F‰�H�UI�(�H�SH¨`H���H�KyJˆ�L�9EO�sXQ‡�R��BS�.S�6�R�aR��4Q���P���P—�P�<Q���Q¤�S°�V��]Z¢^�;�a�O�d�\�g±kj¤�l¸n¼An�1�n�Zp�9\p��p��op��Uq�K�r�֋t��v�ax��{y�'z§�y…ux�h�v¹�t�#s��<q�4�p�8�q�
Kt�G�v�`+x·�y›�{µ�~���p���{�¥������o����w���f���Z��w�������O*��*��ON�1���±P��y���e��"KeyAttrFlagsi!:"KeyAttrDataFloatf

g"KeyAttrRefCounti��(AnimationCurveL��M;SAnimCurveS�"	DefaultD`G�K@�"KeyVerI��%�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&(
KeyValueFloatf�;�^Bn�tB�
CcHC�� C+C��0C
�=C+�TC�]Ca�UC�HC��@C-�DC9\C�	�C,=�CQ��C3'�C|��C.��C�mC-�VC:IKC��MC)XC1�cC.,lC�opC�okC�iC�mCލgCM
\C��RCҧKC'0BCT�6C�5.C�J+C��,C�0C��3C�
6C7C
5C�3C{$4C�,6C��6C�6C��:C�@C�hFC��HC#4IC��OC�4VC�]C�kC��CAw�C�֔C
˕C��C0�Cy��C���C!��CF��C}x�CN�C�}C��~C���Cp�C�A�C�ֱCu��C+7�C]��C��C��C"��C���C���C���C��C��C���C��CΥ�Cn�CB�Cjg�C=$�C��C�b�C�
�CԺCL��C*��C��C�`�Cvf�Cu��C�"D�qDM�
D�XD�*D���C��CwD�]D<�DY��Cl.�C���C��Cg	D�D�cD��D�D�#D/D�DW	DO�D8(KeyAttrFlagsi!r(KeyAttrDataFloatf

�(KeyAttrRefCounti��.AnimationCurveLؤM;SAnimCurveS)	DefaultD���U@)KeyVerI�,�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&F.
KeyValueFloatf��,�B�w�B�	�Bt��Bc�B�b�B�i�B�ȞB&�B(��B�BoɣB3�B�B�B���BB}�BFƠBvz�BX�B���B�Z�BƄ�B鑗B���B���B�>�B�3�BO'�Bt�BQ^�B��B�j�B/ÊB��B�0�B�e�B��BJ�~Bm�nBO#ZB^OBK�OB�JTB��XBG�]B6�bB��lB�mvB�+�B=��B�[�B�B���B͞�B�M�B�,�BR��BM�B|��B�~�Bv�Bwq�B-��B2��BꅞBtɞBɱ�Bz��B��B�]�B�m�B��Be7�BOF�BS��B�.�B4��B�o�B֩B�}�B�$�B�x�B�՘B,D�B�;�B蚝B֡B�;�B)��BϾB�k�BR��B$��B�@�B�>�B$�B�żB3ɸB�k�B���BOk�B���BP�B�j�B�C�B]p�B[T�Bآ�B~��BZZ�B���B���BP��BV��B'�B=��BG��BK�B��B��BI%�B���B<��B�b�BT>�B��B1��B��B���B���Bp.KeyAttrFlagsi!�.KeyAttrDataFloatf

�.KeyAttrRefCounti�5AnimationCurveL��M;SAnimCurveS:/	DefaultDE�<@R/KeyVerI�O2�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&~4
KeyValueFloatf�(��AȡB��B��C1C�C�pCG,C"�DC��MC
 FC+%:C�4C�:C�QRC vC.1�C�,�C}9�C69�C:9�C�nC�ZCFmRC�qYCi�eC&oC�sCg�tC<�nC@SlC
�mC�fC�ZCD�PC�XJC�AC�5Cf�*C��%C��#C\#C�"C�1"C�M!C\SC�|Cf C��#C?!'Cn�(Cn�+CU/C�1C�#.C<'CL�$C}�"C3�#C��.C	�KC~�bC�mC�KsC��vC��yC�a{C�/vC�fC!�ZC�=[C��YC�cVCTYUC$WC�ZC6�bC:��C���C1��CxI�C���CDݿC���C�\�C���C���C�q�C��C��Cµ�C�C�C\1�C4��C"Y�C�űCڰCK��C��C�@�CN{�C)�C���C1��C�<�C %�C=tD��D�c�C;��C���C�8�C���C%�CgL�C��CJR�Cr�C��Cw��CT�D-)DrD[�D%D^vD�#D�WD�jD�4KeyAttrFlagsi!�4KeyAttrDataFloatf

5KeyAttrRefCounti��6AnimationCurveLȢM;SAnimCurveSr5	DefaultD�5KeyVerI��5%KeyTimel�Ig�R��&��@�
��5
KeyValueFloatf�?�?�? 6KeyAttrFlagsi!Z6KeyAttrDataFloatf

�6KeyAttrRefCounti8AnimationCurveL��M;SAnimCurveS�6	DefaultD7KeyVerI�;7%KeyTimel�Ig�R��&��@�
�n7
KeyValueFloatf�?�?�?�7KeyAttrFlagsi!�7KeyAttrDataFloatf

�7KeyAttrRefCounti�9AnimationCurveL(�M;SAnimCurveSb8	DefaultDz8KeyVerI��8%KeyTimel�Ig�R��&��@�
��8
KeyValueFloatf�?�?�?9KeyAttrFlagsi!J9KeyAttrDataFloatf

w9KeyAttrRefCounti�?AnimationCurveL��M;SAnimCurveS�9	DefaultD�9KeyVerI��<�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?
KeyValueFloatf�����)�)��)��)�))�)@)�`)�)�)@� )���)���(���� �(p���ة��)��(�)�@���(�� ������`���@�`��)�**���(�) *�'��0*@(�)���)������(���� ����)������������)����)4�0*(��)�(@)���)�)��*����)����**@)Щ(� *���P�������*�)���)��H?KeyAttrFlagsi!�?KeyAttrDataFloatf

�?KeyAttrRefCounti�4AAnimationCurveLX�M;SAnimCurveS@	DefaultD*@KeyVerI�c@%KeyTimel�Ig�R��&��@�
��@
KeyValueFloatf�A�A�A�@KeyAttrFlagsi!�@KeyAttrDataFloatf

'AKeyAttrRefCounti�BAnimationCurveLh�M;SAnimCurveS�A	DefaultD�AKeyVerI��A%KeyTimel�Ig�R��&��@�
�B
KeyValueFloatf���?���?���?8BKeyAttrFlagsi!rBKeyAttrDataFloatf

�BKeyAttrRefCounti�HAnimationCurveL��M;SAnimCurveSC	DefaultD@��@CKeyVerI�F�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&FH
KeyValueFloatf�rUg@�
�@�WA730A�"A,A���@y��@��@M%]@�@XK@
��@�mA>;A�%[A�aA�U6A�x�@�S�@P�o@z��@	�A�KA�ȍA�ќAt6�A!cEA��A��A�1A�?�@��@���@iמ@�(�@�T�@���@�rA��GA�]eAR�xA�j�A��vA�a`A�KA�o@A"�6A<5A��DAٯXA�_A;�cA�vA�ˈAd��AdV�A�z�A�E�AK��A�|�A!J�A��B�6,B�,CBEWB'	eBgBP^BBPB�lAB�1B��!B@�B���A��A���AdëA�C�Aʢ�A�ƠAA��yAK;YA�mIA	�1A��%Al�<A�fhA�@�A|U�AK��A�_�AsLA��tA3�gA�ofA�|�AM�A�=�Ahh�A��
B;�B��B�<Bg
B��B8-B���A�Z�Ar��A�,�AS͖Ay�A���A���A_�B�EB�~0B�:B�=BP�;B
&1BM/B��
B�B��A�J�A��A�)�ApHKeyAttrFlagsi!�HKeyAttrDataFloatf

�HKeyAttrRefCounti�OAnimationCurveL�M;SAnimCurveS:I	DefaultD���/@RIKeyVerI�OL�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&~N
KeyValueFloatf�-�AJmaAp�A�Z@
�6ߔ����������5�HX�~v�H���L�q�ƮP�$�B�%���Ի@Q�GAOޕAn4�AሣA��8At�@�����0�+��Y>�������خ����ocs���������>��ӡ�ۏ3�n�T���M�֑0�t$�����"�����QԬ����)���q,�N� �d���^�Z\>��)��&�6��t��"��h���W_����e�u��"-�������}��ڿYY�>D0�.VP�ڑq�GE������k��aN��`p��ʞ��}���z���j������E3��y(�[�-@ԋ�@3��@�I�@�A6@+Az�QAS�VA�3&A���@�+@�9`<�2/�D���I���*�;�4��-�m�o.�%0��]���ǧ����?M��?e�?�@	�?F�>[ن��Ⱥ���>�>h2[���;��#?n�>�T/�,����Hſ��HI޿ _ȿv��s(B��qN��u��7G@)��@y��@�NKeyAttrFlagsi!�NKeyAttrDataFloatf

OKeyAttrRefCounti�TUAnimationCurveL�M;SAnimCurveSrO	DefaultD`9l��OKeyVerI��R�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�T
KeyValueFloatf��a��iC��/{���I��m?��@��L�������@�A�@eY�@��@'+�@���@��AzpNA1AT,�@d�ӿ�;�����ل��z��2����C�}	�?�s�@��EA඀A��sA��mAiU�A|�A7!�A�1KA�3A�r�?����^~K��1W��!�o9��^&�_��0�߿BOb�����6��3�I��=���?�U�@YW�@�AP3�@�n�@$�@���@�t@�I<@%z<@XGN@��@�O�@R�@��@(g@�I?�6�>`�?�;6@�ߗ@ԏ�@2��@CA��$A�A��@q�,@
?C��=4�(������(W��|z��˅�,
�����Y�����q5����w�%�J�"
������V7�^���P5��R����g@��@/!Ao�2A�@A(��@|C�@��G@n]Y?�B.>o�?���@���@2ADF�@���@d��@�J
A/AU��@�^�@` �@$�V@�:Y@|�Z@�r@���?Y�
@U|T@�т@�D�@�TKeyAttrFlagsi!UKeyAttrDataFloatf

GUKeyAttrRefCounti��VAnimationCurveLH�M;SAnimCurveS�U	DefaultD�UKeyVerI��U%KeyTimel�Ig�R��&��@�
�.V
KeyValueFloatf�?�?�?XVKeyAttrFlagsi!�VKeyAttrDataFloatf

�VKeyAttrRefCountiDXAnimationCurveL��M;SAnimCurveS"W	DefaultD:WKeyVerI�sW%KeyTimel�Ig�R��&��@�
��W
KeyValueFloatf�?�?�?�WKeyAttrFlagsi!
XKeyAttrDataFloatf

7XKeyAttrRefCounti�YAnimationCurveL(�M;SAnimCurveS�X	DefaultD�XKeyVerI��X%KeyTimel�Ig�R��&��@�
�Y
KeyValueFloatf�?�?�?HYKeyAttrFlagsi!�YKeyAttrDataFloatf

�YKeyAttrRefCounti�_AnimationCurveL�M;SAnimCurveSZ	DefaultD*ZKeyVerI�']�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&V_
KeyValueFloatf� � *���*�*�\+�	���ت�*( *�*�**��+D��)��u�����2+B+Ъ2��*���H�Ȫ *Ī����+�+�*H*`�8� +l��+ �+`��P�������N�	���*�� ���ܫ��.+�Ԫ���(��x����*������H�������,+�++��n��)Ъ��0*���P���
�@��)D������0��*P+@�+���)�����(���*��`���������0+�*8�@*0+ ��*`��_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCounti�%fAnimationCurveL�M;SAnimCurveSJ`	DefaultDb`KeyVerI�\c�KeyTimel��x�kH�Э�քZX1-M1l����ZS��B�\���9��Z5��Z�+�VtQ#V�"cⴒ��Ô&iL-�2f�
r�E�s����A����]ɧ�z,�֥KifDdƦ̅:����
ϰq0g�aZ��-îW�CX��q���K��sk_zd4?��:v�*g�:).SN�ls�}kW+�����bö��У�lӀ
��u��5.k}!-�Xrc�g�����":7Fr���~`sԇ]Ŵ�a�#�][�7���KhQ��̴Zy
ڴF���{�N�Ė���z,Xi�`ם��JZ��}G��ag�io����)�/[���v\�.�ꐖ~̻*_}��/������氟�Ӷz�,�����Z_�����i��.��AQ����,t����!'hU��9CX\ɍ8I{��:�x�i
�|҄S4��_Ǧ��oXx�]���^�lT����\�i�U�Ս�_��g�he�
;���-�:K�?���0k�=K��4�`���o�a�ɮ
�3�ۤ��}���f,~����9Z�7{
'�o�e�&���}�X��{��ٷMG�w��w,Ç��{�i����d��5�ɱ�w������Uzژޢł�v�F
��z;Ӏ��?���/UiZ�����~aGR��ڦ�ļ�Ԑ���k�+����!���mڭ�2+w
�6�����M&,�p�>��iĶ�8��>��Qe�F��0�����^���2x�e
KeyValueFloatf�5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A�eKeyAttrFlagsi!�eKeyAttrDataFloatf

fKeyAttrRefCounti��gAnimationCurveLX�M;SAnimCurveS{f	DefaultD�fKeyVerI��f%KeyTimel�Ig�R��&��@�
��f
KeyValueFloatf�qO��qO��qO�)gKeyAttrFlagsi!cgKeyAttrDataFloatf

�gKeyAttrRefCounti�mAnimationCurveL��M;SAnimCurveS�g	DefaultD`yS,�hKeyVerI�k�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&7m
KeyValueFloatf�˛b�J<w�%�{�Y�������Խm���H��+�����g<���������ĩ��=K�������2�>&��X���u�
zھ͊>�)�ȿ����k�<���?�e�@u��@W�@��@l�@<�R�sbY�6��(�����C���@o��@ނ�@��@��@�����>6��V��E��D4�"9�����x����u���1>3�@q2A�Z�@B��@�E�>�sI�͋�����ø�����g�0�z���ƛ������E��m��X���Q��|��>���������������������v���xW���i��m�m�8]T�NU�AZS��z9��c����:������C���o���\�Us��gQ��ۍh?t�A(�AI��A�s�Af��A�'A'�@^)?��X����[�����N���ʮ����(�m���"��?=��@nA5lA*XAS��@�u�@<L�@,(~@��6@�^�?~w @�C�@��@(�A�];A��UAZ�A�
AamKeyAttrFlagsi!�mKeyAttrDataFloatf

�mKeyAttrRefCounti�
tAnimationCurveL8�M;SAnimCurveS+n	DefaultD�f�CnKeyVerI�@q�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&os
KeyValueFloatf�(6��I(���ӏ��ܙ��қ����6����>4*@^�@5�@T$�@Y�@�Y@!�A@g=@,@l-[��o���s��d+��"����|�����/
{��ٿ��>�B(?����(����L���؉�{[T�q�E�5YZ������N������/��_&��}.��U)��N��������fM�2L����+�����'�>X��OT���A���+�i�����7���������]'>ir�?k>@��]@�[@f�K@4!@@��?��?]@�?��?o�=@��v@���@+„@s@��o@��g@
9V@*�6@u�!@�,&@c(@J��?�O�K���>Ͽ$���|:���;�^K�����y���m?��?�9�?�]?'玾D�y�O���8���*鈿vrӾ�?4*�?��?C��?+�?
d�?N	�?��?��m?�C?J�?���?u^�?a�?3��?���?��?�*�?6(�?��
@dL@"w�?΁>�
��%�ݿ���sKeyAttrFlagsi!�sKeyAttrDataFloatf

tKeyAttrRefCounti�EzAnimationCurveLh�M;SAnimCurveSct	DefaultD�����{tKeyVerI�xw�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�y
KeyValueFloatf�4���?/�T?�V����]��#�ȿ�)��
��X�
�{���U]���;����/�6֝��}��EV����R@��@H��@���@̂�@�͠@I\y@H,@��y?�S��/Կ#~�/zǿcs��Z��Baٿ+�>X�%�@�M�@�*�@O��@�(�@hrt@�W(?%��=2�A@3��@趨@8=n@q(@O��?��?�x�?0��?�{�?`%�?�:�?G�@�@�78@dž�@E9�@o�@�M�@�+X@�i&@<h@�i�?�\�?R
�?��4@c�@d;�@�3�@d��@��N@���?噝�Ven�A���7s������r���SO��E���ƒ�� �?��:@yZ�@ܥA��)A� 4A)%AA��@�Z�@Kp@h`V@��>@�N@&y�?�XD?��=�BT���m�jA>=��?�6@rk<@Y/>@�w+@�$@�t@@V(@��=@d94@�a2@�C@Ӄ.@v��?�?�1�?��>���=C�,�<��>���?kl_@�x@��@�i�>>�:�yKeyAttrFlagsi!zKeyAttrDataFloatf

8zKeyAttrRefCounti��{AnimationCurveL�YN;SAnimCurveS�z	DefaultD�zKeyVerI��z%KeyTimel�Ig�R��&��@�
�{
KeyValueFloatf�?�?�?I{KeyAttrFlagsi!�{KeyAttrDataFloatf

�{KeyAttrRefCounti5}AnimationCurveL��M;SAnimCurveS|	DefaultD+|KeyVerI�d|%KeyTimel�Ig�R��&��@�
��|
KeyValueFloatf�?�?�?�|KeyAttrFlagsi!�|KeyAttrDataFloatf

(}KeyAttrRefCounti�~AnimationCurveLȥM;SAnimCurveS�}	DefaultD�}KeyVerI��}%KeyTimel�Ig�R��&��@�
�~
KeyValueFloatf�?�?�?9~KeyAttrFlagsi!s~KeyAttrDataFloatf

�~KeyAttrRefCounti�AnimationCurveL8�M;SAnimCurveS	DefaultDKeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&G�
KeyValueFloatf�`�����*+���*���`���X*`)@)�*��@)�� *@��*��(���B�z��̫�*+�����*�� ������*���
��+�+��+x*���+j�H+X*l+@��p�(�(*0������*�(Īݫ���*�����@���P�p�*��L�t�H�P�@�D��+�+�*p��@����*��*$���̪ �����������*0+��*0�����T�`� *)�*`����� �@����*�*��*8+���*��q�KeyAttrFlagsi!��KeyAttrDataFloatf

؄KeyAttrRefCounti�]�AnimationCurveL(ZN;SAnimCurveS;�	DefaultDS�KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf��A��A��A�KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCountiՇAnimationCurveL(�M;SAnimCurveS��	DefaultDˆKeyVerI��%KeyTimel�Ig�R��&��@�
�7�
KeyValueFloatf���?���?���?a�KeyAttrFlagsi!��KeyAttrDataFloatf

ȇKeyAttrRefCounti
�AnimationCurveLX�M;SAnimCurveS+�	DefaultD`�'�C�KeyVerI�@��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&o�
KeyValueFloatf�s?=�1�M�]'c���h�W~h��r���|�V�u��m�n�p�Ƚ|�������|�|s�-�p�sx�%g���5������'��1F�����"���Bv����W���=��]8�6Fg���u�\3h��_�[IW���C�!�0�dT,�8�~�����Y���l��U���N���w$�Ya-�����{?�L�@�>�@�A-8A�s=A�VAdr�@��@�"7@��?.zֿ�n���/3�1O��E��K������r(r�Y�������jϲ�����3�z�� S�S�L�x8�9I�A	�������!�>U��Ϊ��S�$�`E���J���5����_�
�P
��m���!n����	�%����$��T�N�x+#�2=�Mm������$0�g9u�0����~�-�`�-�X��
Z��gF�A	!��B	�u>
�[�)�/�P�:L�(w-�˼3��z_�!I{�^�y�9{v���j���i�<�i���f�snK��)�-6���g��L��9�������08��?��KeyAttrFlagsi!ӍKeyAttrDataFloatf

�KeyAttrRefCounti�E�AnimationCurveL��M;SAnimCurveSc�	DefaultD��M�{�KeyVerI�x��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��l������(���i��{���L¿�x�~�O����:?v��?R0#@�].@�@$�?���>H��>�V�>�Q¿Ho�����:�*�)1!�����7�����}��
˿�9?7��?�2�?�tо��r;����;��"�2>A$�?c�@/��?2}=g~��מ����������ռ����
�����t�`:�0��&2_��j���4�Vu���ES�[r�߇:��M�������ؾ������L0��h+>��]?�f�?E	�?�"�??��>}��>�?dT�?@��?��?(3�?�b�?���?@��?��?��?�߸?���?ܺ�?U��=�f���a�
���1�ȴc��!�����B{��V�9����^�?�-4@y�@�3W?@�}����6���<�բ��T�<��=،�>(!�>���<�c���)�<��?��<?�a6?1l?��?�5�?�d�?׆6?@�X>m˜�eaQ>*yJ?���?�w@d%@#�?B]�uĉ�����ѓKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti�}�AnimationCurveL��M;SAnimCurveS��	DefaultD��=�?��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&ߙ
KeyValueFloatf�^�>�Y@�@F��@.��@��A��A�
�@	�@��@�3�@B�@���@�(�@���@ͪ�@�`@�,�?GO�?Tj_@Z�z@V�l@d�a@mm@%�@�
�@4�@���@8�@�f�@��v@3n@��?e�@���?{QJ��c̿-�Ϳ%����?�-]@���@9,�@vMC@��L@t5�@N5�@Xe�@S�@Tq4@��%?Bt�*�>�K�ֿ<G���[�i��ڬ�>���>�k���&���S���>$1?^�K?�ǹ?��5@;�U@2G%@��?���?ˁ�?U4�?!�=@��n@]un@�?T@��<@fž?��̾1��*%��f@��f���A��'?C�?�=�?�C�?��	@�]o@�Э@�H�@�b�@�E�@���?/E�{j���{��8�6�K�k�^?\�?$�K?�b�+շ�V��������>?���?��?g��?�7?��?���>�?J�ކ>�&�?��@�~2@;�T@�4@�@H�|?j:���/�pl�-ؿx}?*�?	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti���AnimationCurveLh�M;SAnimCurveSӚ	DefaultD�KeyVerI�$�%KeyTimel�Ig�R��&��@�
�W�
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveL��M;SAnimCurveSK�	DefaultDc�KeyVerI���%KeyTimel�Ig�R��&��@�
�Ϝ
KeyValueFloatf�?�?�?��KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti�AnimationCurveLȨM;SAnimCurveSÝ	DefaultD۝KeyVerI��%KeyTimel�Ig�R��&��@�
�G�
KeyValueFloatf�?�?�?q�KeyAttrFlagsi!��KeyAttrDataFloatf

؞KeyAttrRefCounti]�AnimationCurveL��M;SAnimCurveS;�	DefaultDS�KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�u��u��u��KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultDˠKeyVerI����KeyTimel��x�kH��YhK!V���6�r��$���ȑ�6K����U������hF�i�ÌM��4�b%��B�2�������Y0F�d���?ǔ��:�b���L>-اI�̘��
�~�w����ݍ}X?r`���Z�]ϧ^`mj�t�]\����i�~2�MBs��M�1(���qR�c������,�W�ivB�
�zŽђ�afY�DZ5n��㴨'�b_�`K�͝EtV��6��#~`Sԇ�Ŵ�A{'��/����1�Z�vn3mV��6�Q�0�^��#������i���bם�9�]tGߚ�bg�!��V��}���×�ӎ��EX��s�IW���K#�a��
fu�NҶ�U,�����:�.e�3ІE:��<%m�Y��Y�GCNѾ�F96������*h�oJ��g��a�W���fT�&l�9�
�+�B���;�^������iWy�#���;CG˓��,�au�p�Y���^����`�l�N5�)|u��7��h�9�=щm��X�]r�f.�VW�-ʛ�ā)�Kl9�����^'6`_��#69�&kha��{&ӽظ/(���O�`&�TC�E��'�v�L�����V5�
K�`Wj$�"��3�8:��v>Q���꤭m����;v���6M/�$��\�����X����Ƶu�->S�%��w���mB=e�i6`Ѧ�o8��6Ж�O�q�ż�}Qe�z�� �n�z��3�/��

KeyValueFloatf�L�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�A�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti���AnimationCurveLاM;SAnimCurveSۦ	DefaultD�KeyVerI�,�%KeyTimel�Ig�R��&��@�
�_�
KeyValueFloatfRhڿRhڿRhڿ��KeyAttrFlagsi!çKeyAttrDataFloatf

�KeyAttrRefCounti5�AnimationCurveL�M;SAnimCurveSS�	DefaultD<#�k�KeyVerI�h��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��	���%��P&�SN�
V����������P���n�6����jq��������
�N����fW���@��|�T�����䐿�;���Ϳ�
�;R�	Cz���U�:?.�E�X��������~y����h"���,��a�E?���@ϲNA �wAk�WAQFAÅ@-x�?�W�?���?~%@�y5@Z:@�#@]V�?l�?D��=KS��8��q�W��������;.�vmd��d�
��@ޟ�����F���[v����~M����������^�������ͅ��~��'u��3l���c���]�W�Y���I��2��d�b��a���
����+"�
�-��-�O� ����}������~������ǹ��Y��_h���������;�Q�l�*���*��qk{���+���"3r��b�?�4(@l@��?�Q˿AG���?����
�� �]�&��*�v2���H�-of��x��{�F�V������a����@���@��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti�m�AnimationCurveL8�M;SAnimCurveS��	DefaultD�]�.@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&ϳ
KeyValueFloatf���tA�ـA�i{ACy^A"�<A�)A�27A �bAe��A�q�A���A=�A5��AՓWA�BA�KA7rXAg�SA&5A3xA�Ƕ@�6@��?U�?�u@���@�.A�`A���A<�A�O�A��A���A��A\��A�C�A�hA<*Ad�@Gē�$��#���ҁ��-�@���@.�@���?����ݔ?��Z���Z��v؁�I	1�~��҉�?���@�~�@˷A[tXA�c�AGX�AQ�A���A���AɢBO�
B S
B��B3B�c
B74
B7w
B�(B0BrBNgBog	Bj�B��B�}�A�M�Al0�A?�A�үA�^�A���A��A�AA�Ak��A WpA��TA�1AA�4A��%A�A��A��A2Aҹ'A6'DA�=yAL�A>��A���AԔ
B��Bq�BFB���AV�A���A��A���A�B�:
B+FB9B:�B�CBf3
B��B���A-��A㸹A�e�Af0Av�;?͠�<�;���KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti���AnimationCurveL��M;SAnimCurveSô	DefaultD`O���۴KeyVerI�ط�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf�{����"�d�P���������vg>O�?�)@�'�@t�@�]�@<�g@?+�?l/�������E��_ۓ�C湿"�M?���?��?X�C>H����u?�o@���@l�A�KAhF�A�;�A$��A�B��A���A���A�!�A�faA�16A`�VA�}vA��A�Ag�Ah��Aq�VA	A(K�?|��������R��Hݾ9��?�SI@X�f@1�f@�%k@$m@��Q@
@��?S�f�dpx�� �I�|��m���A�����g'��:���~�X�nR���-�?9^@f�@Y�@���@L�A�j	AYA���@u?�@��A
�A^Aka�@��@��T@o�k?ep���d;�/�[��V�]7�x���cX�.�J�(W�=>k��b.�����M���[�����Y���,���'�@�ܔAT#�AV$BcF1B�a9B�4Bt9&B>�B?��A%�A�`�Ae	�A���A)E�A9҅A��>A|��@�*���}�������t���?*Ak�aA1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLYN;SAnimCurveS��	DefaultD�KeyVerI�L�%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLؕM;SAnimCurveSs�	DefaultD��KeyVerI�ļ%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveL�M;SAnimCurveS�	DefaultD�KeyVerI�<�%KeyTimel�Ig�R��&��@�
�o�
KeyValueFloatf�?�?�?��KeyAttrFlagsi!ӾKeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL8�M;SAnimCurveSc�	DefaultD{�KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatff� Af� Af� A�KeyAttrFlagsi!K�KeyAttrDataFloatf

x�KeyAttrRefCounti��AnimationCurveLh�M;SAnimCurveS��	DefaultD��KeyVerI�,�%KeyTimel�Ig�R��&��@�
�_�
KeyValueFloatfi傹i傹i傹��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5�AnimationCurveL�M;SAnimCurveSS�	DefaultDk�KeyVerI�h��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�Ro��So��Ro��So��So��Ro��Ro��Ro��To��Ro��Ro��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��Ro��So��So��So��So��Ro��Ro��So��So��So��So��Ro��Ro��So��So��So��So��So��So��So��So��So��So��Ro��So��Ro��So��So��So��So��Ro��Ro��So��So��Ro��So��Ro��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��Ro��So��So��Ro��So��So��So��So��So��So��Ro��So��So��So��So��So��So����KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti�m�AnimationCurveL�M;SAnimCurveS��	DefaultD`��.@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��?uA�ȥA�o�ABCBt�#Bo�B-�
B}f�Aϭ�A��A�y�A���AQ��A�׶AŊ�AQԒA�r�AtضA*�ACd�A�}�A��,A&��@dmL@*��R&��ٖ‘�E�~n\†[O���)��^�R�������G��+���uG���;����!3j@0�pA�ɰAs?�A*�Ah��A��	B�e B�7B
�MB�n[B�u]B�FVB
IB�:B��)B��B3#�A�f�AH$�Aht�A�7sA��KA�xGAE3A�#A��:AߔDA"�cA�S=A�TA��@8�Cl<��_��W�����0m�������xŠ��0˜=������>��/���@��fA��A��A���A��A�B��B�m�A^��A���A�ZUA/A�o2AE� AH7�@�?��.�����wY�=!|��ԑ��*��4���X��AZ�§y��~~�‡��ŋ���(m���M�G6'°���Mz�ͦ3�n�gAm'�A1�B�5B��[B�T�BY�B��KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti���AnimationCurveLH�M;SAnimCurveS��	DefaultD@�i(@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf�2OCA�Z"A���@�0b?����������<2�VPV´�n��Lw¬�o�V�a�)�a���cJ��V	��sL?�3�����8��������F��N��[7��QA�ȚA�u�A���AO��A��IA�'@�p��ڤa�C���9֤�2�@��@�9��$������%�;�KWR���LŽ0���gl��]����Y9��h���Z|>��@.��@��A>L+A�=IA.7`A�	hA�(kA�LwA�Af�A���A[�A�&�A�r�A��Ad��AL9�A�^vA�\KAo�YA���Af�A�pB�)B@2Bn�CBC�RBr�YB��]B�=^BML[B�ATB
HBj�4B��B�4B"��A2^�A�KDAy�R@����a���޹���%�S�?�^oL�t(E�d�%�M����M2�}*�@>�AY^B&**B�G!B���Aɓ�A+��A_�QAEA�/SA�%jA�`wA��{A���A�H�A�y�A���A�u�A4$�A(��A�%A�!���u�4����f!�u[�ge��1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveLx�M;SAnimCurveS��	DefaultDY�O@�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?�
KeyValueFloatf��B|BLςB^
�Bڋ�B �B�~�B��xBĢfB�hYB��UB�YBB\B��aB$fB,5jB}vB|K�B�ʒBfH�B�;�B�ҐB��BvK�Bݏ�B�H�B�X�B�|XBk�Bk�A�i@��#�2˵�5|�����X���O0��4�@��A�_.Bn�eBxB^�mB��_B�c[BaYB,�VB��JB[�BB��EB�zOB�zYB�f\B�L]B�ZB.mXB|�TB&MJB�	=Ba�,B=�B�B���Afr�A���AȸCA��AԨA��'A��[A{͉A
�A�~Ab<WA��4A_�!Am06A �gAUΆA��A,HA���@e?�?YL'>�E@l�+A�
�AF��A�OB�>BraB���B��B�l�BC��B[+�Bz�~BK�mB�jBɏyBL�B�ۅB��{B�p[Bp(B�M�A�Ǹ?�Ř�}i����S%��}~�����������C������T|��P?��
!��,\���&�@=sAX'�A�B��(B�=B%ARBl�`B'eWB��"Bi�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�U�AnimationCurveL(�M;SAnimCurveS3�	DefaultDK�KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveLX�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
�/�
KeyValueFloatf�?�?�?Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL�ZN;SAnimCurveS#�	DefaultD;�KeyVerI�t�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf���������I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5�AnimationCurveLȷM;SAnimCurveS�	DefaultD+�KeyVerI�d�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatfc�տc�տc�տ9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL(�M;SAnimCurveS�	DefaultD�d0:@�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&G�
KeyValueFloatf�%��AQͣA:'dA0gCA��OA�@TAq��AЫA��AY�AjF�AqlA��:A�+�@��@ރ-Ay܄A���A�����WA�f�B�'A �aA�9A�)A
�B��€����@rM�_�q�}�n�t�l�n�x����ƀ��~�A�mG��V�@�$MA�A���A(�A�B�BP� Bf�B��BC�3MC�lTC��WC¸ZC�m\C�E]C�_^C�3_C�S_C�I_C��]C�5\C��VC�ISC�MC$�JCM�EC!cCCF�BCNa@C�?C�<C�ACh�FC��IC�_LC9RLC��IC4cIC��ICWLC[zMC�-NC;�LC��IC�kGC��EC��EC��ECޏDC�"EC�FCO]JCd�PC�bRC�ZOC�KCHC��EC2`BC��?C(c<C�8C n;C��>C�=C�38CB�0C��.C�%C4�#C��#CZ�&C�n+C �0C�+2CY�0C��-C6+C�9*C�.,C��/C��3CZ6C�L5C�7/C�"'C4� C��CmCɲC@Cq�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLضM;SAnimCurveS;�	DefaultD�v�P@S�KeyVerI�P��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf��˄B�jB��8B��A�ĕAYvGA��/A�GA�A���A�
�A��A�h�AJ�A��B�Z$B�I\BD�BU��BƉ�Bz��B�B�a8B��;BR�}B-�BϹB�ܺB�O�B[��B�dBj�B��A˺�A��=B��B�k�B3D�By��B���BYxC!nC�C�G�BP��B�!�B�5�BB6�BWL�B�{�BIC�C�	C�C��CZ�C��CʤC}CCP	C�CueC�C.Y!Cu.#C�#C+�!CbyC��C�v
Cv�C��C��CK�C�C1-C�=�B���B�i�B�]�By�B���B�b�B���Bp�C��CqSC1CU�CU�C�#!C/'C�+C�-C϶-C�V.C`0CQ�1C�'2C��0C�#/C��/C
/0C��-C5i)CC^%C��"C�CS�C�4C�	C��C]Cw��BFRC{�CS	C�!CY�CmMC*"Cd�"C� C7VC6�Cc�C��CfCC��C��C��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�U�AnimationCurveL�M;SAnimCurveSs�	DefaultD�mN���KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�lsb�d��9����^�k������?/��?K_:@I,{@��@���@�>�@�_}@���?�{�g}𿯮�}��@\�k����WB*KؾW��?>/O�����l	%Aj�a�Xq���-e��
��7��1(��=r¿EĴ�U��8�A8j����=��������!�Pw&���+��0(������B �C��C�X C�'C�]/CT�4C�~7CR�8C�u9Cj�9C�#9C�8C��8CJP8CD�6CS7C��7C��7C�V7C�7Cj7C�7C�5C;<5C\�3C30C�.C�`-C0*C�3'C�(#C* C��Cv!C�#C�%C='C8)(C�z)C)�*C�s+C��,C�
.C[�/Cdw2C4CQ55C�46CDQ7C	8C�k8CWt8C��8CƝ8C��8CN#9C=99C�w8C�6C�J4CA0CB�+Cҁ'C��#C�&"C�^"C~k"C8�"C �#CR%C��'C��+C(%0C+x3C3q4Ca�3C�G1Cb�.C�Y,C !*Cu3(C�F%C��!C��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti���AnimationCurveL8�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
�/�
KeyValueFloatf�?�?�?Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveLh�M;SAnimCurveS#�	DefaultD;�KeyVerI�t�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5�AnimationCurveLH�M;SAnimCurveS�	DefaultD+�KeyVerI�d�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�L���L���L����KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveLx�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�
@�
@�
@9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI��]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�[�
KeyValueFloatfj��?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountij1
AnimationCurveL��M;SAnimCurveSO	DefaultD����?gKeyVerI�d�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�	
KeyValueFloatf��m?�v�>�u�<�)��n���)��<�켾�CH<�ο>��?�]�>�M>M
8=���>PPR?z�?��?r@�?V�?�Rb?�>к�>ݫ�?�	�?�@�@�	#@��&@j�@��?ML2?��(?wv�=��R?�*������+��ud�?��L@�r@�PP@�H@V?@w�@5�k?�=H��y`���B��|�YͿ�^���ˑ��������>�V?�#?C�?�d�|�1�G]��9���r��zJp���q�>*�.>'{�=����\K�rV���iw>*�*?��?��?難?�.�?Gi?;�*?�?,>(?lu?�>�$�=?K=��ټ�9�<�r>v+?��=??4?���=�"���n��~>���L��%�:Ⱦ�oi���
���;�-ʽYW�=��=;I�>A��>�S,?6�C?��V?d e?��r?�	y?��Z?Vl?=��>�_�=-C
>��>��?���>W#�>�=�ӽy��=%� ?�"�>�	KeyAttrFlagsi!�	KeyAttrDataFloatf

$
KeyAttrRefCounti�iAnimationCurveLX`N;SAnimCurveS�
	DefaultD���⿟
KeyVerI��
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf�E��P�!�.����n��rL���������Yo�S�=�N帿�i>[ʰ?Gӌ?V��-��g�¾��@>0@�>�y%�Z�C?堂�7�R��������Ʀ��Q��A���ݷ�ހ���Sk���?n�@;�@��#�a)(�)����]��px��Y�����	���������?�+� ����ߕ�?�Q�@��@y�@W�?MB?/����p�^�`��R��p���o��:���]:����?��K@/��@d<�@���@��A� AB�A7%�@�N�@��d@r
@�l>�뿿�=������P��?����Do��5�l	>@�ލ@�z@�H:@ˤ�?�GU?�LB?mdg?���?g�6@-k@��m@^0@F}?�ᾝ8���⼿�������|]8���6?�#�?8)@�^B@��o@��@�@@�
@�k�?E��?8��?%H�?���?��@J�O@�Oz@݂@�k@$
0@S@�0@ͭY@Q�_@�I@[8@��?�@7�g@��@�KeyAttrFlagsi!/KeyAttrDataFloatf

\KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS�	DefaultD�*�7��KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&
KeyValueFloatf�Ti��Vu�������M��!K�]�՘��J���7��>�z��s[�f��h�����2�ފ���F������!��\<������W��$D��������T���������쭄�,��mb����g���3���BG@��HA�u0AуA�a�A�N�A�M�AF�S?*0m�f�����`������{�k�Sj�'{��Η��YR��-���Až����	��B	����(����!%�M-“|¨��,����I������U��]���n��.��������
�{��9��j�	��G�7���i�����������f���Jk������0���IE��h?��Z�j���D��"�&p���p���V>wv@���@eOA�
Ab��@���@�S@��>u}��������v"�(�9��=\�%�����٨��C���谪��4���H���`�����!��%���a���d6g�T������|R��:�3��X�<I��������tV���_�-KeyAttrFlagsi!gKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL8�M;SAnimCurveS�	DefaultDKeyVerI�H%KeyTimel�Ig�R��&��@�
�{
KeyValueFloatf�?�?�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveLh�M;SAnimCurveSo	DefaultD�KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?KeyAttrFlagsi!WKeyAttrDataFloatf

�KeyAttrRefCounti	AnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI�8%KeyTimel�Ig�R��&��@�
�k
KeyValueFloatf�?�?�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLH�M;SAnimCurveS_	DefaultDwKeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatfM���M���M���
KeyAttrFlagsi!GKeyAttrDataFloatf

tKeyAttrRefCounti�"AnimationCurveLx�M;SAnimCurveS�	DefaultD�KeyVerI���KeyTimel��x�kH��YhK!V���6�r��$���ȑ�6K����U������hF�i�ÌM��4�b%��B�2�������Y0F�d���?ǔ��:�b���L>-اI�̘��
�~�w����ݍ}X?r`���Z�]ϧ^`mj�t�]\����i�~2�MBs��M�1(���qR�c������,�W�ivB�
�zŽђ�afY�DZ5n��㴨'�b_�`K�͝EtV��6��#~`Sԇ�Ŵ�A{'��/����1�Z�vn3mV��6�Q�0�^��#������i���bם�9�]tGߚ�bg�!��V��}���×�ӎ��EX��s�IW���K#�a��
fu�NҶ�U,�����:�.e�3ІE:��<%m�Y��Y�GCNѾ�F96������*h�oJ��g��a�W���fT�&l�9�
�+�B���;�^������iWy�#���;CG˓��,�au�p�Y���^����`�l�N5�)|u��7��h�9�=щm��X�]r�f.�VW�-ʛ�ā)�Kl9�����^'6`_��#69�&kha��{&ӽظ/(���O�`&�TC�E��'�v�L�����V5�
K�`Wj$�"��3�8:��v>Q���꤭m����;v���6M/�$��\�����X����Ƶu�->S�%��w���mB=e�i6`Ѧ�o8��6Ж�O�q�ż�}Qe�z�� �n�z��3�/�"

KeyValueFloatf�]2L�]2L�]2L�^2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�a2L�_2L�_2L�_2L�]2L�]2L�Y2L�_2L�\2L�^2L�]2L�_2L�]2L�]2L�_2L�_2L�]2L�]2L�[2L�]2L�_2L�[2L�]2L�]2L�a2L�]2L�_2L�]2L�]2L�]2L�]2L�]2L�_2L�[2L�[2L�]2L�]2L�]2L�]2L�]2L�[2L�]2L�_2L�]2L�[2L�[2L�]2L�[2L�]2L�_2L�]2L�]2L�[2L�[2L�]2L�_2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�^2L�]2L�`2L�_2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�5"KeyAttrFlagsi!o"KeyAttrDataFloatf

�"KeyAttrRefCounti�Y(AnimationCurveL��M;SAnimCurveS�"	DefaultD#KeyVerI� &�KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��'�
KeyValueFloatf]t��D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D���D��'KeyAttrFlagsi!(KeyAttrDataFloatf

L(KeyAttrRefCounti]�.AnimationCurveLعM;SAnimCurveS�(	DefaultD�l&!��(KeyVerI��+�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�-
KeyValueFloatf�g3	����b�������������k�����MV���0���h���������1���d���--�p�����R�g3	�a ����������Q����Ѣ��1�3S��� ��L(���/�ڹ6��7=�3�B���G��zK�@�M��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N��N���L�0H���@���7���-���"��K�ל�����Q�����������Y����H����f��{�����g3	��}��.�M_��%�_��P��������h��y���2=�������q������N��1�����ԅ��j����������1��[���?���g3	�p
	���y�����f���S�X��1��F��"/������a�������'��EC��g7��Y+���N��.KeyAttrFlagsi!W.KeyAttrDataFloatf

�.KeyAttrRefCounti��4AnimationCurveL��M;SAnimCurveS�.	DefaultD���1@�.KeyVerI��1�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&+4
KeyValueFloatf����A�ۊAߗ�A]W�A9�A?T�A���At�~A�|A��{Ak{A�|A��}A�b�A+P�A֝�A��A4��A���A���A��A韋A���Aݷ�A�υAb߃A}��A_�~A�zA��uA�>qA�TmA�iA��fA�dAP�bA�aA�`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A��`A,aA��bA�eAP�iAkoA�uA�l{A�܀A⫃A�υA�i�ACΈAJ�AC�A��Ah��A�4�A�|�A�o�A���AY�A�{�A#��Amq�At5�A���A��Ak{A�vA�_oAf+iAWdApJaA	M`A-aA�cA�afA�KkA��qAp�yA�!�A�v�A�F�A���A���A��A���Aӗ�A��A��AoƄA�v�A$�An�{A�wA��rA~�nA?YkA;HhA�eA�ycAb�aA	M`AU4KeyAttrFlagsi!�4KeyAttrDataFloatf

�4KeyAttrRefCounti�;AnimationCurveL��M;SAnimCurveS5	DefaultD`l�2@75KeyVerI�48�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&c:
KeyValueFloatf�c��A�!�A�A�A=��A�w�AL�A4��A�V�A�=BXB��B��A3��A!!�A�S�A\�A�g�A�F�Ac��A��A��ANʶAT�AC'�A���A��A���AEr�AؒA���AӚlA-�PA:`6A��A�
AqY�@�W�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@w��@��A�&A�0JA�2rAF��A��AH#�A�P�AC'�A�6�AW��A=��A�ʸAay�A�A/��A�D�A��Ac��A��AJ9�A`�AfN�A�I�A�5�AeG�AXB6BMBJ�*B<7B�\?B�H@Bs~:B��0B�v$B�/B�BZ��A�V�A�p�AﱦAL��Ac��A�T�A�:�Au�A:ͨAO
�A[��Am�AW�A���A%o�A�KB�
Bd�BN� B�&)B�]1Bk9B�H@B�:KeyAttrFlagsi!�:KeyAttrDataFloatf

�:KeyAttrRefCounti�y<AnimationCurveL�M;SAnimCurveSW;	DefaultDo;KeyVerI��;%KeyTimel�Ig�R��&��@�
��;
KeyValueFloatf�?�?�?<KeyAttrFlagsi!?<KeyAttrDataFloatf

l<KeyAttrRefCounti�=AnimationCurveL�M;SAnimCurveS�<	DefaultD�<KeyVerI� =%KeyTimel�Ig�R��&��@�
�S=
KeyValueFloatf�?�?�?}=KeyAttrFlagsi!�=KeyAttrDataFloatf

�=KeyAttrRefCountii?AnimationCurveL��M;SAnimCurveSG>	DefaultD_>KeyVerI��>%KeyTimel�Ig�R��&��@�
��>
KeyValueFloatf�?�?�?�>KeyAttrFlagsi!/?KeyAttrDataFloatf

\?KeyAttrRefCounti%EAnimationCurveL\N;SAnimCurveS�?	DefaultD�?KeyVerI��B�KeyTimel^��Ig�R���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��D�
KeyValueFloatf^x�6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��DKeyAttrFlagsi!�DKeyAttrDataFloatf

EKeyAttrRefCounti^�KAnimationCurveLx�M;SAnimCurveS{E	DefaultD�EKeyVerI�IuKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��J�
KeyValueFloatfm�D�D�D�E�E�E�E�D�D�B�E�C�D�D�E�D�D�E�F�C�C�C�D�E�C�D�D�F�D�D�D�D�D�C�D�D�C�C�D�D�D�D�D�C�C�E�D�C�C�D�C�D�D�D�C�C�C�D�E�D�D�D�D�D�D�D�D�D�D�D�E�E�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�!KKeyAttrFlagsi![KKeyAttrDataFloatf

�KKeyAttrRefCountimYOAnimationCurveL��M;SAnimCurveS�K	DefaultDLKeyVerI��M�KeyTimel4��Ig�Rp_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��N�
KeyValueFloatf4��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��Ȕ��NKeyAttrFlagsi!OKeyAttrDataFloatf

LOKeyAttrRefCounti4�UAnimationCurveLؼM;SAnimCurveS�O	DefaultD`K�	��OKeyVerI��R�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�T
KeyValueFloatf�[JL�\�m��N��rϜ��T�����������_��Ϙ������w���L���������|l���«�/��Mm��o`�YJL�fIU�4�z�p���Bͦ�k���u^���}������;v��|S��.�w;	�f�ȿ�o������Yɽ��l>��>;)?O)?$)?.)?-)?;)?D)?4)?A)?6)?I)?;)?B)?<)?8)?9)?;)?C)?@)?0)?-)?@)?B)?=)?:)?;)?+)?6)?G)?K��>�8X�w',�䶶�y0�ԀE�]tw��6��2���k����,��x����ơ�)��^e���U{�Zd�)�R���I�ZJL���[�,�u�9���
������
���6���w��3�m����&�3�3��j;�9N<��6�ł-��� �����\�����X4�������|�qLY�[JL�qP���Z���k��H������מ��I������ו��h�������k�	�S�̾�X�%�F�-���5�9N<�UKeyAttrFlagsi!WUKeyAttrDataFloatf

�UKeyAttrRefCounti��[AnimationCurveL�M;SAnimCurveS�U	DefaultD�7��?�UKeyVerI��X�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&+[
KeyValueFloatf��Y�>n
?�"H?�'�?4�?��?J��?�@ �@�F%@�(@-D#@��@D�@Q�?l�?��r?&
+?���>�Y�>���>
|?;]h?��?5�?��?�Sp?�??�n	?P��>TS�=���I����*Ѿ�N��� �ƚ2�gR=�1�@�K�@���@���@�
�@��@��@��@��@��@�$�@��@��@�	�@��@��@��@�
�@��@��@��@��@��@��@��@��@�'�@�
�@��@��m9��\#�ĝ��j�����;�2@x>j�?��U?k�?5�?�
�?8��?��?�q?3�E?"^?۝�> 9�>	c�>�Y�>=��>Z�?�O?���?lٶ?�X�?��
@�(@ �K@��{@���@p�@���@���@��@��@�(�@j@��7@�a	@8B�?���?q%?�t�>�Y�>vʹ>�C�>N	?��.?�X_?�)�?��?���?�L@��@W�5@65R@?�o@,N�@~Ö@6�@��@���@U[KeyAttrFlagsi!�[KeyAttrDataFloatf

�[KeyAttrRefCounti�bAnimationCurveL��M;SAnimCurveS\	DefaultD�b6@7\KeyVerI�4_�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&ca
KeyValueFloatf���A�F�A���A�X�A���A�&�AL�A��B�	B׶B	�B�!BL�Ba�B[��A��A�A���A½�A��A{�Ax��AI��AL)�AX�A��A.�A���AH	�A�G�A���A�~�ADO�A�ӄA,�tA�]cA��UA��LA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA�IA,PAK|aAT5{A�b�AKΞA	��Au�A)�A�q�AX�A��A(�A��AQ*�Aq��AM��A�!�A�=�A9�A��A�8�A��AQ��A+��A���Ap��AH�B	�BBH,"B�.B�_9B|4@BF�@B�.<B#4B��)B�cB�6B��BJ�A��AY��A�r�A��A�R�A��Aȼ�A�t�A���Ak��Ao�A�@�A8�B�B��B0B>�BdM&B��-B��4B�;BF�@B�aKeyAttrFlagsi!�aKeyAttrDataFloatf

�aKeyAttrRefCounti�ycAnimationCurveL�M;SAnimCurveSWb	DefaultDobKeyVerI��b%KeyTimel�Ig�R��&��@�
��b
KeyValueFloatf�?�?�?cKeyAttrFlagsi!?cKeyAttrDataFloatf

lcKeyAttrRefCounti�dAnimationCurveL�M;SAnimCurveS�c	DefaultD�cKeyVerI� d%KeyTimel�Ig�R��&��@�
�Sd
KeyValueFloatf�?�?�?}dKeyAttrFlagsi!�dKeyAttrDataFloatf

�dKeyAttrRefCountiifAnimationCurveLH�M;SAnimCurveSGe	DefaultD_eKeyVerI��e%KeyTimel�Ig�R��&��@�
��e
KeyValueFloatf�?�?�?�eKeyAttrFlagsi!/fKeyAttrDataFloatf

\fKeyAttrRefCounti�lAnimationCurveL�XN;SAnimCurveS�f	DefaultD�fKeyVerI�Hj]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�l�
KeyValueFloatfj��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	��!	�AlKeyAttrFlagsi!{lKeyAttrDataFloatf

�lKeyAttrRefCountij�rAnimationCurveL�XN;SAnimCurveSm	DefaultD#mKeyVerI� p�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&Or
KeyValueFloatf���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b�yrKeyAttrFlagsi!�rKeyAttrDataFloatf

�rKeyAttrRefCounti�9yAnimationCurveL��M;SAnimCurveSCs	DefaultD[sKeyVerI��v]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��x�
KeyValueFloatfj�qZ�qZ�qZ�rZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�rZ�rZ�pZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�rZ�qZ�qZ�qZ�qZ�qZ�qZ�rZ�qZ�qZ�qZ�qZ�qZ�qZ�rZ�rZ�qZ�rZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ�qZ��xKeyAttrFlagsi!�xKeyAttrDataFloatf

,yKeyAttrRefCountijqAnimationCurveL(�M;SAnimCurveS�y	DefaultD@!���yKeyVerI��|�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�~
KeyValueFloatf�
I���9���>��:����Ɉ�����xs��f�`�\���U��rS��W��Xc���s�}���hz������B��Jd��	I��x����K���=���`��rS��KU��sZ�dTb��Sl���w��%��ٌ���ێ�XД��,��!����8��i{��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I��I����������I)���K��܌���=�N�n���`�g�V��rS�_�V���`�Q�n��=�ڌ���K��;)��x���z���
I��+������_��Ԍ����z��g���X��rS��rS��rS��rS��rS��rS��rS��eV�/s^��`j���x�-x������K��R��s��&��
I��o�������x���i�����;��g������2��5Ƌ��n��������|�t��Gk���b��Z��rS��~KeyAttrFlagsi!7KeyAttrDataFloatf

dKeyAttrRefCounti���AnimationCurveLX�M;SAnimCurveS�	DefaultD�z��?�KeyVerI�܂�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf��#�?k^�?^�{?k�]?�GB?�*?�U?�?F�>�>��>Oi�>O6?-�?��1?}:R?USu??!�?mb�?�#�?<�?}+`?D�&?j?���>��>2�>b-?�?c�?��-?C�A?�*W?��m?q�?8/�?��?U�?�#�?�#�?$�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?�#�?@�?F�?T�?�+`?$�A?O�&?�m?j?��>���>��>�i?�m?3�&?�A?u+`?A�?=�?�?�?�#�?�2�?ZG�? h?8�A?� ?�#	?�[�>��>���>��>���>���>��>��>���>�Y?j�?^>?�4?�O?}�k?��?�?�?;�?�#�?�L�?7�?�?*�?D�?���?�y?0j?L'[?*IL?Y�=?'C0?z�#?|	?ȷ
?ѯ?R��>��>5�KeyAttrFlagsi!o�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD���;@�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&C�
KeyValueFloatf����A��AkV�A`�A�>�As�A�}�A�ߘA��Aʩ�A��AI�A���A�áA��A�ڼAz�A�0�A��A���A/�A�K�AY��AƔA��AK�A#��A��AΨ�ABw�A>�A�A�оA�Z�A[)�A���A9�A\��A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A�g�A-�A'��A�K�A�AX��A�$�AƔA�j�A��A�j�AƔA�$�AY��A�A�K�A(��A/�A�g�A���AU'�A��A@F�A�A֋�A/%�A��A��A��A��A��A��A��A��A��AH]�A�X�A�7�AV8�A���At��ADy�Au�A���A���A?�A%��A�|�AXg�As��A<A�A�\�A�	�A�^�A�q�A�X�AZ)�A"��A�A��AoI�A��A��Am�KeyAttrFlagsi!��KeyAttrDataFloatf

ԋKeyAttrRefCounti�Y�AnimationCurveL�M;SAnimCurveS7�	DefaultDO�KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?�KeyAttrFlagsi!�KeyAttrDataFloatf

L�KeyAttrRefCountiюAnimationCurveLXcN;SAnimCurveS��	DefaultDǍKeyVerI��%KeyTimel�Ig�R��&��@�
�3�
KeyValueFloatf�?�?�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĎKeyAttrRefCountiI�AnimationCurveL� N;SAnimCurveS'�	DefaultD?�KeyVerI�x�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?ՏKeyAttrFlagsi!�KeyAttrDataFloatf

<�KeyAttrRefCounti��AnimationCurveL� N;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
�#�
KeyValueFloatfE���E���E���M�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL(!N;SAnimCurveS�	DefaultD/�KeyVerI�,��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&[�
KeyValueFloatf�P�{>P�{>O�{>O�{>P�{>O�{>O�{>P�{>O�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>N�{>O�{>P�{>P�{>O�{>O�{>Q�{>N�{>P�{>P�{>P�{>N�{>O�{>P�{>N�{>P�{>N�{>O�{>P�{>P�{>O�{>Q�{>O�{>P�{>N�{>P�{>O�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>Q�{>O�{>P�{>P�{>P�{>O�{>P�{>P�{>O�{>P�{>Q�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>P�{>P�{>O�{>N�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>N�{>N�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>O�{>P�{>P�{>P�{>O�{>��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti���AnimationCurveLX!N;SAnimCurveSO�	DefaultDg�KeyVerI�p��KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���
KeyValueFloatf]t�m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{��m{�5�KeyAttrFlagsi!o�KeyAttrDataFloatf

��KeyAttrRefCounti]�AnimationCurveL N;SAnimCurveS��	DefaultD��#��KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&C�
KeyValueFloatf��q���Z���@�$�$������վGd����^���N⼽���yҽsm7�K쓾�־͸
��/�cL��3c��q���d�;�>�l��H���CI\�򖿷ƿ͗������3��PO�M�i�+�����Q���b��R��'���%���(���'���(���'���&���'���&���'���&���'���&���'���'���'���'���&���&���'���(���&���&���&���'���'���(���'���&����'�����
����m��wG���#�������f��� �侷þDǾa��{���)�uUG�p�_��no��q�� f��S���:�L.����3α�,U������=gD�>9
?�6@?��c?Df?ZJ?�F?F]�>#>�ۦ�e㞾��[�0�.�R�1+i��q�@�n�,(h��v]��O��=�K�'�%��
�>����_�,@���L=]�D>뮬>�_�>� ?'dD?Df?m�KeyAttrFlagsi!��KeyAttrDataFloatf

ԣKeyAttrRefCounti��AnimationCurveL8 N;SAnimCurveS7�	DefaultD��6@O�KeyVerI�L��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&{�
KeyValueFloatf����@���@���@Ru�@';�@�W�@���@�W�@��@�»@D �@��@IԾ@��@#�@-�@1�@��@И�@���@(5�@�5�@���@�[�@��@�e�@�Y�@���@���@���@�b�@&z�@���@{�@L�@��@`�@�R�@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@�-�@<��@�,�@���@f�@�G�@�g�@���@��@��@���@�D�@��@ F�@���@c
�@��@e��@ ��@���@Rq�@���@*��@���@��@�+�@
.�@D �@���@�i�@�@h�@*[�@�@���@j��@�ܛ@�Ҥ@y*�@�\�@;��@�]�@�M�@r�@���@|�@;�@FS�@W��@��@���@%	�@b�@�ݼ@u��@m�@K_�@���@�@�י@-�@e��@�@��KeyAttrFlagsi!ߩKeyAttrDataFloatf

�KeyAttrRefCounti�Q�AnimationCurveLh N;SAnimCurveSo�	DefaultD���3@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�&�A��A���A���A�x�AT��Adz�Ag�A��B*�B��B)BB�|�ArC�A�V�A�3�A�V�A.:�A1W�A&�A�ҠA�U�A�[�A#��Aϒ�A���A��A+ѽA�O�A��A��A���A��A�ÄA��xA�OjA�,_A'�WA"jUA"jUA#jUA#jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA"jUA��ZA��hA'f}A
s�AD~�A�ȧA`G�AM��Ah��Aϒ�A��A���A4��A��AN�A���A�:�A���A_��A&�A���Av�A�n�A�.�Av��A���Ao�A��BMSBƶB7�+BL�7BM~?B�r@B�;B�%2B�x&B	�Bs
B��A���Au�A�ۯA�ۢA&�A��A�e�A	��A?�A��A~��A��A�w�A���AhjBZ�	BhB�uB �"B��*B�2B��9B�r@BݯKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti�ɱAnimationCurveL� N;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
�+�
KeyValueFloatf�?�?�?U�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiA�AnimationCurveLHN;SAnimCurveS�	DefaultD7�KeyVerI�p�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?ͲKeyAttrFlagsi!�KeyAttrDataFloatf

4�KeyAttrRefCounti��AnimationCurveLxN;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?E�KeyAttrFlagsi!�KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveL�N;SAnimCurveS�	DefaultD'�KeyVerI�`�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf/=��/=��/=����KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCountiY�AnimationCurveL�N;SAnimCurveS��	DefaultD��KeyVerI����KeyTimel��x�kH��YhK!V���6�r��$���ȑ�6K����U������hF�i�ÌM��4�b%��B�2�������Y0F�d���?ǔ��:�b���L>-اI�̘��
�~�w����ݍ}X?r`���Z�]ϧ^`mj�t�]\����i�~2�MBs��M�1(���qR�c������,�W�ivB�
�zŽђ�afY�DZ5n��㴨'�b_�`K�͝EtV��6��#~`Sԇ�Ŵ�A{'��/����1�Z�vn3mV��6�Q�0�^��#������i���bם�9�]tGߚ�bg�!��V��}���×�ӎ��EX��s�IW���K#�a��
fu�NҶ�U,�����:�.e�3ІE:��<%m�Y��Y�GCNѾ�F96������*h�oJ��g��a�W���fT�&l�9�
�+�B���;�^������iWy�#���;CG˓��,�au�p�Y���^����`�l�N5�)|u��7��h�9�=щm��X�]r�f.�VW�-ʛ�ā)�Kl9�����^'6`_��#69�&kha��{&ӽظ/(���O�`&�TC�E��'�v�L�����V5�
K�`Wj$�"��3�8:��v>Q���꤭m����;v���6M/�$��\�����X����Ƶu�->S�%��w���mB=e�i6`Ѧ�o8��6Ж�O�q�ż�}Qe�z�� �n�z��3�/���

KeyValueFloatf��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������KeyAttrFlagsi!�KeyAttrDataFloatf

L�KeyAttrRefCounti���AnimationCurveL8N;SAnimCurveS��	DefaultDǼKeyVerI�P�uKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�+��
KeyValueFloatfm�[:��[:��[:��Z:��[:��[:��Z:��Z:��[:��[:��[:��Z:��[:��[:��[:��[:��Z:��\:��\:��Y:��Z:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��Z:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��Z:��Z:��\:��\:��[:��\:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��Z:��[:��[:��[:��[:��U�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountim�AnimationCurveLH[N;SAnimCurveS�	DefaultD�
�7�KeyVerI�4��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&c�
KeyValueFloatf��m��������ֿ5]���(����7B.�ha;��E��?L��N���J�n@��1�[�G�	�P뿆�ƿ񽩿�m�������D���#@���
��O�Hk���R%ڿ˷ÿR᫿X��|�v��BI�P��i ���;¾����L	��%	��}	��h	��l	��P	��<	��_	��E	��Y	��0	��O	��B	��O	��U	��T	��R	��@	��F	��e	��k	��F	��D	��K	��Q	��N	��m	��[	��9	��9X���M��1+�p�i�l疿�m����ٿo��X���
�h�
�U��'����?�wԿ�˾�����4������m��a᥿��&�ۿ֓��R}���'���;��N�#e�u�������R������ X��p>�����������Hu�r�U�N5����?���ÿBˣ��m��H���B������ǿ�2�! ���
�3=���/�2�A��HT�:�f���x�n���1����)��� X����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�9�AnimationCurveL��M;SAnimCurveSW�	DefaultD�]�?o�KeyVerI�l��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��r�<�&�=&K�=��>>†>p�>���>��?�]?f�?�!?�0?B
?6��>ď�>f!|>2�$>Qӿ=�A=s�<�5�<桑=�>4L>�a>D�L>�U/>�>K��=�w=+��<���
���x�����b޺�&̽��ս�ٽIٽ;ٽ�ٽhٽ�ٽ�ٽ8ٽ�ٽ�ٽٽ�ٽ�ٽEٽ�ٽ�ٽvٽKٽ�ٽ�ٽ�ٽ�ٽ;ٽ|ٽ�ٽ�ٽ;ٽhٽ�ٽ�uҽw������-5��ۉ�0�7=�4�=�>�G>�a>�~c>.QR>��3>,�>���=y1�=��*=s��<��<es�<x&=̇�=0>�\F>��>x�>� ?�!?�N?�U�?�)�?԰�?�L�?g��?���?U@�?���?4�u?��5?C��>^�>[e6>ݵ=�=;s�<�%�<J�$=Sӂ=L��=y�>RN>S��>���>���>U�?%D3?hW?:w}?N�?���?Ω�?.@�?g��?��KeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCounti�q�AnimationCurveL�M;SAnimCurveS��	DefaultD��5@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�h�As��Ag;�A���A���A���A�B��B�TB%GB�UB��
B	B'YB���A5�A���Aå�A���Ah�A�d�A���AG_�A	?�A<��A��A�h�A�5�A���AYl�A��Ak��A��AHM�A�ݐAЮ�A�A퀀A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A�q~A0ʁAˈA�.�AV�A��A/�Az��Ad8�A���A<��Ar��A S�A��A���A���A��A��A�;�A�Z�Ah�Ac��A�~�A�,�A�<�Aa��A9a�A��B�UB�B��&B0�4B�I@B-�GB{�HB�TCB�t:B��.Bv!B�Ba~BR�Ao��A�,�A�"�Ah�A�ðAʮ�A��A�D�A1x�ALL�AL��Ak��ArB�
B�WB+�B2#B�A+Br?3BS�:B�BB{�HB��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCounti���AnimationCurveLH�M;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
�K�
KeyValueFloatf�?�?�?u�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountia�AnimationCurveLx�M;SAnimCurveS?�	DefaultDW�KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!'�KeyAttrDataFloatf

T�KeyAttrRefCounti��AnimationCurveL(�M;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
�;�
KeyValueFloatf�?�?�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiQ�AnimationCurveLX�M;SAnimCurveS/�	DefaultDG�KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf��<���<���<���KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI�H�uKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�#��
KeyValueFloatfm�l�D�l�D�l�D�m�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�m�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�l�D�M�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountim
�AnimationCurveL��M;SAnimCurveS�	DefaultD/�KeyVerI���]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�o��
KeyValueFloatfj�֨�֨�֨�ר�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�ר�ר�ը�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�ר�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�ը�ը�ר�ب�ר�٨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨�֨쾙�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountijE�AnimationCurveLh�M;SAnimCurveSc�	DefaultD�3��{�KeyVerI�x��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��������]��ʃ쿶O߿�^ҿeSƿAԻ�X���	��_!���������,�ƿ�ֿ�+�j�������7����!�����пpж�U!������ӱ��A���r����ɿ>Կ��޿�}�l��V����3��5�@(�������������������������������������������������������������������������������������������6����������޿�п�A¿qж���T!����}ж��A¿�п��޿���u���$�����������4\����޿�s̿C)��
���`!��`!��[!��Q!��V!��U!��P!������G��Fپ���ʿ�ؿ׮�Щ��+��P�������������ql�u��}������:��U�hT뿑O�Pݿ�տA.ο��ƿ��������$��T!����KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti�}�AnimationCurveL��M;SAnimCurveS��	DefaultD����?��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�u�>;�c>z�=>�D>y��=�3�=�+�=���=
Uo=�_=F�Z=
�c=_z�=p�=�L�=y
>g�5>T^>��|>!u�>�De>&
>�a�=|z=q�Z=h^=�j=5�=�C�=yW�=8��=!9�=$�>��,>��G>ޯ`>��u>�݁>�t�>�t�>�u�>�u�>mu�>Yu�>Tu�>zu�>Qu�>?u�>u�>Su�>Ou�>pu�>Nu�>Ru�>`u�>iu�>Ku�>Au�>Au�>Xu�>pu�>\u�>Qu�>Hu�>%u�>hu�>Su�>\>�De>JjB>I
>8�=�a�=h��=}z=��a=|�Z=�b=�yz=���="a�=t6�=
>jB>�De>�>u�>)�y>�T>�M&>�8�=]�=9��=�Ff=%�Z=��Z=A�Z=:�Z=m�Z=��Z=̿Z=޸`={vt=Ꮝ=F�=���=I�	>�*>�nL>��j>#T�>�t�>�b�>�R�>�w>��j>�[>�K>�_:>ּ(>�E>w>�r�=[��=XS�=t�=A�=�=��j=οZ=	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti���AnimationCurveL��M;SAnimCurveS��	DefaultD �m<@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf�!m�A�*�Ah��A:��A�I�A�S�A�7�A�w�A���A_�A-x�A�a�A�0�A�~�A��A���A�f�At��AN��A!m�AI��Ay��A�_�A�M�A-x�A0��A�,�A��A�O�A�<�A�A��A���AU��Am��A(e�Ai��A0�A!m�A m�A"m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A!m�A-�AH��Ad�Ax��A��A�_�A�ѠA�M�AِA-x�AِA�M�A�ѠA�_�A��Ax��Ad�AI��A-�A!m�A���A�&�A���A��AyY�AE��A��A-x�A-x�A-x�A-x�A-x�A-x�A-x�A�r�A�ߕA���A�A�+�A`��A��A{��A��A�r�A!m�A���A�q�A��A���A#�A���A��ASR�A;��A��A\�A��A[ͪAk��A@��A>טA�o�A-x�AA�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�-�AnimationCurveL��M;SAnimCurveS�	DefaultD#�KeyVerI�\�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�_N;SAnimCurveS��	DefaultD�KeyVerI�L�%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLX�M;SAnimCurveSs�	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf���������!KeyAttrFlagsi![KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultDKeyVerI�|eKeyTimelkX�Ig�RX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�O�
KeyValueFloatfk��Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>�Q�>yKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountik�AnimationCurveL��M;SAnimCurveSC	DefaultD[KeyVerI�l
�KeyTimel^��Ig�R���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��
KeyValueFloatf^x���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?5KeyAttrFlagsi!oKeyAttrDataFloatf

�KeyAttrRefCounti^�AnimationCurveL��M;SAnimCurveS�	DefaultD�u*�?
KeyVerI��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&C
KeyValueFloatf��S�?�K@1@J@	�@u�@��@t�@-N@5@�@^@��@��@ �@E�@�e@�@���?�S�?C��?���?O��?W�@�@*w@��@���?D��?F�?jn�?�V�?��?���?"��?{4�?G�?��?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�-�?�/�?_��?{��?�B�?4��?�/�?���?:]@^\@�@��@E�@��@���?��?���?���?�H�?d�?�S�?�	�?�@o@
_@��
@ʡ@Nu@�@q@ $@�e+@)1@S�4@L�6@H�6@	�5@&�2@��-@r�&@Y@�@��@�@]�?�S�?�t�?ڱ�?�e@I�@��@�2
@�@U�@��@�� @I%@�l)@�-@�)0@��2@��4@��5@K�6@mKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS7	DefaultD�X��OKeyVerI�L�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&{
KeyValueFloatf��j&�p�����$��x�l��ʺ�����翽��s<�p�����r�������,�,�o��1#��j&��+!�{������G�%�>���B�¬������L��a������{�Rf$���(�Uz+�A~,�D~,�6~,�9~,�;~,�<~,�<~,�:~,�<~,�=~,�?~,�<~,�<~,�;~,�=~,�<~,�<~,�;~,�=~,�=~,�=~,�<~,�;~,�<~,�<~,�=~,�?~,�;~,�<~,���*�MK%�	���.�,J���,���T��n{�%�U�hz￑����,����[��Z�ā!��y%��j&���#����2a�zO��Z������H�t<�KR޿��޿��㿲h���4�����������8���0��������|����G$��j&�{�%���#�e!��y��L�����9����c���������I���~��`���p���l����-��4����KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�QAnimationCurveL��M;SAnimCurveSo	DefaultD���3@�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf�~��A|I�A�͹A)X�AL'�A�x�Ao��A��B0�BtIB�}
BB�Ba>Bm�ANs�A)��A�A��AnK�A~��Aq�Ay��A�u�A��AW
�AQ��AV��A&5�A�'�AL�A�P�A�V�A
��AnH�A��A 1|Au�oA(�gA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eA�eAϼjAzA;d�A�K�A���A=�A���Am"�A�P�AW
�Aۚ�A2��A7��AӼ�A���A��AG�Aq��A;֛A~��A���A��A-@�A���A���Ao��A�MB�}
B�[B[�%B��3BM�?BJFGB��GB�ABk%8B,�+B�B�
B��Ar�A6P�A�k�A:��A~��A���A�/�AݨA�ȱA(��A�]�A҉�A���A�g�AgMB�(
B4%Bi#B�(B��0B?�8BY�@B��GB�KeyAttrFlagsi!KeyAttrDataFloatf

DKeyAttrRefCounti�� AnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI��%KeyTimel�Ig�R��&��@�
�+ 
KeyValueFloatf�?�?�?U KeyAttrFlagsi!� KeyAttrDataFloatf

� KeyAttrRefCountiA"AnimationCurveL(�M;SAnimCurveS!	DefaultD7!KeyVerI�p!%KeyTimel�Ig�R��&��@�
��!
KeyValueFloatf�?�?�?�!KeyAttrFlagsi!"KeyAttrDataFloatf

4"KeyAttrRefCounti�#AnimationCurveL��M;SAnimCurveS�"	DefaultD�"KeyVerI��"%KeyTimel�Ig�R��&��@�
�#
KeyValueFloatf�?�?�?E#KeyAttrFlagsi!#KeyAttrDataFloatf

�#KeyAttrRefCounti1%AnimationCurveL�M;SAnimCurveS$	DefaultD'$KeyVerI�`$%KeyTimel�Ig�R��&��@�
��$
KeyValueFloatfc0��c0��c0���$KeyAttrFlagsi!�$KeyAttrDataFloatf

$%KeyAttrRefCountii+AnimationCurveL8�M;SAnimCurveS�%	DefaultD�%KeyVerI��(�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�*
KeyValueFloatf�3�<4�<4�<4�<5�<3�<3�<8�<3�<4�<4�<5�<6�<5�<5�<5�<5�<4�<4�<4�<5�<5�<2�<2�<8�<:�<@�<C�<6�<2�<3�<3�<9�<5�<8�<0�<1�<8�<5�<E�<�<)�<.�<4�<7�<3�<6�<3�<9�<5�<7�<5�<4�<5�<6�<7�<5�<2�<3�<5�<6�<4�<4�<4�<2�<1�<;�<5�<5�<3�<3�<2�<5�<6�<6�<2�<3�<3�<1�<2�<4�<0�<7�<5�<5�<6�<5�<1�<2�<5�<6�<0�<1�<4�<2�<4�<4�<5�<4�<5�<5�<5�<4�<5�<5�<6�<4�<4�<5�<4�<5�<4�<5�<4�<5�<6�<4�<5�<4�<5�<4�<5�<5�<5�<5�<5�<5�<5�<5�<3�<�*KeyAttrFlagsi!/+KeyAttrDataFloatf

\+KeyAttrRefCounti��1AnimationCurveLh�M;SAnimCurveS�+	DefaultD�+KeyVerI�h/}KeyTimelnp�Ig�R`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�G1�
KeyValueFloatfn�?%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%??%?q1KeyAttrFlagsi!�1KeyAttrDataFloatf

�1KeyAttrRefCountin8AnimationCurveL��M;SAnimCurveS;2	DefaultD�c��?S2KeyVerI�P5�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&7
KeyValueFloatf���>�i�>��?�x-?�(E?k�[?h-p?�ǀ?恇?ۋ?pg�?��?j�?��s?m�Z?"
??Fi#?B\
?aB�>$��>���>!>?�Z%?=?+E?U<@?118?y�-?�� ?u?Q?�|�>��>G��>��>yUl>��G>J0>!�'>^�'>ߌ'>��'>�'>!�'>I�'>�'>6�'>�'>[�'>"�'><�'>$�'>�'>�'>�'>C�'>4�'>�'>�'>5�'><�'>+�'>�'>#�'>ތ'>
�'>M�'>�^8>bf>{Ô>���>�E�>-{?;5 ?��1?Ɖ>?+E?Y�D?
j>?��3?��%?�b?d
?��>�
�>�W�>��>���>��?di?��0?�uK?s�f?�Ԁ?pg�?0�?���?�̾?��?���?GT�?C��?6��?�?G�?O�?��t?�XK?��%?2?��>��>�\�>���>�>��
?��?ъ-?GB?GX?�	o?�O�?E-�?��?UR�?�=�?)��?L�?��?FT�?�7KeyAttrFlagsi!�7KeyAttrDataFloatf

8KeyAttrRefCounti�U>AnimationCurveL�\N;SAnimCurveSs8	DefaultD`��}��8KeyVerI��;�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�=
KeyValueFloatf�;���\��)_o������)��0��Y�.:��n.��A����ힾዘ�+·�O<a���-�P����Ξ�R�2��������Y�(�%��>��9��J|��\��YU��ɿ�'���N<[��K���i�b�6;,�<��<f�=�48=�4H=��M=��M=5�M=��M=ݩM=��M=��M=6�M=e�M=�M=W�M=b�M=^�M=�M==�M=T�M=��M=�M=;�M=ިM=بM=��M=�M=��M=M�M= �M=.�M=ǩM=s�M=��B=+1"=4B�<���;�����4�>ؕ��{ͽ�Q��A|�
���B���ӽ8z��r�KL�9l��}�6�T�����&�����V�}�ȸȽ�-���G������ힾmž�~����>2���B�L�C�s6�@� �&��N=־�`��c8`�� ��ʥ��7"��n|�f��ߓ�*G��g_��_5��u��DL������5
'��1T�΍��3����1���޾�8������"���3�K�C��=KeyAttrFlagsi!>KeyAttrDataFloatf

H>KeyAttrRefCounti��DAnimationCurveL��M;SAnimCurveS�>	DefaultD���8@�>KeyVerI��A�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�C
KeyValueFloatf����A�A�,�A�M�AxXB.�B}�BJBc� B6$B!J%B%C#B`�B�B�,B�B��Ah��A��A���A���AUk�A+��A��B�B�)BC6B���A�0�Aͳ�A��AQ�A���A��A�e�A��A���A���A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A��A���AuܴAia�ADS�A�z�A��Aً�A��B�B�B{B���A��Ai>�A���ApR�A=y�A�A�A���Aq�Aht�A3��Ay��AuvB��B��B!J%B?0B%�=B��KB�WBx�^B�Y_B�LYBIsOBθBBu	4B9Q$B(|B_vBX�A��A��A���A�R�A���A�j�AɄ�A,��A���A$Bs�	B�6B�B1�#BO-BX16B�/?B&�GB�HPB�"XB�Y_BDKeyAttrFlagsi!SDKeyAttrDataFloatf

�DKeyAttrRefCounti�FAnimationCurveL��M;SAnimCurveS�D	DefaultD�DKeyVerI�4E%KeyTimel�Ig�R��&��@�
�gE
KeyValueFloatf�?�?�?�EKeyAttrFlagsi!�EKeyAttrDataFloatf

�EKeyAttrRefCounti}GAnimationCurveL(�M;SAnimCurveS[F	DefaultDsFKeyVerI��F%KeyTimel�Ig�R��&��@�
��F
KeyValueFloatf�?�?�?	GKeyAttrFlagsi!CGKeyAttrDataFloatf

pGKeyAttrRefCounti�HAnimationCurveLX�M;SAnimCurveS�G	DefaultD�GKeyVerI�$H%KeyTimel�Ig�R��&��@�
�WH
KeyValueFloatf�?�?�?�HKeyAttrFlagsi!�HKeyAttrDataFloatf

�HKeyAttrRefCountimJAnimationCurveL�M;SAnimCurveSKI	DefaultDcIKeyVerI��I%KeyTimel�Ig�R��&��@�
��I
KeyValueFloatf�S��S��S��IKeyAttrFlagsi!3JKeyAttrDataFloatf

`JKeyAttrRefCounti�KAnimationCurveL8�M;SAnimCurveS�J	DefaultD�JKeyVerI�K%KeyTimel�Ig�R��&��@�
�GK
KeyValueFloatf�7A��7A��7A�qKKeyAttrFlagsi!�KKeyAttrDataFloatf

�KKeyAttrRefCountiaRAnimationCurveLh�M;SAnimCurveS;L	DefaultDSLKeyVerI��O}KeyTimelnp�Ig�R`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��Q�
KeyValueFloatfn�N
->N
->N
->O
->N
->N
->M
->M
->O
->N
->N
->N
->O
->N
->N
->N
->N
->O
->L
->L
->P
->O
->N
->N
->N
->O
->N
->M
->M
->N
->N
->O
->N
->N
->N
->O
->N
->N
->N
->N
->O
->N
->N
->N
->M
->N
->N
->N
->N
->N
->N
->M
->N
->N
->N
->M
->O
->O
->K
->J
->M
->I
->N
->N
->N
->N
->N
->N
->N
->N
->N
->O
->O
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->�QKeyAttrFlagsi!'RKeyAttrDataFloatf

TRKeyAttrRefCountin�XAnimationCurveL��M;SAnimCurveS�R	DefaultD`R;�?�RKeyVerI��U�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�W
KeyValueFloatf���Q?7BK?=�C?4l;?��2?�w*?j�"?��?�0? �?�G?`�?h�?�"?�9-?��7?k�A?�4J?��O?��Q?i�K?<?�(?�\?�G?�F?�?�P?-�?;�$?��+?o�2?dy9?��??5�E?$�J?��N?��P?w�Q?��Q?{�Q?~�Q?r�Q?��Q?��Q?|�Q?��Q?w�Q?��Q?��Q?��Q?��Q?|�Q?}�Q?��Q?��Q?��Q?n�Q?i�Q?��Q?��Q?��Q?�Q?��Q?c�Q?|�Q?��Q?�+P?D�K?�D?<?Q�2?	�(?��?�\?p1?�G?�1?�\?��?�(?!�2?<?1�D?d�K?�+P?��Q?�DO?k\H?�_>?`�2?��&?��?�6?�G?�G?�G?�G?�G?�G?�G?M�?R8?��?�%?�4.?�7?$`??��F?(�L?vtP?y�Q?_~Q?tP?��N?7�L?��I?Q�F?�B?X�>?ƨ:?� 6?(k1?�,?Y�'?��"?4'?J�?AE?�G?%XKeyAttrFlagsi!_XKeyAttrDataFloatf

�XKeyAttrRefCounti��^AnimationCurveLH�M;SAnimCurveS�X	DefaultD�@^ÿYKeyVerI�\�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&3^
KeyValueFloatf���ڿ
�˾�ӽ�s��[��軇��p���[�h�O��K�/	S�P�i��@��&�����ƽU�콴L������~w��ս��H�c��K��N��W�;�g�+�}�Z���;���������˽�y�s���rs	�%��r��������2�������7��G�����I��f�����B��M��	��L��E��)����X��_��]��>����4��G��Z�������L�����v�����U�ս��������?�c�x�Q��K���Q�W�c�ʊ��5󗽃���R�ս����uw�������k����P޽����[�����q�+U�/�K���K��K��K��K�K�HK���P��_��5y����䦽3Eýi=��y�A�
�ic�L��L�Bb�<�p�
�![�����*���Eн�7��*����(��Q���y���N{���h���X�XK�]^KeyAttrFlagsi!�^KeyAttrDataFloatf

�^KeyAttrRefCounti�	eAnimationCurveLx�M;SAnimCurveS'_	DefaultD ��@@?_KeyVerI�<b�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&kd
KeyValueFloatf�1BJBg��A�]�A���A�s�A��A�	�Aj��A�Q�A��A@��Aױ�A�T�At �Al��A p�A��BP�B1B�B�S�Aq�A���A��A��A���A���A���A�'�A�Apb�A԰�AO��A���Av�B�BkB1B0B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B��B�B�8�A�S�Aob�Aq�AC��A���AY�A~��AY�A���AD��Aq�Apb�A�S�A�8�A�B��B1B5-B$9B�p�Aob�A(T�A�R�Axj�A��A��A��A��A��A~��A~��A�A�G�Aӟ�A���A0p�A�T�AA��A%�A�>Bz	B1B�B'	B"�Bv7B�>B|��At��AC=�A�P�A��A��A{I�A���Avs�A	B�A�U�A�ŻA��A�dKeyAttrFlagsi!�dKeyAttrDataFloatf

�dKeyAttrRefCounti��fAnimationCurveL��M;SAnimCurveS_e	DefaultDweKeyVerI��e%KeyTimel�Ig�R��&��@�
��e
KeyValueFloatf�?�?�?
fKeyAttrFlagsi!GfKeyAttrDataFloatf

tfKeyAttrRefCounti�gAnimationCurveL��M;SAnimCurveS�f	DefaultD�fKeyVerI�(g%KeyTimel�Ig�R��&��@�
�[g
KeyValueFloatf�?�?�?�gKeyAttrFlagsi!�gKeyAttrDataFloatf

�gKeyAttrRefCountiqiAnimationCurveL8�M;SAnimCurveSOh	DefaultDghKeyVerI��h%KeyTimel�Ig�R��&��@�
��h
KeyValueFloatf�?�?�?�hKeyAttrFlagsi!7iKeyAttrDataFloatf

diKeyAttrRefCounti�oAnimationCurveL�cN;SAnimCurveS�i	DefaultD�iKeyVerI�hmuKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�Co�
KeyValueFloatfm�-C��-C��-C��.C��-C��-C��-C��.C��-C��-C��-C��.C��-C��-C��-C��-C��.C��-C��-C��.C��.C��-C��-C��-C��.C��-C��-C��-C��-C��-C��.C��-C��-C��-C��.C��-C��-C��-C��-C��.C��-C��-C��-C��-C��-C��.C��-C��-C��-C��-C��-C��-C��-C��.C��-C��.C��.C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��.C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��-C��moKeyAttrFlagsi!�oKeyAttrDataFloatf

�oKeyAttrRefCountimvAnimationCurveL8#N;SAnimCurveS7p	DefaultDOpKeyVerI�Ls�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&{u
KeyValueFloatf�ӓ��ғ��ϓ��ϓ��ϓ��ӓ��ғ��Γ��ӓ��ӓ��ӓ��ϓ��ϓ��ϓ��ϓ��Γ��ϓ��ӓ��ӓ��ғ��ϓ��ϓ��ӓ��ӓ��ȓ��˓��Ǔ��Ǔ��̓��ӓ��ӓ��ϓ��̓��Γ��ϓ��ӓ��ӓ��̓��ϓ��Ǔ��ܓ��ԓ��ד��ӓ��ϓ��Г��Γ��ғ��˓��ϓ��ϓ��Г��ӓ��ӓ��ӓ��̓��ϓ��ӓ��ӓ��Γ��̓��ϓ��ӓ��ϓ��ӓ��ӓ��ȓ��ϓ��ӓ��ӓ��ӓ��ӓ��ϓ��Γ��̓��ӓ��Г��Г��ӓ��ϓ��Γ��ӓ��Γ��ϓ��ϓ��ϓ��Γ��ӓ��ӓ��ғ��ϓ��Г��ӓ��ӓ��ғ��ғ��ӓ��ϓ��ӓ��ϓ��Γ��ӓ��ӓ��Γ��Γ��Γ��ғ��ғ��ӓ��ӓ��ғ��ӓ��ӓ��ӓ��ϓ��ϓ��ӓ��ϓ��ғ��ӓ��ӓ��ϓ��Γ��Γ��ӓ��Γ��ϓ��ϓ��ϓ��ӓ���uKeyAttrFlagsi!�uKeyAttrDataFloatf

vKeyAttrRefCounti��{AnimationCurveLh#N;SAnimCurveSov	DefaultD�vKeyVerI��y�KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�+{�
KeyValueFloatf]t�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@�[@U{KeyAttrFlagsi!�{KeyAttrDataFloatf

�{KeyAttrRefCounti]�AnimationCurveL�#N;SAnimCurveS|	DefaultDV�?7|KeyVerI�4�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&c�
KeyValueFloatf����?cU?oQ$?�L�>m>���<��(����U�)��ݟ��K�[C���,�4��=��>�}?�xF?�-n?���?��e?�4?M�{>�X\�l�7�U}&�-�\�)�qW=�&>~��>���>U�?3�'?�^D?��\?b?p?F�|?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?���?�x?�Ia?��>?#m?���>��n>Je�=:m�_i�^�7�ڏ��R��3�=�T�>���>��?d�F?��g?��|?���?#�o?�I?�]?5c�>J
�=�y%�G�ľܟ��V6��_^�r��7��>}��7���~�RF������}�2��<;�>�c?�v4?%�\?��w?���?�T~?�u?��g?�U?�'??�)%??sK�>���>5�>���k�2�i�������>q*�!�T�=�~�	7����KeyAttrFlagsi!ǁKeyAttrDataFloatf

�KeyAttrRefCounti�9�AnimationCurveL�#N;SAnimCurveSW�	DefaultD@^/,�o�KeyVerI�l��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��za�c�U��H��;���-��1!������X<����E�������	�mJ��0"�s�1�fKA���O�3�Z��za�‚]�8$O�W=�e.��R(��)��T+��.�-3��]8�>��&D��DJ��2P�^�U��kZ�j(^���`��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za��za�q�_��A[���T�a�L��&D���;��(4���-�l�)��R(�*�*�.���5�9>�|lG�9�P�
�X�n�^�!	b��za��J\���R�T�F�CR8�,)�j��.��D����<���{������ ����k�O�i�꤁�����������37�Z��,�~@���Q��1]��za�8<`���\��W�A�O��F�~f<��E1�|%�M�j�����o��hY���s������!'��{��O�i�ŇKeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCounti�q�AnimationCurveLx"N;SAnimCurveS��	DefaultD@�1&@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&Ӎ
KeyValueFloatf��1AV�LAeOkA�5�A3�AK٧A�Z�AV��AA��A���A�-�A�A���A�߹A⸦Aai�A��}A�[A8�@A�1AY�9A��YA0{�A(��A�D�A�G�A���A�D�A�ۍAҕ�A���AERsA�3eAy�WA�tKA�@A��8A�s3A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�1A�25A?A7�MA��_AERsA���A���AD8�AI^�A�D�A��A�$�A���A�W�A�kA
AVAJ3DA��6AN�/A�1A$�=AV6SAC�pA��A���Ao
�AhL�A�-�A�Y�A��B��BM B+�'B�O(B��!B�bB
B���AX��A�A��A��}A2�UAF;A�1AnQ4A�N<A�IA�?ZAtaoA
�A?��A�B�A7��A�A��A/��A�H�A�nB�B�QBu� B�O(B��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCounti��AnimationCurveL�"N;SAnimCurveSǎ	DefaultDߎKeyVerI��%KeyTimel�Ig�R��&��@�
�K�
KeyValueFloatf�?�?�?u�KeyAttrFlagsi!��KeyAttrDataFloatf

܏KeyAttrRefCountia�AnimationCurveL�"N;SAnimCurveS?�	DefaultDW�KeyVerI���%KeyTimel�Ig�R��&��@�
�Ð
KeyValueFloatf�?�?�?�KeyAttrFlagsi!'�KeyAttrDataFloatf

T�KeyAttrRefCountiْAnimationCurveL#N;SAnimCurveS��	DefaultDϑKeyVerI��%KeyTimel�Ig�R��&��@�
�;�
KeyValueFloatf�?�?�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

̒KeyAttrRefCounti%�AnimationCurveL�!N;SAnimCurveS/�	DefaultDG�KeyVerI���]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
����
KeyValueFloatfj�},m�},m�},m�|,m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�|,m�|,m�},m�},m�},m�},m�},m�},m�},m�},m�|,m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�|,m�},m�},m�},m�},m�},m�},m�|,m�},m�},m�},m�|,m�},m�},m�|,m�|,m�|,m�|,m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m�},m���KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountij]�AnimationCurveL�!N;SAnimCurveS{�	DefaultD��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf����=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=�KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCounti��AnimationCurveL"N;SAnimCurveS��	DefaultD˟KeyVerI�ܢ�KeyTimel^��Ig�R���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�{��
KeyValueFloatf^x
�?
�?
�?�?�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?�?
�?�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?
�?��KeyAttrFlagsi!ߤKeyAttrDataFloatf

�KeyAttrRefCounti^Q�AnimationCurveLH"N;SAnimCurveSo�	DefaultD���@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�=@�d?@9�f@��@�r�@�
�@=��@i��@���@U!�@j��@څ�@���@}?�@���@sۗ@��@2T@"h1@=@I!#@{�E@%mr@�G�@�O�@�S�@���@vL�@�φ@�a�@j�r@ʱc@ʮT@;/F@�8@�P-@�C$@iZ@=@	=@=@=@=@=@
=@=@	=@=@=@=@	=@=@=@=@=@
=@	=@=@=@	=@	=@=@=@=@=@=@
=@~L @fI+@Qc;@=�N@űc@�ax@���@B�@+k�@�O�@.��@���@��@,o@/�W@�@@��,@��@Z>@=@=%,@��F@�ni@�B�@��@�@|y�@k��@��AR�A#AM1A�9A�0:A��3Al�)AY�A�_A�
�@͟�@.�@l��@�O@��)@=@�= @+�+@4>@�cV@��s@��@6��@¸�@z��@�]�@]"�@l�Au_A�xA�"A��*A!�2A�0:AݪKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti���AnimationCurveL�N;SAnimCurveS��	DefaultD �8忿�KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf���)��zT����ߤ��qȿ��	�����*)���2�KE6�A�0��!��i
������X����p��C���)�x�/��vX��5��L���-���M��h��O�������̗��|���H���bm�g:Z�8�I��E<�C2���+���)���)�x�)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)���)��.���9��L��pe��H���������
�������-���Ͷ��T���c��+���!p��YQ�QX9���)�a$���)�۠<�\]�����k����lϿ�:���C�LE6�ՙZ����x����X��?q������������@�p�,:?�0C�Vٿn���6k�TN:���)�c�.���<���S�u�t�����c0��X�ɿ�)�����$�h�>���Z�^�x�=������+{��/ٺ�?q���KeyAttrFlagsi!O�KeyAttrDataFloatf

|�KeyAttrRefCounti���AnimationCurveLH^N;SAnimCurveS߱	DefaultD �69@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&#�
KeyValueFloatf�)��A�m�A���A��AۿB�=	B)$BBq�B��B|�B�(B�QB�;Bh�B��AN�A��A���A)��A]��A���AG�A�|B�BŔB`OB�[BM��A���A<��Am��A+E�A^��A��A��Aa*�A��A)��A(��A*��A*��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A)��A�t�A3�A�0�A���Am��A�"�A$��A��B�)B�B*B�PB��AI?�Ar$�A�U�AL��AV�A��A)��A�U�Ao��AZ;�A9�AO�B'�
B�B|�BC�(B�x4Bڪ@B�KBRqQB��QB��LB\&DB;9B?#,BsDB<B��Bu��A���A�L�A)��A|�At��AP��A��A(�A]��Ac�AڬBwB��B��B��%B�-Bw�5B�m=B{�DB`�KB��QBM�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�9�AnimationCurveL��M;SAnimCurveS�	DefaultD/�KeyVerI�h�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?ŸKeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCounti��AnimationCurveL(�M;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti)�AnimationCurveLX�M;SAnimCurveS�	DefaultD�KeyVerI�X�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS�	DefaultD��KeyVerI����KeyTimel^��Ig�R���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�G��
KeyValueFloatf^x�p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!��p!�q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti^U�AnimationCurveL8�M;SAnimCurveS;�	DefaultDS�KeyVerI���uKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
����
KeyValueFloatfm�uH��uH��uH��tH��tH��sH��sH��uH��uH��vH��tH��uH��uH��uH��uH��uH��uH��tH��sH��wH��vH��vH��uH��tH��vH��uH��uH��tH��uH��tH��uH��uH��uH��uH��tH��uH��vH��vH��uH��uH��uH��uH��uH��vH��uH��tH��uH��uH��uH��uH��vH��uH��tH��uH��uH��uH��uH��uH��uH��uH��vH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH��uH����KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCountim�AnimationCurveLh�M;SAnimCurveS��	DefaultD��KeyVerI����KeyTimel^��Ig�R���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�s��
KeyValueFloatf^x��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti^I�AnimationCurveL��M;SAnimCurveSg�	DefaultD�!��?�KeyVerI�|��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��=?/�4?�C*?�?Ha?�-?�p�>�h�>M��>h=�>���>0:�>b.�>s�>8.
?��?A�'?�I3?��:?�=?9"5?��?��?���>���>I`�>�Y�>:��>�9�>�P�>Z�?S?v�?�%?.-?��3?9?�a<?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?��=?�O;?�!5?Ŧ+?6�?8?��?_��>���>S��>���>���>���>W��>��?O?��?8�+?A"5?nP;?�=?5:?W�0?:�"?�?H�?x�>-��>���>���>���>���>���>s��>m��>��>��>V,�>��>U�?UR?�<$?†.?��6?��;?�=?�=?�;?
y9?Fx6?��2?�M.?�?)?�#?)�?�?A?�D	?@3?vV�>{��>�`�>s��>k��>��KeyAttrFlagsi!�KeyAttrDataFloatf

<�KeyAttrRefCounti���AnimationCurveL��M;SAnimCurveS��	DefaultD�C����KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�_ҿ�,̿��ƿ��¿���)��S���!ÿMvſ�Wǿȿ��ƿn�ÿv�����������ſ|X˿�п^ҿl̿$/ÿX3���vĿȿX�ǿ}ƿXĿ�¿�������|���A<¿��Ŀ�0ȿڻ˿��ο�@ѿjҿ|ҿ5ҿCҿOҿSҿTҿKҿUҿ[ҿbҿUҿUҿNҿVҿUҿRҿOҿWҿZҿZҿTҿMҿSҿVҿXҿbҿPҿTҿzпl̿�}ǿ#/ÿ����V3��"���~vĿǿȿ
ǿ�vĿ=���b3������(/ÿ�}ǿl̿zп_ҿ��Ͽx�ɿ"Ŀ����n��@
ÿ+uƿȿȿȿȿȿȿȿ5.ǿ��Ŀ�q¿���<$��F�����Ŀ/�ȿ�EͿ2�пeҿ��ѿľп~1Ͽ=Ϳ�˿L�ȿewƿ�eĿ]�¿J���l��c��3N���
��0J¿��ÿd�ſȿ
�KeyAttrFlagsi!G�KeyAttrDataFloatf

t�KeyAttrRefCounti���AnimationCurveLx�M;SAnimCurveS��	DefaultD�5@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf����A1 �AQ�A�ψA�GzA˨cA5�NA(�<A��.A�W%Az"A�(A�8AUaOA*kA8�A�A#��A���A���A���AljA͠_A�44Az"A��$A_�+Aڪ6A��DA	UA��fAQ�yA� �A�A#H�A�S�A�֣A�m�A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���A���AY?�A���A渕AljAP�yAΠ_A!�GA�44AX�&Az"AW�&A�44A!�GA̠_AP�yAljA丕A���AW?�A���A_�A��A$�AN�yAdYA�X=AA�)A{"Az"Az"Az"Az"A{"A{"A�&A$B1A��AAЛVAS�mAO��A&L�A⨘A��A[��A���A�.�A���AB;�A}��A��An�A�J�A���A*‡A��A�LvA-WiAc\A֞OA�8CAi^7A>,A{"AE�KeyAttrFlagsi!�KeyAttrDataFloatf

��KeyAttrRefCounti�1�AnimationCurveL��M;SAnimCurveS�	DefaultD'�KeyVerI�`�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?5�KeyAttrFlagsi!o�KeyAttrDataFloatf

��KeyAttrRefCounti!�AnimationCurveL�M;SAnimCurveS��	DefaultD�KeyVerI�P�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountim�AnimationCurveLh�M;SAnimCurveSw�	DefaultD��KeyVerI��]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
����
KeyValueFloatfj�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCountij��AnimationCurveL�]N;SAnimCurveS��	DefaultD��KeyVerI�4�EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
����
KeyValueFloatfg��$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$���$��!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCountig��AnimationCurveL��M;SAnimCurveS��	DefaultD�KeyVerI����KeyTimel��x�kH��YhK!V���6�r��$���ȑ�6K����U������hF�i�ÌM��4�b%��B�2�������Y0F�d���?ǔ��:�b���L>-اI�̘��
�~�w����ݍ}X?r`���Z�]ϧ^`mj�t�]\����i�~2�MBs��M�1(���qR�c������,�W�ivB�
�zŽђ�afY�DZ5n��㴨'�b_�`K�͝EtV��6��#~`Sԇ�Ŵ�A{'��/����1�Z�vn3mV��6�Q�0�^��#������i���bם�9�]tGߚ�bg�!��V��}���×�ӎ��EX��s�IW���K#�a��
fu�NҶ�U,�����:�.e�3ІE:��<%m�Y��Y�GCNѾ�F96������*h�oJ��g��a�W���fT�&l�9�
�+�B���;�^������iWy�#���;CG˓��,�au�p�Y���^����`�l�N5�)|u��7��h�9�=щm��X�]r�f.�VW�-ʛ�ā)�Kl9�����^'6`_��#69�&kha��{&ӽظ/(���O�`&�TC�E��'�v�L�����V5�
K�`Wj$�"��3�8:��v>Q���꤭m����;v���6M/�$��\�����X����Ƶu�->S�%��w���mB=e�i6`Ѧ�o8��6Ж�O�q�ż�}Qe�z�� �n�z��3�/��

KeyValueFloatf��}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL�M;SAnimCurveS�	DefaultD@�B)@+�KeyVerI�(��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&W�
KeyValueFloatf�rJA��KAm�MAuTPAq�RAbiUA��WA�ZA��[AH]Ae�]AN�\AH�ZA5�WA��TA�VQA�sNA`'LA�JArJAc�KA� PAw�UA�+[Ae�]A/]A:B\A/�ZAZYA�!WA
	UAV�RA��PA OA�aMA�LA��JA�RJArJAsJAqJAqJAqJArJArJArJArJArJAsJArJArJArJArJArJArJArJArJArJAqJArJArJArJArJArJAqJArJArJA
�JAc�KAɰMA� PAU�RAw�UA��XA�+[A��\Ae�]A��\A�+[A��XAv�UAT�RA� PAɰMAc�KA
�JArJA��KA�nPAFYVA�`\A�NaAx�cA�#cAe�]A1MA��0Ai�
A�T�@�,�@n��@��@n��@^&�@���@��@P;A�A�@/A�<=A�FArJAc9IAr�FA��BA?v=A)7A��/A�Z'A�rA@
A�HAWUA���@x��@�v�@-ʹ@=�@g��@n��@��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�-AnimationCurveL8�M;SAnimCurveSK�	DefaultD � �c�KeyVerI�`�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf��g�oR��޾�������������Aΐ��h��p�j�{�Z��0U��g_�A�z�K����o�������������g��������f.��1t��0U�9�Y��e�udx��+��# ���j��d���d����������=����m��ɚ���g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g��g���������(������d��e.���Ҋ�1t��]��0U��]�1t��Ҋ�g.��d�������(����������g�������������������Yx�VZ��0U�z��G�������L�����<��+x����.��n��������z�� =��u��g�|���������.�����I���4
�a��XN
�����*�w��������<���KeyAttrFlagsi!�KeyAttrDataFloatf

 KeyAttrRefCounti�e
AnimationCurveLh�M;SAnimCurveS�	DefaultD �@�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�	
KeyValueFloatf��.�@�8�@:��@r|�@���@�Q�@3�@1h�@��@�}�@�3�@�@z��@���@%��@ui�@0�@l͛@XX�@�.�@Ù@f{�@�g�@D��@�3�@���@K6�@(��@�Q�@���@S��@���@�F�@U��@pj�@G�@�I�@
��@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�.�@�Ò@Ù@�
�@f{�@���@�g�@1��@C��@?��@�3�@?��@D��@1��@�g�@���@e{�@�
�@Ù@�Ò@�.�@T�@]$�@�J�@Η@�@u�@zY�@�3�@@|A�BAA��uA糓A��A���A?V�A���A���A�M�A[�^A�G:An3A���@Խ�@�S�@�.�@*m�@ʜ@/��@)��@� �@r��@/$
A�rA|�-A�7AA�UANSiA��}A|��Av�A⿛A=z�A���A�	KeyAttrFlagsi!+
KeyAttrDataFloatf

X
KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS�
	DefaultD�
KeyVerI�%KeyTimel�Ig�R��&��@�
�?
KeyValueFloatf�?�?�?iKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiU
AnimationCurveLH�M;SAnimCurveS3	DefaultDKKeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?�KeyAttrFlagsi!
KeyAttrDataFloatf

H
KeyAttrRefCounti�AnimationCurveLx�M;SAnimCurveS�
	DefaultD�
KeyVerI��
%KeyTimel�Ig�R��&��@�
�/
KeyValueFloatf�?�?�?YKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL��M;SAnimCurveS#	DefaultD;KeyVerI��]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�{�
KeyValueFloatfj�S�ѿS�ѿS�ѿR�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿR�ѿQ�ѿU�ѿT�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿR�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿR�ѿS�ѿS�ѿS�ѿS�ѿS�ѿR�ѿS�ѿS�ѿS�ѿR�ѿS�ѿS�ѿR�ѿS�ѿS�ѿS�ѿR�ѿT�ѿS�ѿR�ѿR�ѿS�ѿQ�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿS�ѿ�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountij�AnimationCurveLX�M;SAnimCurveSo	DefaultD�KeyVerI�uKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���
KeyValueFloatfm��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l�KeyAttrFlagsi!OKeyAttrDataFloatf

|KeyAttrRefCountimAnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI�0%KeyTimel�Ig�R��&��@�
�c
KeyValueFloatf?X@?X@?X@�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti9#AnimationCurveL��M;SAnimCurveSW	DefaultD@���?oKeyVerI�l �KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�"
KeyValueFloatf�z~�?nG�?S	�?-��?��?�B�?��?���?۩�?��?���?і�?:��?k�?X�?��?���?�>�?)m�?|~�?�I�?���?A7�?��?���?݌�?|��?&��?���?��?3L�?���?���?5��?S�?�B�?qb�?w�?o~�?z~�?^~�?d~�?d~�?k~�?p~�?f~�?n~�?j~�?u~�?k~�?o~�?k~�?j~�?j~�?j~�?n~�?n~�?f~�?e~�?m~�?m~�?l~�?k~�?l~�?e~�?h~�?p~�?Gp�?�I�?Y�?���?��?>7�?���?��?���?���?���?��?���?@7�?��?���?i�?�I�?Xp�?{~�?�4�?�}�?a��?��?��?s��?h0�?���?��?���?E��?M��?N�?���? 7�?���?�P�?~o�?{;�?���?+��?o��?r��?�
�?z~�?h��?�
�?���?��?2��?	��?f]�?��?ʊ�?GB�?=�?O��?��?2g�?!"�?c��?oY�?���?�"KeyAttrFlagsi!�"KeyAttrDataFloatf

,#KeyAttrRefCounti�q)AnimationCurveL��M;SAnimCurveS�#	DefaultD �� ��#KeyVerI��&�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�(
KeyValueFloatf�a
��
�V���m���u���6�n���^���p����t��
��
�a
��
�������t�I�	���P���q����1��
��
�n
�a
�b
�\
�]
�_
�_
�_
�^
�_
�_
�`
�_
�_
�^
�_
�_
�_
�^
�_
�`
�`
�_
�^
�_
�_
�_
�`
�_
�_
�}
��
�E���s�����g���f�����v���F��
�
�a
��������.����������~����9��	��
�B��Rf�f������!V��F���
�h��/N	�e>�j���u�a
�:(��u�.�����_��I�AO��k	���
�f��L
��g�@�����4��c���f���(KeyAttrFlagsi!7)KeyAttrDataFloatf

d)KeyAttrRefCounti��/AnimationCurveLH�M;SAnimCurveS�)	DefaultD`*п�)KeyVerI��,�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&/
KeyValueFloatf�Sр��r��b���-�nG~��g}�љ|�w�{��Z{�+�z�G�z��{���{�n�|�˰}�E�~����d������Uр�Dw���@�@}�p�{�S�z���z��>{�T�{��5|���|���}��@~�N�~�����%��,k�������Ā�~р��р�Fр�hр��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р��р�K���zw��m��,A��@~�N@}��T|���{��{�H�z��{�A�{�HT|�@}�I@~��@�;��@w�����Wр�q��c{���u��jp��l��\l���p�G�z�)t��H㜾����{%ɾ�Xپ�߾Y�ݾ�c׾lAξm�¾�w��ˎ��T������������bр�xa��X������/���L���8��绗�7����$���٪�oñ��ɸ��ҿ�@�ƾj�;�Ծھ�߾5/KeyAttrFlagsi!o/KeyAttrDataFloatf

�/KeyAttrRefCounti�!1AnimationCurveL�bN;SAnimCurveS�/	DefaultD0KeyVerI�P0%KeyTimel�Ig�R��&��@�
��0
KeyValueFloatf�?�?�?�0KeyAttrFlagsi!�0KeyAttrDataFloatf

1KeyAttrRefCounti�2AnimationCurveL�N;SAnimCurveSw1	DefaultD�1KeyVerI��1%KeyTimel�Ig�R��&��@�
��1
KeyValueFloatf�?�?�?%2KeyAttrFlagsi!_2KeyAttrDataFloatf

�2KeyAttrRefCounti4AnimationCurveLN;SAnimCurveS�2	DefaultD3KeyVerI�@3%KeyTimel�Ig�R��&��@�
�s3
KeyValueFloatf�?�?�?�3KeyAttrFlagsi!�3KeyAttrDataFloatf

4KeyAttrRefCounti]:AnimationCurveLHN;SAnimCurveSg4	DefaultD4KeyVerI��7]KeyTimeljP�Ig�R�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��9�
KeyValueFloatfj���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"���"��9KeyAttrFlagsi!#:KeyAttrDataFloatf

P:KeyAttrRefCountij�@AnimationCurveLxN;SAnimCurveS�:	DefaultD�:KeyVerI�T>uKeyTimelmh�Ig�R,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�/@�
KeyValueFloatfm���C���C���C��C��C��C�~�C���C���C���C���C���C���C���C���C���C���C���C�}�C���C���C���C���C���C���C���C���C�~�C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C��C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C�Y@KeyAttrFlagsi!�@KeyAttrDataFloatf

�@KeyAttrRefCountimEBAnimationCurveL(N;SAnimCurveS#A	DefaultD;AKeyVerI�tA%KeyTimel�Ig�R��&��@�
��A
KeyValueFloatf�T@�T@�T@�AKeyAttrFlagsi!BKeyAttrDataFloatf

8BKeyAttrRefCounti}HAnimationCurveLXN;SAnimCurveS�B	DefaultD@C@�BKeyVerI��E�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�G
KeyValueFloatf���@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@	HKeyAttrFlagsi!CHKeyAttrDataFloatf

pHKeyAttrRefCounti��NAnimationCurveL�N;SAnimCurveS�H	DefaultD`99��HKeyVerI��K�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&N
KeyValueFloatf�[���\���\���[���[���\���\���\���\���]���\���]���\���\���\���\���[���[���[���[���[���[���]���\���\���\���]���]���[���\���\���\���[���[���[���[���Z���Z���\���]���Y���Y���Z���Z���Z���Z���Z���[���[���Z���Z���Z���[���Z���Z���Z���Z���[���[���Z���Z���Z���Z���[���[���Z���Z���[���\���[���[���]���]���]���\���]���]���\���^���_���]���^���\���[���[���\���[���[���\���[���\���\���\���\���\���\���\���\���\���\���\���\���[���\���]���\���[���[���\���\���\���[���[���\���\���[���[���[���[���[���\���\���\���\���\���\���]���]���]���\���ANKeyAttrFlagsi!{NKeyAttrDataFloatf

�NKeyAttrRefCounti��TAnimationCurveL�N;SAnimCurveSO	DefaultD�w�#OKeyVerI� R�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&OT
KeyValueFloatf�-�s��s���s���s�8�s���s�>�s�Z�s��s���s��s��s���s�W�s�ȧs�r�s��s���s�6�s�.�s�A�s�E�s��s���s��s�v�s���s�g�s���s�?�s��s��s� �s���s���s�ٴs���s�ʷs�/�s�;�s�!�s�(�s�-�s�0�s�2�s�/�s�1�s�/�s�2�s�0�s�1�s�0�s�0�s�0�s�1�s�1�s�0�s�/�s�/�s�0�s�0�s�0�s�0�s�/�s�/�s�.�s�3�s�h�s�F�s��s�G�s��s���s�#�s���s�Ԝs��s�Ԝs���s��s��s��s�G�s��s�@�s�g�s�.�s���s�ɳs�F�s��s��s�q�s�B�s��s�
�s�
�s�
�s�
�s�
�s�
�s���s��s�.�s���s�5�s��s���s��s���s���s�-�s��s���s���s���s�p�s���s�R�s���s���s���s���s���s�o�s�b�s�e�s�~�s���s��s�yTKeyAttrFlagsi!�TKeyAttrDataFloatf

�TKeyAttrRefCounti�eVAnimationCurveLhN;SAnimCurveSCU	DefaultD[UKeyVerI��U%KeyTimel�Ig�R��&��@�
��U
KeyValueFloatf�?�?�?�UKeyAttrFlagsi!+VKeyAttrDataFloatf

XVKeyAttrRefCounti�WAnimationCurveL�N;SAnimCurveS�V	DefaultD�VKeyVerI�W%KeyTimel�Ig�R��&��@�
�?W
KeyValueFloatf�?�?�?iWKeyAttrFlagsi!�WKeyAttrDataFloatf

�WKeyAttrRefCountiUYAnimationCurveL�N;SAnimCurveS3X	DefaultDKXKeyVerI��X%KeyTimel�Ig�R��&��@�
��X
KeyValueFloatf�?�?�?�XKeyAttrFlagsi!YKeyAttrDataFloatf

HYKeyAttrRefCounti�ZAnimationCurveL�N;SAnimCurveS�Y	DefaultD�YKeyVerI��Y%KeyTimel�Ig�R��&��@�
�/Z
KeyValueFloatf�u@�u@�u@YZKeyAttrFlagsi!�ZKeyAttrDataFloatf

�ZKeyAttrRefCountiE\AnimationCurveLN;SAnimCurveS#[	DefaultD;[KeyVerI�t[%KeyTimel�Ig�R��&��@�
��[
KeyValueFloatfJL�AJL�AJL�A�[KeyAttrFlagsi!\KeyAttrDataFloatf

8\KeyAttrRefCounti�]AnimationCurveL(cN;SAnimCurveS�\	DefaultD�\KeyVerI��\%KeyTimel�Ig�R��&��@�
�]
KeyValueFloatfRhڿRhڿRhڿI]KeyAttrFlagsi!�]KeyAttrDataFloatf

�]KeyAttrRefCounti�cAnimationCurveLXN;SAnimCurveS^	DefaultD`@+^KeyVerI�(a�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&Wc
KeyValueFloatf����@�ՠ@��@�c�@���@���@j�@K6N@
�@���?G��?�-
@W�^@ᡮ@o��@�[�@�X@I'��&#T�샥��.��6A���\���C>8�@��@*�@�Z	@��'?�]7����=ko�?��@@��@���@�� A�%A�M�@1K�@)b@|�@�(�?'��?��@&�}@�R�@tp�@LȺ@�2�@�3�@�֏@}i@R�M@�X@��n@4�b@�N5@�G @L$C@o>�@ �@�\Ai:A�ZA�
qA�g{A�%|A]�yA�nxAETrA5~_A�>A/EA�T�@ C�@���@�zA
A�%A!lA+�AeN	AюA!��@��@�lA{�A,A�+A\uA]TA_�A��@�*�@�7X@Y�? �����*�av=��?4C@)�@��@��@��@�%�@��@3�z@0R�?U����(��J��2���&Tٿhb��<���ϛ?-j>@�@"��@��AgV2AF2A�>A���@מ�@�2h@[@�%j@�cKeyAttrFlagsi!�cKeyAttrDataFloatf

�cKeyAttrRefCounti�-jAnimationCurveL�N;SAnimCurveSKd	DefaultD@� �cdKeyVerI�`g�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�i
KeyValueFloatf�R��0�����u������^!���6������$<��;oQ�:�W��׆��W��;�����	�q
���=7�0~�?��@nFA��#A��*A���@��;?����u��(����ҭ��������s���8��r(��������l���X��l���ڕ��Î��ք�b}T�o�%��S.��h�dl���������-C��1��]EV�6 !��'�����˘�����J4��:������$�E
P��ڃ�����-���T����h��Gb������X��=��q���F���Jh��:���N��?U���ѻ�j��������m���U��_L��YM�AJX��i�0_{�t)|��>j�[T���J��M�۶G��3�o�DL��t&9�}S���J���ƿ��
� 0�a�c�A���˒��{.��c�#������7ɴ������羦��\���3���"������s�����]<����������6��_���'����b����O̸����� J������iKeyAttrFlagsi!�iKeyAttrDataFloatf

 jKeyAttrRefCounti�epAnimationCurveL�N;SAnimCurveS�j	DefaultD`% 濛jKeyVerI��m�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�o
KeyValueFloatf�+1�$}y�\@��	��q������
��͐?�@�@9D$@�8@�)Z?"��K�������}��!��.@z3�@�o�@�bg@�;�IɿCZ<@��(A��A�S�ArYB��B�8Be�B��B�T�A̿�A#`�A��YA8bSA�CwAЭ�AO��AX-�A<�A�lA�]A�UA|�PA�OA�%EA��0A=CA��@�S@�j�?�rs? �@��o@���@[Z�@/Cm@�:@ۖ?a���v�.g��RzU>Q�>�~?�'�x���?�p�@�9A�~A=�A�yAd�+A��@\_�?�<��_A��C�HԿ�'�>���?Ӏ@{�?Ǧ������R��%���|<��!��N9����(?4�o@m��@�t�@���@'�?!�����#�/<5��T�˿��@�[\A<2�A��A��B�#B��(B�$B��B1�B�ZB�B^�B���A
C�A߄�A}�6A�]�@%��
݂��E���K������8@�8�@�oKeyAttrFlagsi!+pKeyAttrDataFloatf

XpKeyAttrRefCounti��qAnimationCurveL�N;SAnimCurveS�p	DefaultD�pKeyVerI�q%KeyTimel�Ig�R��&��@�
�?q
KeyValueFloatf�?�?�?iqKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCountiUsAnimationCurveL�N;SAnimCurveS3r	DefaultDKrKeyVerI��r%KeyTimel�Ig�R��&��@�
��r
KeyValueFloatf�?�?�?�rKeyAttrFlagsi!sKeyAttrDataFloatf

HsKeyAttrRefCounti�tAnimationCurveL�N;SAnimCurveS�s	DefaultD�sKeyVerI��s%KeyTimel�Ig�R��&��@�
�/t
KeyValueFloatf�?�?�?YtKeyAttrFlagsi!�tKeyAttrDataFloatf

�tKeyAttrRefCountiEvAnimationCurveL�N;SAnimCurveS#u	DefaultD;uKeyVerI�tu%KeyTimel�Ig�R��&��@�
��u
KeyValueFloatf�� A�� A�� A�uKeyAttrFlagsi!vKeyAttrDataFloatf

8vKeyAttrRefCounti}|AnimationCurveL(N;SAnimCurveS�v	DefaultD�vKeyVerI��y�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�{
KeyValueFloatf���3��3��3��3��3��3��3$��3��3��3��3��3��3 ��3��3��3��3��3��3 ��3��3��3��3��3$��3��3��3��3��3��3 ��3��3��3��3��3��3 ��3��3��3��3��3(��3��3 ��3��3��3(��3 ��3��3 ��3 ��3 ��3��3(��3��3(��3��3��3��3��3��3(��3��3#��3��3��3��3��3��3��3��3&��3��3��3��3$��3��3��3$��3 ��3��3 ��3(��30��3 ��3(��3(��3��3@��3 ��3��3 ��3��3 ��3��3��3��3��3 ��3��3@��3��3 ��30��3��3��3��3��3��3��3��3��3��3��3��3(��3��3��3��3��3 ��30��3��3 ��30��3��3 ��3 ��30��3��3	|KeyAttrFlagsi!C|KeyAttrDataFloatf

p|KeyAttrRefCounti���AnimationCurveL�N;SAnimCurveS�|	DefaultD�|KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf�`���������� ��� ���`��� ���������������@�������@��� ���`���0���0�������P���P���4���|���\���8���P���h���d���h���t���p���P���d���h���8���(���d���d���X���n���}���>���x���\�������p�������x���h�������X�������p���X���`���P���P���P���0���Њ��`������������������������������`�������`���@��� ���@������������������`���������������Ћ��@�����������P���`���0������`�������h�����������t���X���1�������H���ԋ��������������p���0�������Њ������P��� ������@���0���P���X������`����������� ���0���������������8���������������������A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLN;SAnimCurveS�	DefaultD �?@#�KeyVerI� ��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&O�
KeyValueFloatf��<�AΠB��	B�AB��A�)�A��Ac'�A�UAښA6��@�]A�ZA�A��A�8B�P8B��BB, B)IB��A�^�A BaW�AG��@�H����8D�r�f�׍n�OZn›Neª�M�ϯ@��:�ؤ—�']�*�H��ߝ����v�����n���@%<A���A[�BZ�6B� PB�jdB��eB�.jBK1iBIeB<�WB�zVB��NB��2B�BR��AYf�A�W�A�vA6ΟA^2�A+8�A�
�A���A1ݐAv�(Ax���W�O�2����F���¤T���`���!���q@��eA�ʟA�ԴA�|�Ar7DA���@:H�@�A�H"A�gA��@u0v@B��?����E�����g�r�=d�@R�+AvvA�3JA&zA�vzA&AP�?frZ�	�a�9��[¬�t����c���W�¸	�¬/��+ܖ�‚#����j�ĸD�ك����'�0�@9?LoWA��A�4B�cTB1xYB� pBy�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�%�AnimationCurveL8N;SAnimCurveSC�	DefaultD@�:@[�KeyVerI�X��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�B��A���A��\@��(��O���	£� ��(��)�J%����~ |���"��u���5�z�@w��A�l-B�ZZBb�UB7�B��|A��"�$���#�#�.-���¡����N���~�;�;����b�'�/}��D���e5�����T&���_��@�������d��k��l��@bA�AO9�@�+@[S�� ��CT���x�H��6/�����!7��!���
��?����%�������E������I��j����\��Š������9U��'��8������ƈ�������о������i����&������k�����?��	AszAAFB<A$��@#���A�lΫ��������������������4�+��� A�ڄA6�aA�&�@@AC��e�;O��K���-�<�,‘��[���.������r���>��$��_������f}��`����w
�g���F
�Š���}������+J@�|�A���Ax�0B.eBc~�B��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�]�AnimationCurveLhN;SAnimCurveS{�	DefaultD�9Q���KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�ȉœB��	��x%y�jw�:{�t��Bi�ЏV�_tD�Ο<�p�=��B��I­�W��p�4B�‹��¨���ܢs�j�t�j�+�i���d�EN�]
Ž�����!?�?�GA`mA���A	�A���A߻�A�>�AQ�	A������r�;¿�z��!�����b��� ���θy�T�l��rh�l�g�}h�H=i�<�nsm�gPg��^�k�V�/�Q�}L�}B�F�4‹O%³>�� ���m��㺇�(�r�9Z���B���x���Y���9���+��1#�>{�ʏ���P�����~u��R9��� �K8���R�2�n�\؄«����3����C���Àw�S�_�zWP‘
E�rd5��%���†��=�"���*��8��3E�,WF�M>B�?��8���#�8b����0���@?VA�)A��$A	6A��A�$A�c1Al�>A�n7ADUAVh�@�@�����������m���@%��#�Z�$����<���KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCounti�ՖAnimationCurveL�N;SAnimCurveS��	DefaultD˕KeyVerI��%KeyTimel�Ig�R��&��@�
�7�
KeyValueFloatf�?�?�?a�KeyAttrFlagsi!��KeyAttrDataFloatf

ȖKeyAttrRefCountiM�AnimationCurveL�NN;SAnimCurveS+�	DefaultDC�KeyVerI�|�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?ٗKeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCountiřAnimationCurveL�ON;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
�'�
KeyValueFloatf�?�?�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti=�AnimationCurveL�ON;SAnimCurveS�	DefaultD3�KeyVerI�l�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatfM=�AM=�AM=�AɚKeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCountiu�AnimationCurveLXWN;SAnimCurveS��	DefaultD��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&נ
KeyValueFloatf��4�`�4��4���5�=5�`Q5�($5���5�u5�@5� 5��5��)5�'5�`�5��@5�`5�`�5��R5�P�4���5� 6��O5�p%5��n5� U5���4���5� !5���4�p�5���5��5��5��6��15��I5���5�C5���4�@q5�p5��i5�@B5���5��X5�@~5��5�`\6���4��K5��5�0D5���5�А4�H�5�|�5�(5���4�p�5��x4��5�`96��:5�P�5�P_6��e4�`�4��5�t5��75���5���6�@�4���4��5�@b5���4�`�5�A5� &5�@�4��<6�@5� �4�@�4��5���3���5���5� �4�@5��5��b5��5�@z5���5��C6�@�5��5���4��C5��L5���4�@,5���4��^5�[6���4��5��3��4�@�5�<5��m6��5�@�5�h5��5�5�6��4�-4��.5�%5�@]4��y5�a5��V5�35��KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCounti���AnimationCurveLPN;SAnimCurveSˡ	DefaultD�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf��<2��;2��;2�;2�!<2��:2��;2��;2@�;2�Q;2��;2`W;2`�;2 �;2�;2`�<2 �;2@U;2��;2�C;2�;2`�;2a<2�'<2HL<2�;2�<2@�:2p�;2�I;2`<2R<2��<2`�;2��;2p�;2p�;2
;2`
;2_;2��;2`�;2`?<2 Z<2p�:2��;2�q;2 >;2@�:2`�;2��;2��;2`�;2`�;2@E<2��:2�;2��<2�<2`�;2��:2@�;2 W<2`;2�O;2`G<2��:2�v;2�;2@�<2��;2`�;2�b;2��;2`w;2@f;2�;2�/<2`�;2@�;2�;2�V<2@�:2@�;2`�;2 J<2;2 �;2��:2 �:2(�;2�5:2И;2v;2@�;2��;2��;2�:2�h;2�E<2��<2`�;2�~;2��;2X
<2�;2�;2�:2p!<2<2@�;2 Z;2�s<2@>;2�,=2�*<2`�:2`%<2 �;2`�;2
;2��;2��;20�:2�e<2q<2@�;2�<2@Y;2�;29�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLON;SAnimCurveS�	DefaultD@51��KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&G�
KeyValueFloatf������p����X��@���@�v�?�T�®��{�����z��>���1�y�m�+��-Z�e���&.����������s��`���z���G
��͵��h\�x�W�S�@��.�\��������?���"�k�f��K�v����Ե���vg@)A���̷�+B�“���=���"��Z_�ٻ�Z9���7m�����@�1�@��A�BAk�
A��+A�A�P	A�,A��WA�08A���@*N@U#���zo�����&��e���Z�h��'�*����Ƹ��o5�?�e�@T��?���>��</@�J/@�f$@�n^@�1@N"�?�y��+����6c�g9��o��>���0�������;��t��
�<�
��:�a��^X��i,��?����/��<���
p��K����7��1I�������
��_����O�eh��,�������Ճ������Kd��ɲ��w5���?�vaA�5�A� �A[$�A�AäA���-ha�<��m�~�q�KeyAttrFlagsi!��KeyAttrDataFloatf

حKeyAttrRefCounti��AnimationCurveLHON;SAnimCurveS;�	DefaultDr��S�KeyVerI�P��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf����v`���f��3}�9ce��̦��/��B_����#�Ž����	�"������������z�����;�&¡+C�*WL�1�E���A��qF�=�M�w�Q���O�[P<�a�&�1d����e����1��	�)�������*�h�~�B��9s�…X�¼���Z@�°{����#ƛ�~��_D~��d�>DL��10���5¸6���r����5e��&�LV*´L)�X#€��w�ye
�'A�������������.�FM¤IUºsD§�-�G�%�ʹ-��>=��>��6/ª���]��8����)��<��Hx�h��H���?���v,��Jf��kR�����_R���~��e*�/���)�΅�h������,*����b��HS�� Q���h��U������.I��>q���������%��xY*�6b4�
~7�,�5��/�%&�&��������J��sc��8P�b�V�}�V�S�L��^@��A�ǮF���KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�U�AnimationCurveLxON;SAnimCurveSs�	DefaultD �R���KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�i�*�f���}��2��{�?(O�@OZjA��A���A� �A9��Ab2�A�1�A�T�A�3A�@���@	�A_�8A�܄A��A�s�Az��AZ��A�A��Ap�A�A���A
�AA�AAm�AA�EAg��@Nf]@�A
��AFc�A���A�B?fC(�C%AC�C���B,�B�,[B��-B�kB�A�AB'C��'������i�������n����#0b�39�>�O9@+��@]��@��?@3��?t�h>��?1�?�2@�t�@�~/Aj�]A��A�T�A�y�A;n�A�`�A��A۶�A�;�A�A:�\A�)Auh�@_�����:��~n�o�e�֔(��b�w�)@H�@�]AZ��Ax~�A� �A#�A�4�A��@A��@
�@X^��ҏ>�-\�t�?�w@$X�@W�AY=BA}��A���A��A���A���A&�A�r�AK��Au��A\��AT%4A��<@m�U� ���E(�4��4h��P���T?&�>?r���KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti�ͻAnimationCurveL�FN;SAnimCurveS��	DefaultDúKeyVerI���%KeyTimel�Ig�R��&��@�
�/�
KeyValueFloatf�?�?�?Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiE�AnimationCurveL��M;SAnimCurveS#�	DefaultD;�KeyVerI�t�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?ѼKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5�AnimationCurveL(�M;SAnimCurveS�	DefaultD+�KeyVerI�d�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf��A��A��A��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCountim�AnimationCurveL8�M;SAnimCurveS��	DefaultD��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��I<� x=���<���M� C�8 >���J�R��_H��2<� {?��#;��C�P�D��R�p�K� �@��I�P�D���<� MF��%M�P&H���A� �K���F��H�`-?�`8F��?�>J�X�O���U�p�P�O���C�`F� )@��>E���D�`C��y;���3�L�%�3�TE�@G��A��C�@pB�0�C� �D��RE� -F�X#E���D���E��uE�(�D�hF�R@�\�F��Q��E���D���X�p�1�(.5��EO���O���<��aU� +`�@�:�@�<��>J�@E��@�`[�3ȡ�3�<�D��3�P�@O=��i5�pK;� �C�p�"��4E��\E�`9� r-��ZT��B��T�@�U��K��,��<�G��dM��pA�@D��Y4��E��C?��E���M�8G�@�H�@�?���9���N��@�@Y���H��>��RD���G���D���Q��;�$��5D���>��4�WJ��qK�@A>��D���KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti���AnimationCurveLh�M;SAnimCurveS��	DefaultD��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf���06�0��0��0�1u0՛0���0�z�0��0>�0��0���0�}�0ڳ0�1%�0t�0r�0��0��0I�0P�0`r�0�v�0@��0��Q0]���0���0�m3�1C1��0o�0g�0�w�0���0�	3���3�P���b}���|��0��22�0��08�3��p���$���0��0��3�3�	1k�3�T�0<�3��3�ﲀk�0��0+�0<x3R�0(G���Z�0��0��0��0��0�	1�1�0�t0�3��3(�3|z��]����0�{x�m03�0�0`S�pJ0��
3�i/��0=�00�I04�0.�0�q0��0�1���0�1`;61��0J�0�01a1;�03�0l�/�r�0���0�90��0��01�0�K1��0�1��0�0���0��0D�0h-0��\$1@H810��0��0Q�0j�01�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL��M;SAnimCurveS��	DefaultD@�E���KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?�
KeyValueFloatf��/�v�
���1���P��vE�$A�8�k�3�S���=p��>���>��>�w>	;��lf�����������뿹z*��O����#�>�b��� �j��
�����į��[���u�	�<��4��?�f?p��?�[!@~R�@q��@��@�b�@b�@{>�@��@��:@Oά?��8?�Z8?�{�?32�?�?��)?2_�B
��[K�8�\��OW��?���N�׿�%������u��h�r��\��L��b@� {������YD&�D�$����?�@�4@�Y@�<�?F9�>��	�[���qk�==+�>x[�>6�;?j:e?�%?�j'�u���XS,�O�Y�eJa�FqR�B37�,v��wۿ	5j�<���`?R(�?Bȱ?3�?qS?�kW��"���?޿��Q������Ϳ��ƿ�����T����+�9�[�
�
>�/�>;&�>�( ?�H?��M?w7?N7??�P?�р?���?*�?�7v?�ҟ>,z�Nh�)ӊ��7�a˾i�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS3�	DefaultD@Uq@K�KeyVerI�H��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&w�
KeyValueFloatf����@K�@�AЃA	�A�d�@�ʃ?���+�˿恋��8>�R
����!��[�<~?B./@�/�@HA�2A�-)A�B�@�ӑ@�m@�U$@bw�?[�?�����|��tL�)�U���� ڮ��O��F4��Oe&�p!�"����p�D���iY���j����7��O!x���8�����@���A�?��?�X]?��¿
k���������
G���>��a�����?�$@��@���?��۾>��^(���������ۢ���*�Z�
����N
T���a���}��jZ�'h ��%��%B�`R��8k�ᄍ�������=���K�� 3@�e�@�	)AN�GA��RA�BA�A@��@�W@L��?v�1������A��j#�Kw��9��>���?�@��@%��@.ѡ@V%C@�>�?�o��*t����C�a�h�)	��M���Mgy��s��!������1k���������<G��G����J[�0:���)@0�@*DA��SA~�As��A���A��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�M�AnimationCurveLx�M;SAnimCurveSk�	DefaultD�ӷ'���KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf���=�0V,�H#��x���&�=�\@_��@´�@K�@C�@L>E@p)@�4U@=�@4NJ@JD�ғ�GuM��Y3�_	��`�����@֬DA��A�W�A�y�A��A���A�v�Aޙ�Aw��A%�A{�~A�6A�1վ�0)��מ���������A��8N�����j�Q@q�A��`A⋛A�
�A�<�A��
B�'B��,BF�8BS�?B�GBůOBL-XBv^B�j^B�UB�FB��6B?� BB���A/��A���A3t�A8f�A}EO@X���M��.э���2�+�@�@��A�Y,A�A���@��@�4!@�pֿ����Ǖ���l��c،�������?A��@�v�@���@!��@An�@;��@3�[@z�?�d>��e�m��܁��Õ�W�a�(���2'@�n�@�F.A�eVA,}sAf�A��A<�nAvW^A�]RA_LAuIAU�CA'�AA�[?A�0A��A}��@�g@L"?�ݱ���s��8�V9��La5@�kAVb=A��KeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCounti���AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
�'�
KeyValueFloatf�?�?�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti=�AnimationCurveL��M;SAnimCurveS�	DefaultD3�KeyVerI�l�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS�	DefaultD#�KeyVerI���eKeyTimelKX�Ig�RX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���9
KeyValueFloatfK,��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@�KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCountiK��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI�T�EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���
KeyValueFloatfg��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH��RH�A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCountige�AnimationCurveL�M;SAnimCurveS�	DefaultD#�KeyVerI�,��KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
����
KeyValueFloatf]trhN�rhN�rhN�shN�rhN�shN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�shN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN�rhN���KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti]��AnimationCurveLH�M;SAnimCurveS��	DefaultD��@��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�m_�@Ua�@Vth@��?@�a@���?��?�#&?H��>R�M:݈��Wbi=��>ڍ�?N��?� @�P@�g{@Ys�@m_�@Fޕ@��@k�c@�H9@�k@�V@\��?87�?Yl�?}J?��>��->��{��M��C�<�f�I�|��&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&���&��]r���@�6��E���ܭ>�XK?���?�5�?+@�k@�s/@��E@a�\@f^s@gG�@�~�@���@Y�@�Ě@m_�@��@��m@d�4@�?�t?;�w>��ۈ���JV?��)@���@���@�;A��ANA�z	A@��@Q��@%b�@��@�0@�.�?�d;?�>͈��b
�u*>���>��<?.�?�Y�?ՙ
@E.4@kM]@-�@�[�@��@es�@)��@mo�@oA��
A��A)�KeyAttrFlagsi!c�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLX�M;SAnimCurveS��	DefaultD�b�(��KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&7
KeyValueFloatf�E��rL��T�=�]�g���o�B7x�jc�����#`��p
��r���d����y�xo���d���Y�c�P�CI�E���F��sN���X�Ob�H�g�Qi�ڥj��k��Fl�3�l���l���l���l���l�Hl��l���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k���k��k��k���k�F�k���k�1vk��k��Ij��+i�I�g�l�d���`��(\���V�(�Q�>�L���H���E��ID�E��
J�]T��$a��Lo�a�|�ld��
���p
��~Hz�cy\�o�8�������������u������
����
�2�c_G��[�U�m�Ҁ|�/9��p
�������8�����dg|�gu��Mm�fFd��{Z�cP��CE�Z):�$�.���#�
��d!�U����������aKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�
AnimationCurveL�=N;SAnimCurveS+	DefaultD�aB�CKeyVerI�@�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&o
KeyValueFloatf�
�—�
‡��d��=��������q������:��/i��fS������g��)`�����������������c
�
�¨����	¬���'���K��?���j���
���e��ڱ��
0���������H����w�*Bj�s�_��;Y���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V���V��)\�Q�j�B�������������a������$|���K�����������x�Cf	����K�F���v�
�¾�¡��#����r��ø���n��ʞ��fS��LK�������F�5�-¿�A��BI�դF��x?¨�4�ԍ'¦���	�,
����������H|��fS�������}��1������������g��kf��t���gQ�26��W�[���#�\,·�3�R�;�N�B��BI™KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti��AnimationCurveLXKN;SAnimCurveSc	DefaultD{KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?KeyAttrFlagsi!KKeyAttrDataFloatf

xKeyAttrRefCounti�	AnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI�,	%KeyTimel�Ig�R��&��@�
�_	
KeyValueFloatf�?�?�?�	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCountiuAnimationCurveL�M;SAnimCurveSS
	DefaultDk
KeyVerI��
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf�?�?�?KeyAttrFlagsi!;KeyAttrDataFloatf

hKeyAttrRefCountiMAnimationCurveL8�M;SAnimCurveS�	DefaultD�KeyVerI�\eKeyTimelKX�Ig�RX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��9
KeyValueFloatfK,�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�'E@�KeyAttrFlagsi!KeyAttrDataFloatf

@KeyAttrRefCountiK�AnimationCurveLH�M;SAnimCurveS�	DefaultD�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�
KeyValueFloatf��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ�WJ��VJ�TWJ��VJ�WJ��VJ��VJ��VJ�WJ�WJ�WJ�2WJ��VJ��VJ��VJ��VJ��VJ��VJ�WJ�2WJ�WJ��VJ��VJ��VJ�2WJ��VJ��VJ�WJ��WJ�WJ�WJ��VJ��VJ�WJ�WJ��VJ��VJ��VJ��VJ�WJ�2WJ�sWJ��VJ��VJ��VJ�3WJ�2WJ�2WJ��VJ��VJ��VJ��WJ�WJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ�KeyAttrFlagsi!KKeyAttrDataFloatf

xKeyAttrRefCounti��AnimationCurveLx�M;SAnimCurveS�	DefaultD�KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&
KeyValueFloatf�{H�{H�{H�zH�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�zH�zH�zH�{H�{H�{H�{H�{H�{H�{H�~H�{H�~H�{H�{H�{H�zH�zH�zH�{H�{H�{H�{H�zH�{H�zH�zH�{H�}H�{H�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�~H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�zH�{H�{H�{H�zH�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�zH�zH�{H�zH�{H�{H�IKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��"AnimationCurveL��M;SAnimCurveS	DefaultD`�3@+KeyVerI�( �KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&W"
KeyValueFloatf����@l��@x�@��@�*�@�L�@k�@���@r��@��@���@Ρ�@��@�l�@�E�@��@7�@1ʡ@���@���@v��@��@�!�@�X�@v�@ȁ�@S��@ʘ�@࣢@U��@���@���@/Ȣ@�΢@�Ӣ@آ@ۢ@�ܢ@tݢ@uݢ@qݢ@sݢ@pݢ@pݢ@qݢ@rݢ@qݢ@rݢ@rݢ@sݢ@rݢ@sݢ@sݢ@tݢ@uݢ@sݢ@qݢ@tݢ@xݢ@tݢ@sݢ@sݢ@rݢ@sݢ@sݢ@rݢ@rݢ@ܢ@�ע@)Ѣ@�Ǣ@Y��@Ѯ�@��@ݐ�@���@�v�@�g�@�Q�@�6�@��@���@�ۡ@���@���@���@���@���@Sա@f�@�8�@h�@��@���@���@‰�@�?�@�֡@d�@��@�ޠ@��@��@LB�@D�@ڿ�@���@{7�@�f�@Ԋ�@���@���@���@���@ܗ�@���@�y�@�e�@�N�@�4�@��@���@ס@��@Ϗ�@�j�@F�@�!�@>��@�ޠ@�"KeyAttrFlagsi!�"KeyAttrDataFloatf

�"KeyAttrRefCounti�-)AnimationCurveLءM;SAnimCurveSK#	DefaultD@��?c#KeyVerI�`&�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�(
KeyValueFloatf���?7��?nDZ?x�?�	�?�2�?B~�?2�?Gا?U�?Φ?�I�?i��?fu�?��?L�?�=�?�!�?�w�?��?�۳?7�?K9�?
�?���?�-�?�ϧ?�l�?�?h��?�7�?�ԥ?�v�?B!�?�դ?D��?�g�?pI�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�>�?�V�?���?���?Sz�?��?i��?�*�?Ʊ�?�'�?���?f �?�>�?���?yt�?F�?
�?��?��?�Ǵ?��?�V�?���?DJ�?��?<��?8��?�0�?Φ?[`�?Ϋ?�
�?C�?j�?�D�?��?8۶?H�?�K�?�	�?>��?3N�?�*�?�j�?�<�?Φ?��?�<�?���?�m�?B�?�6�?.G�?Em�?棭?��?�-�?�v�?��?��?1)�?yH�?�R�?�D�?�(KeyAttrFlagsi!�(KeyAttrDataFloatf

 )KeyAttrRefCounti�e/AnimationCurveL��M;SAnimCurveS�)	DefaultD���A��)KeyVerI��,�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�.
KeyValueFloatf��F®:	�hœG��W����6����˕��]���'����������)f������h������8��	'«�…F���
���������4������L,����������j���M�����N�������Is��$f��/\���U�Z�S�Y�S�[�S�[�S�Y�S�Y�S�Y�S�Y�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S�Z�S���X��f��{��������ߩ�6Ź�����D��4������g������²,³�
™s
��@��…F½e��w��X ���'��'���Bȭ�����N��k���'j¨_-�`
A���H��8F£?�/74�k�&�Iµ��4��������P�������������M��* ���u��'���.{����������2�a4
�eq�1���&#�d+€e3¨
;º>B���H��.KeyAttrFlagsi!+/KeyAttrDataFloatf

X/KeyAttrRefCounti��0AnimationCurveL��M;SAnimCurveS�/	DefaultD�/KeyVerI�0%KeyTimel�Ig�R��&��@�
�?0
KeyValueFloatf�?�?�?i0KeyAttrFlagsi!�0KeyAttrDataFloatf

�0KeyAttrRefCountiU2AnimationCurveL�M;SAnimCurveS31	DefaultDK1KeyVerI��1%KeyTimel�Ig�R��&��@�
��1
KeyValueFloatf�?�?�?�1KeyAttrFlagsi!2KeyAttrDataFloatf

H2KeyAttrRefCounti�3AnimationCurveL�M;SAnimCurveS�2	DefaultD�2KeyVerI��2%KeyTimel�Ig�R��&��@�
�/3
KeyValueFloatf�?�?�?Y3KeyAttrFlagsi!�3KeyAttrDataFloatf

�3KeyAttrRefCounti}9AnimationCurveLȟM;SAnimCurveS#4	DefaultD;4KeyVerI�D7�KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��8�
KeyValueFloatf]t�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@	9KeyAttrFlagsi!C9KeyAttrDataFloatf

p9KeyAttrRefCounti]�?AnimationCurveL��M;SAnimCurveS�9	DefaultD�9KeyVerI��<�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?
KeyValueFloatf��'��'��'��'��'�)�'��'�-�'���'���'��'��'���'�/�'���'�P�'�1�'�2�'�
�'�9�'�+�'��'���'�N�'���'���'���'���'���'���'�O�'�p�'���'��'���'���'���'���'��'�p�'��'���'�~�'���'�j�'�/�'���'��'���'�/�'�]�'���'�O�'���'���'�o�'���'�/�'���'���'�/�'�o�'���'���'���'���'��'�L�'���'���'���'�-�'�n�'�/�'�O�'���'���'�O�'�N�'�n�'���'���'���'�1�'���'���'�7�'��'���'��'��'���'���'���'���'�
�'���'�S�'��'��'��'���'��'��'�/�'���'���'�-�'�0�'�/�'�P�'�O�'�/�'�/�'���'���'�/�'���'�/�'�/�'�.�'��'��'���'�R�'���'�-�'��'��'��'�A?KeyAttrFlagsi!{?KeyAttrDataFloatf

�?KeyAttrRefCounti��EAnimationCurveL(�M;SAnimCurveS@	DefaultD#@KeyVerI� C�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&OE
KeyValueFloatf����5�Q�5�C�5�[�5^�5�/�5�T�5�H�5+J�5|K�5?K�5�I�5K�5�M�5�O�5�a�5PO�5�Z�5�R�5Z7�5�M�5gK�5�D�5G�5&H�5�I�5�D�5�R�5�F�5^C�5aQ�5�T�5
W�5~L�5NH�58L�5L�5>F�5K�5
8�5�_�5^�5)^�5!E�546�5�K�5�P�5�N�5�Z�5�E�5
Q�5�E�5�F�5P�5�B�5�S�5�S�5�G�5$/�59I�5�T�5"J�5�I�5>F�5I�5�M�5�F�5�J�5sK�5�J�5�G�5�K�5�C�5tH�5�J�5�L�5KJ�5�H�5xL�5�N�5H�5�s�5�3�5I�5K8�5�7�5OV�5�A�5I�5rE�5tG�5�>�5�I�5�J�5�E�5�I�5�F�54>�56=�5�H�5LJ�5!E�5<[�5,�5�K�5YM�5�I�5�4�5�T�5�O�5�R�5xQ�5�@�5VP�5 .�5�@�5�O�5�B�5�O�5�O�5VD�5gK�5bA�5@9�5�Q�5�D�5;J�5yJ�56K�5�K�5yEKeyAttrFlagsi!�EKeyAttrDataFloatf

�EKeyAttrRefCounti�%LAnimationCurveLX�M;SAnimCurveSCF	DefaultD`0a
@[FKeyVerI�XI�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�K
KeyValueFloatf��	S@6�_@�Sn@��}@G��@�B�@�?�@/L�@�
�@*�@�G�@3D�@�ޜ@��@�ʋ@�	�@!�q@%�a@gW@�	S@�E_@�o|@a��@�,�@�G�@�G�@�G�@G�@~G�@~G�@�G�@}G�@�G�@G�@�G�@|G�@}G�@}G�@�G�@�G�@{G�@}G�@yG�@{G�@|G�@}G�@|G�@~G�@}G�@~G�@}G�@G�@G�@�G�@�G�@G�@}G�@�G�@�G�@�G�@G�@~G�@}G�@G�@�G�@}G�@|G�@~G�@G�@�G�@�G�@�G�@�G�@�G�@�G�@�G�@�G�@ɢ�@�,�@*��@^��@l�@po|@�ql@�E_@�TV@q	S@�X@�je@,@x@k�@���@R�@���@�G�@c�@��@h�@�q@M�[@S	S@��U@'J]@B�h@*bv@��@$�@Z��@���@�)�@��@�G�@S�@�@AJ�@< �@wz�@`h�@d��@�<�@zB�@m�@@х@iy�@�Bz@J�q@g]i@fa@d�Y@X	S@�KKeyAttrFlagsi!�KKeyAttrDataFloatf

LKeyAttrRefCounti�]RAnimationCurveLh�M;SAnimCurveS{L	DefaultD O��?�LKeyVerI��O�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�Q
KeyValueFloatf�y�
?��#??�<?��W?=|r?S�?hc�?�Ӝ?��?~g�?6T�?�ڨ?��?��?��?	vb?�sB?�q'?��?z�
?��"?[EU?���?�ʡ?4T�?4T�?7T�?9T�?9T�?8T�?2T�?8T�?;T�?6T�?=T�?8T�?=T�?>T�?7T�?)T�?TT�?LT�?IT�?<T�?0T�??T�?9T�?/T�?KT�?FT�?HT�?;T�?7T�?*T�?.T�?9T�?-T�?:T�?&T�?0T�?@T�?=T�?<T�?:T�?1T�?<T�?CT�?<T�??T�?AT�?BT�?OT�?CT�?DT�?CT�?AT�?9T�?~�?�ʡ?`q�?��?(Ls?SEU?Ϋ9?��"?Ё?Z�
?‹?�-?IN?�Ks?�C�?��?���?7T�?"Ӥ?��?�Ks?nsB?v�?\�
?��?-�?��2?R�J?̀e?5��?�ߍ?�ԙ?��?5��?3T�?���?v��?�+�?Vo�?�ݞ?А�?���?�0�?�R�?cI~?S�o?7�`?��Q?��B?8[4?��&?~�?X�
?�QKeyAttrFlagsi!#RKeyAttrDataFloatf

PRKeyAttrRefCounti��XAnimationCurveL�6N;SAnimCurveS�R	DefaultD�V�1��RKeyVerI��U�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�W
KeyValueFloatf��
��;)���s��Ui��艵��T���I���������������������%�����Ѽ���p�������3���
��%����}��oA�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������\����H���oA���ߵ��}�����%���gb���
������8��f����ߵ��;�����O�������������ߵ�p���3=���
������OU���P��F/��K/��ޏ�����On���i����������4��(����q��I\��i���I6���Q��u����T��h��GO��r ������ء���{A�����
��!XKeyAttrFlagsi![XKeyAttrDataFloatf

�XKeyAttrRefCounti�
ZAnimationCurveL(9N;SAnimCurveS�X	DefaultDYKeyVerI�<Y%KeyTimel�Ig�R��&��@�
�oY
KeyValueFloatf�?�?�?�YKeyAttrFlagsi!�YKeyAttrDataFloatf

ZKeyAttrRefCounti�[AnimationCurveLh5N;SAnimCurveScZ	DefaultD{ZKeyVerI��Z%KeyTimel�Ig�R��&��@�
��Z
KeyValueFloatf�?�?�?[KeyAttrFlagsi!K[KeyAttrDataFloatf

x[KeyAttrRefCounti�\AnimationCurveL(HN;SAnimCurveS�[	DefaultD�[KeyVerI�,\%KeyTimel�Ig�R��&��@�
�_\
KeyValueFloatf�?�?�?�\KeyAttrFlagsi!�\KeyAttrDataFloatf

�\KeyAttrRefCountiu^AnimationCurveL�M;SAnimCurveSS]	DefaultDk]KeyVerI��]%KeyTimel�Ig�R��&��@�
��]
KeyValueFloatf}��@}��@}��@^KeyAttrFlagsi!;^KeyAttrDataFloatf

h^KeyAttrRefCounti�dAnimationCurveLX�M;SAnimCurveS�^	DefaultD�^KeyVerI�,b5KeyTimele(�Ig�RH!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��c�
KeyValueFloatfe��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿��¿�dKeyAttrFlagsi!KdKeyAttrDataFloatf

xdKeyAttrRefCountie5jAnimationCurveL��M;SAnimCurveS�d	DefaultD�dKeyVerI��g�KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��i�
KeyValueFloatf]t)��)��)��*��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��(��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)���iKeyAttrFlagsi!�iKeyAttrDataFloatf

(jKeyAttrRefCounti]mpAnimationCurveL��M;SAnimCurveS�j	DefaultD��@�jKeyVerI��m�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�o
KeyValueFloatf�P]@*�?c��?t�?��?g��?(j?��@?�� ?�z?��?��?�0?��`?�R�?�ܬ?}-�?8��?���?P]@�A@N|�?��?y��?tj�?�©?��?���?�3�?�l}?�Yi?�}V?�(E?.�5?�I(?[?*?E?n<?t<?_<?e<?\<?^<?`<?f<?_<?c<?f<?i<?e<?h<?h<?l<?q<?h<?a<?l<?~<?k<?k<?g<?d<?h<?k<?d<?d<?��?�`?�{0?�sG?��a?�}~?���?��?�:�?sj�?���?[^�?�!�?���?�
�?A@o�@r�@�8@Q]@�F�?���?�>�?C�?YkY?(�?���>��?thP?�׳?sh	@9@x^@xm@��g@09Z@��E@�-@��@���?��?A�?عG?�?��?�?N?#}+?�9H?�~k?�H�?
\�?՜�?���?�/�?5�@2@bD&@Yu5@v\D@տR@Cc`@xm@�oKeyAttrFlagsi!3pKeyAttrDataFloatf

`pKeyAttrRefCounti��vAnimationCurveLȴM;SAnimCurveS�p	DefaultD�����pKeyVerI��s�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&v
KeyValueFloatf��ަ�=U������PE��!*��[���q>��x���$�������}f������]x����������`���̠��j(���ަ����G���p��ʺ�T����m��������������W(���.�����;������P��jǬ�ᓫ�y˪�Ń��ƃ������ƒ��ƒ��Ã��Ń��Ã��ă��Ń��ƒ��Ã��ƒ��ă��ă��ƃ��ƃ��ă��Ń��ă��ǃ��Ń��Ã��ă��ă��ă��Ń��ă��Ã�����fr������A��,���̶�ku��Ҩ���"��T���ٹ��1����~��������|��h��5��8>���ަ���vY���H�����eA��2��������=�����n����f~�֘W��H�<�M�H�[��3q��
���N��In���Z����������������I�����܉��-���}(��r���YY��Ň��?K��ǣ�	���m��k׉�x���r���c��kU��H�1vKeyAttrFlagsi!kvKeyAttrDataFloatf

�vKeyAttrRefCounti��|AnimationCurveL��M;SAnimCurveS�v	DefaultD`N�@�wKeyVerI�z�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?|
KeyValueFloatf�sz�݁�,����3��/���'��������E��ol��u���A���z�����~��$���(������\����-�sz��3Š����2�����$���PN��Lj���A�������Ф�}ߛ�X���e���4����{�؈q�/�i�D�d��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c��c�zg�r��m�����D�����=����Ͻ�����$���K����������Cu�����G�¸��sn¢!�sz�י�&���R6��'��r}��.K��ؠ��A������>��S0¬%�8¨�@���=��6�}�+¸�����ki��/�������'��~ˤ�A������&ͤ���kL��zq��r6���`��Ӵ��g�����{0
´��
�®#��+�s�2¼�9¨�@�i|KeyAttrFlagsi!�|KeyAttrDataFloatf

�|KeyAttrRefCounti�U~AnimationCurveL(�M;SAnimCurveS3}	DefaultDK}KeyVerI��}%KeyTimel�Ig�R��&��@�
��}
KeyValueFloatf�?�?�?�}KeyAttrFlagsi!~KeyAttrDataFloatf

H~KeyAttrRefCounti�AnimationCurveLسM;SAnimCurveS�~	DefaultD�~KeyVerI��~%KeyTimel�Ig�R��&��@�
�/
KeyValueFloatf�?�?�?YKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiE�AnimationCurveL�M;SAnimCurveS#�	DefaultD;�KeyVerI�t�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?рKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL8�M;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf��@��@��@I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLh�M;SAnimCurveS�	DefaultD+�KeyVerI�(��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&W�
KeyValueFloatf����������������������������������������������������������������������������������������������������������l�������������������N��N��I�����������������������������������������-��������������������������������������
��������������������M��-����������������������������������������������������������������������������������������������������������������������������������������������������������KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�-�AnimationCurveL�M;SAnimCurveSK�	DefaultDc�KeyVerI�`��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���KeyAttrFlagsi!�KeyAttrDataFloatf

 �KeyAttrRefCounti�e�AnimationCurveLH�M;SAnimCurveS��	DefaultDN7�?��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&ǔ
KeyValueFloatf�p��?�`�?�/�?S�?���?~��? !�?h�?�a�?m�?:�?���?���?�>�?;M�?�$�?���?��?Y��?r��?���?���?��?���?��?i��?�7�?q��?xg�?+��?kv�?]��?{*@�W@}@Ϛ@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@·@�@�g@&@���?���?-�?c�?���?��?D:�?�#�?l��?�^�?���?jy�?�>�?N�?���?���?Ѧ�?��?��?k��?#�?+�?��?:�?w�?�d�?ߑ�?��?m��?���?�E�?qK�?�9�?ձ�?cX�?���?l�?O��?��?��?:�?��?���?�F�?׏�?���?��?�M�?���?tD�?��?;��?��?ӡ�?���?�q�?}a�?fd�?��?�KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti���AnimationCurveLx�M;SAnimCurveS��	DefaultD��?ӕKeyVerI�И�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��]?�Y?�|T?��O?�J?�E?m�@?��<?ʌ9?�l7?:�6?e�7?�];?ZR@?�.F?nXL?K;R?bMW?�
[?�]?�n[?�=V?oXO?�H?�D?e6B?�??�/=?�:?i8?x5?�
3?q�0?`�.?��,?"j+?pI*?Ӓ)?S)?S)?CS)?7S)?6S)?#S)?S)?%S)?S)?S)?6S)?.S)?2S)?S)?S)?S)?S)?S)?
S)?S)?�R)?S)?'S)?#S)?"S)?S)?S)?"S)?,S)?��)?
�+?p�-?3�0?�d4?H8?�;?�	??�B?�D?|G?�J?\M?��P?�hT?ՄW?�!Z?�\?�]?~]?ŮZ?ޱU?��N?�WG?�??��9?}6?:�6?׭=?�.K?��Z?�;i?�=s?��v?N�u?JIr?t�l?��e?U�]?s�T?pL?��C??=?^8?4�6?�7?�^8?b:?=?�K@?]D?�H?�L?�"Q?a�U?d�Z?kT_?��c?Sh?\{l?kWp?��s?��v?)�KeyAttrFlagsi!c�KeyAttrDataFloatf

��KeyAttrRefCounti�աAnimationCurveL��M;SAnimCurveS�	DefaultD``�A��KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&7�
KeyValueFloatf���c�	���1���������z���X����ݶ�N��l���FD��h�������6��:��0r���o�a\����=���½m�����x����������������v��6���%���L��V6��I��*����#��ḁ�K��K��L��L��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K��K���؂��L����������~֦����&H��}�������x����	��9,��ɑ��ud���Œr
�ds
¦y�wL�����¥����������������Q��m���Mz��D{����®.���A���I�[*G� �?�P�4�o'®b�:��ȋ������b���7��m���!������i������a,���$��>�������K��f
���n3�Ϩ#�
,�4‘�;‹#C���I�a�KeyAttrFlagsi!��KeyAttrDataFloatf

ȡKeyAttrRefCounti�M�AnimationCurveL��M;SAnimCurveS+�	DefaultDC�KeyVerI�|�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?٢KeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCountiŤAnimationCurveL�@N;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
�'�
KeyValueFloatf�?�?�?Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti=�AnimationCurveLXHN;SAnimCurveS�	DefaultD3�KeyVerI�l�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?ɥKeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL8�M;SAnimCurveS��	DefaultD��KeyVerI��%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�XE@�XE@�XE@A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultD#�KeyVerI� ��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&O�
KeyValueFloatf��i�2 ��2 �2�(�2��20J�2`��2�p�20q�20U�2x�2`O�2���2�ч2X�2�ވ2�Ȇ2퐇2$_�2X��2�2lE�2��2���2��2 �2@Z�2`��2��2��2@�k�n�2��j�p^�2�&�2��2P
�2��2�x�2��2�ng�/k�`,�2�{�2��2@�2���2��2�_�2Pti�0�2ؾ�2p��2�†2`o�p�2 ��2�al�@q���2��k���2�2���2ؗ�2�݆2@�2��2@o�2�3�2��n�xd���2��2 ��2`�j�`�n�@om��I�2��2(&�2��b�0Ί2�a�2���2�ێ2�>s2���2ૉ2���20'�2�C�2���2�a�2���2 q�2 Š2��2�g�2`�2��2�P�2�΂2�e�2е�2��2 �2`e�2@&�2F�2ੇ2�Ԇ2���2@w�2�7�2��2��2�o�2���2�2��2@�2j�2Ц�2�/�2�݆2@�2�N�2��2�Ї2y�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�%�AnimationCurveL��M;SAnimCurveSC�	DefaultD[�KeyVerI�X��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�B0ݵ��ܵ��ܵ`�ܵ��ܵ��ܵ��ܵ��ܵ>�ܵf�ܵ�ܵ�ܵ��ܵ��ܵ�ܵ=�ܵ\�ܵx�ܵ�ܵ �ܵ��ܵ��ܵ��ܵ��ܵ�ܵ0�ܵ�ܵx�޵9�޵3�ܵ��ܵ4�޵��ܵ0�ܵ��ܵq�ܵ��ܵ��ܵ�ܵu�ص`��_�޵����޵��ܵ��޵��ܵ��ڵ��޵��޵��޵��ܵ,�ܵf�ڵ��ڵ��ܵ�ڵ��ܵ��ص�ڵ��ܵ��ܵA�ܵR�ܵ�ڵ4�ܵ�޵��ܵ��ܵ��ܵ��ܵk�޵��ܵ�ܵ��ܵv�ܵ0�ڵ^�ܵ:�޵��޵��޵��ⵏ�ܵ��ܵI�ܵ��޵�ܵ}�ܵ�ܵ��ܵ�ܵA�޵��ܵ�ܵe�ܵ��ܵY�޵
�ܵ��ܵ��ܵ��ܵ��ܵZ�ܵ0ݵp�ܵ�ܵ�ܵ��ܵ�ܵ��ܵ��ܵ�ܵ[�ܵ�ܵ<�ܵ��ܵ��ܵ_�ܵ��ܵj�ܵ��ܵ��ܵ0�ܵ'�ܵ?�ܵ��ܵ��ܵu�ܵ�ܵ�ܵ��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�]�AnimationCurveL��M;SAnimCurveS{�	DefaultD����?��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��?�8�?Y)�?���?]��?���?�V�?k[�?�n�?B�?��?���?+��?�
�?�1�?���?┽?���?
��?�?vƯ?i��?|��?���?��?��?��?��?��?��?%��?
��?��?��?��?��?��?��?��?(��?��?��?���?��?��?��?	��?��?��?��?��?��?��?��?"��?��?��?��?6��?��?��?��?��?��?��?��?	��?��?��?��?��?��?��?��?��?��?��?kE�?���?���?���?���?{��?���?�Ư?T��?�?�U�?�m�?e��?���?�	�?��?P��?��?�@�?n
�?���?���?k�?�~�?s��?�E�?�Ķ?�=�?���?���?�n�?/��?K�?���?��?C0�?߭�?�E�?�?��?���?�k�?/��?���?O��?t;�?H��?�)�?糽?�i�?�b�?)��?�~�?�KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCounti���AnimationCurveL�M;SAnimCurveS��	DefaultD�[$�?˺KeyVerI�Ƚ�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf��"�>7��>��>j�?�N?86 ?9-?�8?��@?�gF?�oH?"�D?��:?��,?��?$�	?^k�>X��>ח�>�"�>A��>п?�"?�O=?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?poH?�oH?�oH?�oH?�oH?yoH?�oH?�oH?xoH?�oH?�oH?�oH?�oH?�oH?roH?zoH?�oH?soH?�oH?poH?}oH?�oH?�oH?�oH?�oH?~oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?�oH?fqE?�O=?�M1?�"?o�?̿?�
�>��>�9�>�"�>�z�>��>���>/�?.�&?o�7?��C?�oH?��@?��,?&�?k�>�<�>"�>3�>�>���>C[�>�e?,??9(?��4?T??>�E?oH?V�G?v�E?��B?�??b7:?�4?�U.?�'?!6 ?�?��?Y�?r�?��>]�>C��>���>t"�>!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveLH�M;SAnimCurveS��	DefaultD��1��KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&/�
KeyValueFloatf�gp��ڱ���#��cC���������ڝ���\���=�����[���q�������V�����yٱ�:t���'���Y��gp��*E��DT���v��3���[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��[��d���2���g���v�����DT���Ǡ�*E��ѐ�gp��v�������N������|��S������[������V�����:t������gp���j���֕���L���y����������)���t����`��[������$`���������5��M���4���IC�����u��FO�����5ª�
�������M�pg��fp��Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�E�AnimationCurveLx�M;SAnimCurveS#�	DefaultD;�KeyVerI�t�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCounti��AnimationCurveL(�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti5�AnimationCurveLX�M;SAnimCurveS�	DefaultD+�KeyVerI�d�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

(�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�F�@�F�@�F�@9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS�	DefaultD�KeyVerI�,��KeyTimel~��Ig�R��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�K�
KeyValueFloatf~��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A�u�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti~��AnimationCurveLh�M;SAnimCurveS?�	DefaultDW�KeyVerI�`��KeyTimel]��Ig�R�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
����
KeyValueFloatf]t�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?�΁?%�KeyAttrFlagsi!_�KeyAttrDataFloatf

��KeyAttrRefCounti]��AnimationCurveL��M;SAnimCurveS��	DefaultD`����KeyVerI���KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&3�
KeyValueFloatf�k$5���(�P���"��$���ܿJ����r��l�����������Ȏ��
��u%��C�߿���p�=�"���.�k$5�>�1��$��r��q��78���Կ�
Ŀd��d>������u���f�e�J�k<1����
�B������o*�b*㾏*㾂*㾐*㾎*㾊*�}*㾎*㾅*�*�y*㾁*�z*�}*�t*�l*�}*㾊*�u*�R*�v*�w*�*㾅*�|*�x*㾅*㾅*���������(���M��w�*���吩��ÿ��Կ78忹���C$�M�
�]��K� �n�(��c/���3��6�k$5���-�X���
��4��0��!���^�������FX��N��.r&��Q��r����=h{���o�_�]���G�Y0/�?�� �����̿7���W~�������뉿%�������T������i�Ϳ���&����
�=7�x�%���3���A�FO��z\��i���t����]�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�	�AnimationCurveL��M;SAnimCurveS'�	DefaultD��??�KeyVerI�<��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&k�
KeyValueFloatf��6�=s�>cp?z�T?�?��?O��?��?���?��@��@4�@���?z��?V��?�z?Nv+?l�>��T>�6�=q�k>�K?�H}?}�?]��?�x�?F��?"5�?��@{@u�
@@Y�@J@�e@�@"@��@Q@N@X@V@V@T@Q@S@R@P@V@U@U@R@R@O@O@R@P@R@L@P@S@S@S@R@P@S@U@�F@,@��@�y@v0
@�'@��?8��?vf�?\��?��?'��?�T�?Z�f?UY1?K��>̣�>�zM>��=�6�=~[j>O��>�V?[G�?�f�?���?�_@��@�?�?h��?7?�>{B۾A��`~��_��Nw���$�o�{��PH>�Z&?��?��?u8�?�@��@)�@@�p�?���?���?/�?�2�?=�??�V?��?��>���=Y
���¾�j�KY���a~����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�A�AnimationCurveL��M;SAnimCurveS_�	DefaultD�׵A�w�KeyVerI�t��KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf���
�R�¢N�������<��.��H*��ZB������w��+��<��T����2������ٻ���$����� 
¿�
•���������������$���	������b��YE�����]	��*ˋ��N��wj��@v�3bo�Dk�v�i�v�i�w�i�w�i�u�i�v�i�u�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i�v�i��.m�P6w��<�����*������l���ӻ��������-���\��[?��r*�����)h�Z3
�<�¼¿�
“z	ª��6���/�������P���Ԝ�+�����������n”/*�=?��G¢�D›=���1¼_#�҆�N"�Đ��������\���+������$����^��C��l#��E������1��������c�
��}�1f¢.(�w�0���8�g�@��G���KeyAttrFlagsi!�KeyAttrDataFloatf

4�KeyAttrRefCounti���AnimationCurveL�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?E�KeyAttrFlagsi!�KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveL88N;SAnimCurveS�	DefaultD'�KeyVerI�`�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf�?�?�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD��KeyVerI���%KeyTimel�Ig�R��&��@�
��
KeyValueFloatf�?�?�?5�KeyAttrFlagsi!o�KeyAttrDataFloatf

��KeyAttrRefCounti!�AnimationCurveLx�M;SAnimCurveS��	DefaultD�KeyVerI�P�%KeyTimel�Ig�R��&��@�
���
KeyValueFloatf���@���@���@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiY�AnimationCurveL��M;SAnimCurveSw�	DefaultD��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�S��9z��9Z��9W��9��9<��9u��9Ϙ�9���9���9}��9`��9{��99��9Q��96��9��9:��9x��9���9X��94��9���9|��9S��9X��95��9ޘ�98��9���9u��9З�9��9Ϙ�9R��9ڙ�9Y��9���9���9z��9��9]��9���9���9Ԛ�9��9X��9���9ۙ�9ٙ�9y��9ٙ�9y��9���9W��9���9���9ؙ�9���9[��9��9y��93��99��9Y��9j��9g��9ƙ�9���9Ӛ�9���9���9m��9_��9��9���99��9���95��9נ�9}��9���9���9��9Z��9z��9|��9$��9���98��9A��9���9���9���9M��9m��9���9!��9:��9Z��9^��9X��9y��9;��9���9|��9x��9R��9X��9v��9|��9���9љ�9]��9���97��9���9��9W��9y��91��9]��9D��9\��9V��9��99��9W��9:��9���9��KeyAttrFlagsi!�KeyAttrDataFloatf

L�KeyAttrRefCounti���AnimationCurveL��M;SAnimCurveS��	DefaultD��KeyVerI����KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��
KeyValueFloatf�v>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�u>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�v>.�v>.�u>.�v>.�u>.�v>.�u>.�v>.�v>.�m>.�u>.�u>.�u>.�v>.�u>.�u>.�v>.�m>.�m>.�~>.�v>.�~>.�v>.�n>.�u>.�u>.�m>.�u>.�v>.�u>.�v>.�v>.�m>.�n>.�u>.�m>.�v>.�f>.�n>.�u>.�v>.�v>.�v>.�n>.�u>.�v>.�u>.�v>.�v>.�v>.�u>.�v>.�v>.�v>.�n>.�n>.�n>.�u>.�u>.�u>.�}>.�v>.�u>.�v>.�u>.�u>.�u>.�v>.�v>.�u>.�v>.�v>.�u>.�v>.�v>.�v>.�u>.�v>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.��KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti��	AnimationCurveL��M;SAnimCurveS��	DefaultD�u���KeyVerI��	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&+	
KeyValueFloatf���K��
K�PJ��zI�}�H�9�G�G�F�I�E�jTE��D�ػD�E�v�E�%�F�.#H��WI��eJ�:2K�O�K���K�#�J��9H�?�E�	OC�q�B�lC��sC���C��6D�ŽD���D��(E�iE���E���E���E��F�!F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��$F��F�T�E��E��]E�S�D���D��
D�\�C��C�p�B�C�B�	C�V�C��$E�ǂF���G��CI�QjJ��BK�v�K���K��K�(AJ��I���G��mF��XE�ۻD�n�D��E��E�ѯD��$D��C�r�C�ID�,�D��
E�&XE��{E�mtE��HE�B
E���D�ֻD���D���D�1�D��
E�"+E��IE��cE��uE��}E�QzE�jE�"ME��#E���D���D�^oD�(D��C�U	KeyAttrFlagsi!�	KeyAttrDataFloatf

�	KeyAttrRefCounti�	AnimationCurveL�M;SAnimCurveS		DefaultD�|�׿7	KeyVerI�4	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&c
	
KeyValueFloatf�瓿������_������!ƭ��������A��������}���š����mf���E������������犺�����蓿��&������6������է���>���͟��Z��JꜾ䁛� '���ߘ�鰗�4�������H����d���	��w꓾�꓾&꓾=꓾=꓾c꓾�꓾_꓾p꓾�꓾>꓾M꓾F꓾k꓾s꓾�꓾�꓾o꓾�꓾m꓾�꓾�꓾[꓾d꓾e꓾l꓾�꓾e꓾Q꓾17��W���O�� 旾W������������w��J/��֧����������V)��3���V���J���ź�/���l2����������3��I����������T���š��柾^a��
Ҷ�B8¾uIʾHV;�Y̾חɾ�Sž�ҿ��g��y��{���f������V���š�������ث���Ÿ�&L��y5���l��l߫��{���0���춾ɠ���=������!�ľ"
Ⱦn�ʾLV;�
	KeyAttrFlagsi!�
	KeyAttrDataFloatf

�
	KeyAttrRefCounti�9	AnimationCurveLH�M;SAnimCurveSW		DefaultD@�D�o	KeyVerI�l	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�	
KeyValueFloatf��P%��.�*"�v�
�@������@�������+���;�����������nM��"��������t��ͩ!��P%���"�o�²3º:�!�������M��������YZ��V���4��6��M���F%��;���GK���0��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��v��o=��1�����<M���M���*��P���)��E$��!���;��e�����e0�2‡R!�1B$†�%��P%��� ���Z±��Jy������ִ����������‚�$��EA�d�V�|x_‰�\��T���H…S:�[*‘D�k	�Z���6J���������:��‚���U���r��e������������	��8ˆ��U�#®-�@6��A?ˆH”aP�i>X�|x_��	KeyAttrFlagsi!�	KeyAttrDataFloatf

,	KeyAttrRefCounti��	AnimationCurveL��M;SAnimCurveS�		DefaultD�	KeyVerI��	%KeyTimel�Ig�R��&��@�
�	
KeyValueFloatf�?�?�?=	KeyAttrFlagsi!w	KeyAttrDataFloatf

�	KeyAttrRefCounti)	AnimationCurveL(�M;SAnimCurveS		DefaultD	KeyVerI�X	%KeyTimel�Ig�R��&��@�
��	
KeyValueFloatf�?�?�?�	KeyAttrFlagsi!�	KeyAttrDataFloatf

	KeyAttrRefCounti�	AnimationCurveLX�M;SAnimCurveS		DefaultD�	KeyVerI��	%KeyTimel�Ig�R��&��@�
�	
KeyValueFloatf�?�?�?-	KeyAttrFlagsi!g	KeyAttrDataFloatf

�	KeyAttrRefCountiE	AnimationCurveL��M;SAnimCurveS�		DefaultD	KeyVerI�	�KeyTimel\��Ig�R0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��	}
KeyValueFloatf\p�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�_Y@�	KeyAttrFlagsi!	KeyAttrDataFloatf

8	KeyAttrRefCounti\}!	AnimationCurveL8�M;SAnimCurveS�		DefaultD�	KeyVerI��	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&� 	
KeyValueFloatf���������P����������������w��v�����������ߏ��Z���M����}��0���w�������]���n���ӈ��u���8��������������������	�������4�������s���r~������y������j���d���.���2���(�D����������ш��%���[�������N���/���Z�������񅣵'���և������,���5������������J���x���+���\���Ȇ��D�������)���Ȏ��}��`s��������܄���죵׊��G���Ό������Q����x������l���͓���M��󊣵v�����������$����|�������}��F{��<��� ���o�������ԙ�����hd��2���d������:���Є�����񆣵�������$�������Z��E���j���o�������䈣�M~�������������O���~���H���
���X���‡��	!	KeyAttrFlagsi!C!	KeyAttrDataFloatf

p!	KeyAttrRefCounti��'	AnimationCurveLh�M;SAnimCurveS�!		DefaultD�!	KeyVerI��$	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&'	
KeyValueFloatf�jw�4�N�4�]�4���40��47K�49��4j�4�s�4؀�4�}�4T~�4�z�4f��4"��4���4�u�4S��4�Z�4���4�U�4BA�4EZ�4�n�4�n�4:u�4sm�4���4r�4�p�4̀�4r��4#��4�q�4�W�4M��4*�4�]�4�t�4�r�4}q�4�9�4hZ�4�K�4l)�4N|�4���4d��4V��4Vd�4;��4>f�4{i�4Nj�4BY�4���4N��4j�4�"�4�x�4p��41w�46w�4j�4(n�4�m�4E�4O��4�p�46r�4�q�4�t�4�M�4x�4��4p{�4�A�4Nt�4{�4��4�p�4��4�\�4�e�4r=�4GX�4.��4[�4�r�4�W�4�q�4f_�4�h�4vz�4�X�4�i�4�k�4F�4P�4bq�4�0�4��4q�4��4Jx�4�q�4�v�4�L�4|��4R~�4���4֐�4�[�4
��4�;�47i�4|��4o�4��4��4"U�41��4m^�4%�4��4�O�4ls�4���4/��4}�4A'	KeyAttrFlagsi!{'	KeyAttrDataFloatf

�'	KeyAttrRefCounti��-	AnimationCurveL��M;SAnimCurveS(		DefaultD�B�#(	KeyVerI� +	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&O-	
KeyValueFloatf��
�x����C�&�&�6n.�]J5��6;���?�"�B���C��B���<�R5�,�ge"��:�*y����
�<-�|���/��>���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C�h�C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C�9bB��>�ї7�D�/��4'�������-�'���
�8���:�e���4'���1��;���A���C�*�?�P5�d4'��:�nm��
�u�C1�$�����D#�F#+�ҹ2���9�1�>�:�B���C���C�ϦB��A���>�S^<�:]9�F6�PV2�6n.��V*�e&���!�b��sO�S/��;��
��
�y-	KeyAttrFlagsi!�-	KeyAttrDataFloatf

�-	KeyAttrRefCounti�%4	AnimationCurveL��M;SAnimCurveSC.		DefaultD��4ƿ[.	KeyVerI�X1	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�3	
KeyValueFloatf�l�1�6;C��W�{l�����0����������Q$���X���ڨ�g"��֞�
?��񧇾=�t��i[��F��/7�l�1��lB��Oj�dٌ������ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ�?ڨ�Vڨ�`ڨ��ڨ��ڨ�ڨ��ڨ��ڨ�Vڨ�eڨ�aڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ��ڨ�vڨ��ڨ��ڨ��ڨ��ڨ��ڨ�tڨ��ڨ�xڨ�xڨ�sڨ�Dڨ��ڨ�|ڨ��ڨ��ڨ��ڨ�3���w���
���Xٌ�/���Oj��uT��mB�v,6�E�1��8�>�J�)�d���������r��7r���ڨ�(���!?�����Ej[���=�٧1�j5�^�?��O��b�%w�-u�������Z��V�����ڨ��`��M���Ф�V㡾
N��9%��j}��4k��L��yZ��A��3s��Wg�ߢ[��>P�MWE��;��1��3	KeyAttrFlagsi!�3	KeyAttrDataFloatf

4	KeyAttrRefCounti�]:	AnimationCurveL��M;SAnimCurveS{4		DefaultD@��6��4	KeyVerI��7	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�9	
KeyValueFloatf�z����/��'����e��6��O�����v\���^8�
�/��p��!n���������eS������1���z��������o���Q����
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�

�
�

�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
¡���6���Q���`���o����������L��z���fi��_Q���R���`���n��8�,�
����!n���`��eS���!��z���᰸��F������7����n���R��P����"���=�W�
�������]6–=�g���q���T;��O�����Z����G������r���@���T��nĻ�z����9	KeyAttrFlagsi!#:	KeyAttrDataFloatf

P:	KeyAttrRefCounti��;	AnimationCurveL(<N;SAnimCurveS�:		DefaultD�:	KeyVerI�;	%KeyTimel�Ig�R��&��@�
�7;	
KeyValueFloatf�?�?�?a;	KeyAttrFlagsi!�;	KeyAttrDataFloatf

�;	KeyAttrRefCountiM=	AnimationCurveL8N;SAnimCurveS+<		DefaultDC<	KeyVerI�|<	%KeyTimel�Ig�R��&��@�
��<	
KeyValueFloatf�?�?�?�<	KeyAttrFlagsi!=	KeyAttrDataFloatf

@=	KeyAttrRefCounti�>	AnimationCurveL�N;SAnimCurveS�=		DefaultD�=	KeyVerI��=	%KeyTimel�Ig�R��&��@�
�'>	
KeyValueFloatf�?�?�?Q>	KeyAttrFlagsi!�>	KeyAttrDataFloatf

�>	KeyAttrRefCounti=@	AnimationCurveL�N;SAnimCurveS?		DefaultD3?	KeyVerI�l?	%KeyTimel�Ig�R��&��@�
��?	
KeyValueFloatfg�@g�@g�@�?	KeyAttrFlagsi!@	KeyAttrDataFloatf

0@	KeyAttrRefCountiYF	AnimationCurveL�N;SAnimCurveS�@		DefaultD�@	KeyVerI��C	=KeyTimelf0�Ig�R���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��E	�
KeyValueFloatff�n�H�n�H�n�H�o�H�n�H�n�H�n�H�n�H�n�H�n�H�m�H�m�H�o�H�n�H�n�H�n�H�n�H�n�H�o�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�o�H�n�H�m�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�m�H�n�H�m�H�m�H�n�H�n�H�n�H�m�H�n�H�n�H�m�H�l�H�m�H�k�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H�n�H��E	KeyAttrFlagsi!F	KeyAttrDataFloatf

LF	KeyAttrRefCountif�G	AnimationCurveLN;SAnimCurveS�F		DefaultD�F	KeyVerI�G	%KeyTimel�Ig�R��&��@�
�3G	
KeyValueFloatf�P@�P@�P@]G	KeyAttrFlagsi!�G	KeyAttrDataFloatf

�G	KeyAttrRefCounti	N	AnimationCurveLHN;SAnimCurveS'H		DefaultD`l�"�?H	KeyVerI�<K	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&kM	
KeyValueFloatf�c��n;	�D���!'���;��;&��_)���o�	M��6��.�V�;� 
_��@���*��.P��S���5C�Z�c�����_��
��|����ٷ�����E������[.������{x��h��?Z���M���B��g:��4�?"0��.�~�.���.���.���.���.���.���.���.���.���.���.���.���.���.���.��.���.���.���.�|�.���.���.���.���.���.���.���.���.��L2��"<��<K�E�^�0u��Ɇ����b��६��ٷ����,����*��|
��4���	�c��������c����
�A`��/�������_��o�S�\�.��.��8t�ֿ� �K5��cU�#b���]��;R�)�@�7N+�R�@���������fn���?��.��*3�"�?���S���n����=����N������:�����S
����J%�b�2�ŀ?�3�K��wW�#b��M	KeyAttrFlagsi!�M	KeyAttrDataFloatf

�M	KeyAttrRefCounti�AT	AnimationCurveLxN;SAnimCurveS_N		DefaultD���@wN	KeyVerI�tQ	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�S	
KeyValueFloatf�n>�@�9�@1��@iAs�Aڭ,A��;A=YHA�uRA�YA�t[AX�WA��LAIt=A�*A�*A>�A���@SG�@n>�@�-�@�w�@�#	A�\A��)A�I0A�I6Am�;AAA/�EA�@JA�'NA��QA}�TAV�VA��XANQZAG+[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A�t[A��ZA8KXA6�TA��OA~uJA<ODA��=A�7A�W0A��)A��"A�GA��A��A���@��@l��@���@?�@n>�@@��@���@�AS�'A�4?A��QA�z\A�t[A]qDACMA.�@I�(@3l�=-i��
�E�>9�?�]@��@֓�@��A<a0AU�FA��UA�t[A�	ZA��UA�lOA��FA�<A��/A�"A"
A/'AV�@���@Jq�@a�{@��7@N��?��[?Zc��.i��S	KeyAttrFlagsi!T	KeyAttrDataFloatf

4T	KeyAttrRefCounti�yZ	AnimationCurveL(N;SAnimCurveS�T		DefaultD�̃:��T	KeyVerI��W	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�Y	
KeyValueFloatf�f��0������
���[��-��,x���_�u�L�_6@�4�;��#C��W�.Ot������t���ɰ�����AS��f��H��B���M���r��������Ї����#by�yVo�,f�:�]���U�_AO�ztI���D���@�b>�pO<�4�;�3�;�5�;�5�;�3�;�4�;�3�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�4�;�
\=���A��I��.R��\�Z�h��u��Q��B�������.ޔ������g������������٘��]!������f���$��f����/��̳��q�*�M��9�4�;�[#g�W]��Z7���|�A-�L��_�E-½n
��U�������S��u��x���*�b�F�4�;�4h>�]F�SjR��b���v��$��3��sj�����k�������T���������	��=°h�L�Z	KeyAttrFlagsi!?Z	KeyAttrDataFloatf

lZ	KeyAttrRefCounti��[	AnimationCurveLXN;SAnimCurveS�Z		DefaultD�Z	KeyVerI� [	%KeyTimel�Ig�R��&��@�
�S[	
KeyValueFloatf�?�?�?}[	KeyAttrFlagsi!�[	KeyAttrDataFloatf

�[	KeyAttrRefCountii]	AnimationCurveL�N;SAnimCurveSG\		DefaultD_\	KeyVerI��\	%KeyTimel�Ig�R��&��@�
��\	
KeyValueFloatf�?�?�?�\	KeyAttrFlagsi!/]	KeyAttrDataFloatf

\]	KeyAttrRefCounti�^	AnimationCurveL�N;SAnimCurveS�]		DefaultD�]	KeyVerI�^	%KeyTimel�Ig�R��&��@�
�C^	
KeyValueFloatf�?�?�?m^	KeyAttrFlagsi!�^	KeyAttrDataFloatf

�^	KeyAttrRefCounti	e	AnimationCurveLhN;SAnimCurveS7_		DefaultDO_	KeyVerI��b	EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�kd	�
KeyValueFloatfg�ݳ~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@޳~@޳~@ܳ~@ݳ~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@ݳ~@޳~@޳~@޳~@޳~@޳~@޳~@޳~@޳~@޳~@ݳ~@ݳ~@ݳ~@޳~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@޳~@޳~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@޳~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@ݳ~@�d	KeyAttrFlagsi!�d	KeyAttrDataFloatf

�d	KeyAttrRefCountigAk	AnimationCurveL�N;SAnimCurveS_e		DefaultDwe	KeyVerI�th	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�j	
KeyValueFloatf�S6�;T6�;T6�;S6�;S6�;T6�;[6�;K6�;[6�;\6�;T6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;T6�;S6�;S6�;S6�;[6�;S6�;S6�;K6�;D6�;K6�;D6�;w6�;#6�;�6�;F6�;[6�;K6�;S6�;D6�;6�;�6�;+6�;;6�;k6�;S6�;P6�;{6�;+6�;76�;k6�;k6�;[6�;_6�;W6�;_6�;w6�;W6�;'6�;o6�;�6�;W6�;s6�;[6�;K6�;W6�;W6�;S6�;T6�;\6�;�6�;{6�;�6�;�6�;[6�;l6�;\6�;�6�;g6�;o6�;�6�;�6�;�6�;37�;S6�;T6�;T6�;\6�;T6�;P6�;S6�;S6�;T6�;e6�;[6�;[6�;S6�;S6�;S6�;T6�;T6�;S6�;S6�;S6�;S6�;T6�;K6�;T6�;S6�;[6�;S6�;[6�;[6�;\6�;[6�;T6�;S6�;S6�;T6�;L6�;S6�;[6�;S6�;T6�;U6�;L6�;S6�;K6�;S6�;S6�;T6�;[6�;�j	KeyAttrFlagsi!k	KeyAttrDataFloatf

4k	KeyAttrRefCounti�iq	AnimationCurveL�N;SAnimCurveS�k		DefaultD�k	KeyVerI�o	EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��p	�
KeyValueFloatfg�{��={��={��=u��={��={��=u��={��={��={��={��=u��=}��=s��={��={��={��=u��={��={��=u��={��={��={��=u��=u��=u��=u��=u��=u��=u��=}��=u��={��={��={��=u��=u��={��={��={��={��={��={��={��={��={��={��=u��=u��=u��={��={��={��={��={��={��={��={��={��=u��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��={��=�p	KeyAttrFlagsi!/q	KeyAttrDataFloatf

\q	KeyAttrRefCountig�w	AnimationCurveL�N;SAnimCurveS�q		DefaultD�����q	KeyVerI��t	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&w	
KeyValueFloatf�ԕ��!}��
��/�������:���������/�������e��t#�����c��� 7��ћ�����|Y��$��ӕ���0������<��1���ɷ��k����-���`��?�������n�������d���0���C���R��e]���c���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���e���_���M��,1�����#�������p��04������ɷ���"�����D�����oA����������&������ҕ���������-����1��cp���	�������e���~���k��T����"��c���>�������O��A=��B����'���I��	Z��0������0����e��.���P���J��g���s�������x��Qt��.w��|���~��hz��bl���Q���'�����ğ���>��-w	KeyAttrFlagsi!gw	KeyAttrDataFloatf

�w	KeyAttrRefCounti��}	AnimationCurveLN;SAnimCurveS�w		DefaultD`��x	KeyVerI�{	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&;}	
KeyValueFloatf�sW-��(�#("����\;�����������]�����)���w��Q?����!{����B ���&��_+�sW-��V)�����ݺ�����R��{;��������[�������������CF�������e��`,��)��2��������$��,��#��(��.��������&��(��2��/��'��0��'��5��.��"��%��%��'��-��%�� ���Q��H�������@(������\B��<�����������܅�eB�kT
��=�������'%���)��{,�wW-���*�o%�b����d
�d��7���)�������
�:��$�*��I5�F9���7��r4��	/��+(�AL ����y��O�����0��*��Z����1��@����������7�������[���J���!��7&���*��.��{2��6�F9�e}	KeyAttrFlagsi!�}	KeyAttrDataFloatf

�}	KeyAttrRefCounti��	AnimationCurveLH:N;SAnimCurveS/~		DefaultD�B�C�G~	KeyVerI�D�	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&s�	
KeyValueFloatf�b©���������.��4+��e��e���z���Z�������X���Y�����g����^�e��jw���b�7����'���j�����mq��"�����������;������B��W���#(������(��į��[������������������������������������������������������������������������������������������������������������������������h��#���0��Y�����������?������!g�� ���.�������ۄš�©��p�V#����b��>���P������{������\o���������������D:�$O�SW�9�T���L��A©�3�o�#�6�«�����[��q)������5��1+�����‚��>��&���o��� ��{���[�8���&���/�VL8�Q�@�Y�H�]P�SW�	KeyAttrFlagsi!׃	KeyAttrDataFloatf

�	KeyAttrRefCounti���	AnimationCurveLX6N;SAnimCurveSg�		DefaultD�	KeyVerI���	%KeyTimel�Ig�R��&��@�
��	
KeyValueFloatf�?�?�?�	KeyAttrFlagsi!O�	KeyAttrDataFloatf

|�	KeyAttrRefCounti�	AnimationCurveL�-N;SAnimCurveS߅		DefaultD��	KeyVerI�0�	%KeyTimel�Ig�R��&��@�
�c�	
KeyValueFloatf�?�?�?��	KeyAttrFlagsi!dž	KeyAttrDataFloatf

�	KeyAttrRefCountiy�	AnimationCurveLh,N;SAnimCurveSW�		DefaultDo�	KeyVerI���	%KeyTimel�Ig�R��&��@�
�ۇ	
KeyValueFloatf�?�?�?�	KeyAttrFlagsi!?�	KeyAttrDataFloatf

l�	KeyAttrRefCounti5�	AnimationCurveL,N;SAnimCurveSψ		DefaultD�	KeyVerI���	�KeyTimel^��Ig�R���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���	�
KeyValueFloatf^x��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��2@��	KeyAttrFlagsi!��	KeyAttrDataFloatf

(�	KeyAttrRefCounti^m�	AnimationCurveLLN;SAnimCurveS��		DefaultD��	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&ϓ	
KeyValueFloatf�<�-��=,��b,��,��",��g,��,,��/,��9,�*C,��@,�&F,��>,��=,��.,��!,�'?,�+,�FE,��B,��A,��A,�IK,��L$��<,�Z=,��E,�d5,�D@,��<,�pF$�,64�G$��7,��:$��>,�x<,��>,�NC$��z�0�,�i�,���,�Z:,��>,�2F$�P84��<,�+�$�%B$���$��E$��=,��F$��E$��E$�@64��D$��x��G$��?$�iG$�H,��F$��C$��B,��8,�hG$��@$��<$�W��;��!$�OP$�|F,��K��E$�>L$�FH�9���P$�ƥ��@,�^K,���,��-�B�+�~�,�Z,��k,��O,��$�7,�
?,�5,��/,��6,��r,��n,��:,�	 ,��t,�	,���,��2,�t<,��<,�J,�h5,��8,��C,��H$��A$��>,�?2,�<,�<,��<,�N<,�T?,�W,,�bL,�6k,�v?,�:,��Y,��5,�[,,�cF,�=,���	KeyAttrFlagsi!3�	KeyAttrDataFloatf

`�	KeyAttrRefCounti���	AnimationCurveL�)N;SAnimCurveSÔ		DefaultD۔	KeyVerI�ؗ	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�	
KeyValueFloatf�"������Y�������e���d���閬�Z�����������F�������ޕ��핬�—��E���*���T���Й�������������Ș��1���F���j���t���񕬶������̖��ɖ��.���ʗ��Y���:�����������"����3������$������N���t���𕬶��������g���<���;������㖬�$���������������閬�"5������f���E������ז��v���T���K���Ɠ��������������l������������ז��/���ו��䖬�Ջ��L������敬�V���<�������R���W�����������}�����������ߕ��0���󘬶���� �����������g���P����������f���敬�K����������ꖬ�z���C���Η��l���ܘ��������� ���U���e�������Y���̖��暬�c���S���v���9����������1�	KeyAttrFlagsi!k�	KeyAttrDataFloatf

��	KeyAttrRefCounti�ݠ	AnimationCurveL�)N;SAnimCurveS��		DefaultD�u��	KeyVerI��	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?�	
KeyValueFloatf��x��-������ҧ�׷��[��G������׼��V��<^��B���<��D��xN��HT���P���A��'���x�+���&��{��q���<^��<^��=^��=^��>^��>^��:^��A^��<^��>^��=^��@^��?^��@^��<^��9^��C^��@^��B^��A^��@^��>^��A^��?^��@^��>^��@^��>^��>^��<^��;^��>^��?^��=^��6^��=^��>^��?^��@^��>^��=^��?^��@^��?^��=^��=^��=^��<^��?^��>^��?^��;^��<^��2��q����u��{��LR��$�����(�����~��x�u3��l���4��OR���f��ǡ���7��<^��.}��D��TR���P�������x�>�}�1�������J���"������
O��2y����������<^��!���̒���C�����]o���(���#������[��n׾�g��3,��zD��{�����YŠ����x�i�	KeyAttrFlagsi!��	KeyAttrDataFloatf

Р	KeyAttrRefCounti��	AnimationCurveL�*N;SAnimCurveS3�		DefaultD���?K�	KeyVerI�H�	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&w�	
KeyValueFloatf�$�f?(�@?EO?���>��k>��d=+�ֽ3�y�ŭ���9پS澕�ξZI����ͽ�s�=�v�>;�?n�:?��Z? �f?�B?�z�>���<����S�S��R��R��R��R�S��R��R�S��R��R��R��R�S�7S澎R澱R澨R��R�S��R��R�S澮R��R澺R��R��R�2S�%S��R�$S��R�JS�S��R��R��R��R�S��R��R��R��R��R��R澥R��R��R��R��R�S�hӾ_�����"���<�f>�z�>��?��B?�	]?�f?U�W?]�0?E"�>nf>�����u�9�Ⱦ�R澐?��!�ͽif>"�?�M?�f?��^?x�H?�p'?�"�>��>��>�H7���P�*:���D־S�0⾡?־�6þOɩ����M&M�������{�d=u>$�>V�>J�>nc?��$?�h<?�wR?��f?��	KeyAttrFlagsi!ۦ	KeyAttrDataFloatf

�	KeyAttrRefCounti�M�	AnimationCurveL�&N;SAnimCurveSk�		DefaultD ��"���	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��	
KeyValueFloatf�����)���=�IS��i�g8~�j܈�M��B��H���֝�D��B������Uw��"\�/IB�s{,�l����+�(��{Q������P���֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝��֝�L����P��|#������c�i��{Q�z2;�+�(�d�������h1��K�f�i�I�����FQ���֝��ė����f�i�/IB���#�������o&��5�PI���^���t�h6������d������֝��X��|��Z����������詎�\߉��f8~���r�S�f��Z��sN���B��6���+�Ab!����٬	KeyAttrFlagsi!�	KeyAttrDataFloatf

@�	KeyAttrRefCounti�Ů	AnimationCurveL�MN;SAnimCurveS��		DefaultD��	KeyVerI���	%KeyTimel�Ig�R��&��@�
�'�	
KeyValueFloatf�?�?�?Q�	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCounti=�	AnimationCurveLH%N;SAnimCurveS�		DefaultD3�	KeyVerI�l�	%KeyTimel�Ig�R��&��@�
���	
KeyValueFloatf�?�?�?ɯ	KeyAttrFlagsi!�	KeyAttrDataFloatf

0�	KeyAttrRefCounti��	AnimationCurveL�*N;SAnimCurveS��		DefaultD��	KeyVerI��	%KeyTimel�Ig�R��&��@�
��	
KeyValueFloatf�?�?�?A�	KeyAttrFlagsi!{�	KeyAttrDataFloatf

��	KeyAttrRefCountiݷ	AnimationCurveL�%N;SAnimCurveS�		DefaultD#�	KeyVerI�|�	EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�?�	�
KeyValueFloatfg��(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?�(�?i�	KeyAttrFlagsi!��	KeyAttrDataFloatf

з	KeyAttrRefCountig��	AnimationCurveL8MN;SAnimCurveS3�		DefaultDK�	KeyVerI��	�KeyTimel4��Ig�Rp_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��	�
KeyValueFloatf4��o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o���o��-�	KeyAttrFlagsi!g�	KeyAttrDataFloatf

��	KeyAttrRefCounti4�	AnimationCurveL�%N;SAnimCurveS��		DefaultD�	KeyVerI�H�	%KeyTimel�Ig�R��&��@�
�{�	
KeyValueFloatfg#@g#@g#@��	KeyAttrFlagsi!߼	KeyAttrDataFloatf

�	KeyAttrRefCountiQ�	AnimationCurveLX'N;SAnimCurveSo�		DefaultD���+@��	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��	
KeyValueFloatf�e�]A�[A>cXA�UAASAW�PA�dNA>�LAAKAeJArJA�JA`'LA�sNA�VQA��TA5�WAI�ZAN�\Ae�]A�+[Av�UA� PAc�KArJArJArJArJArJArJArJAqJArJArJArJAqJArJAqJArJArJAqJArJAqJAqJAqJArJAqJAqJArJArJArJArJArJArJArJArJAqJArJAsJArJArJArJAqJArJArJAqJArJArJArJArJArJArJArJArJArJArJArJA�JAc�KAʰMA� PAV�RAv�UA��XA�+[A��\Ae�]A��]A��]A�^A��]AQ\A;YAixSArJA�e7A��Af�@z�@
M�@n��@���@��@��@~�@M�@C.
A�cA��/A��=A��FArJAc9IAr�FA��BA?v=A)7A��/A�Z'A�rA@
A�HAXUA���@y��@�v�@+ʹ@=�@g��@n��@��	KeyAttrFlagsi!�	KeyAttrDataFloatf

D�	KeyAttrRefCounti���	AnimationCurveL8&N;SAnimCurveS��		DefaultD�
@��	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��	
KeyValueFloatf��0U@�u@67�@{Ԡ@1ʴ@1�@��@G��@���@l��@�gA��@��@��@n��@�@K�@A�z@�g_@�0U@1t@f.�@���@��@�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA�gA���@��@)�@���@d�@f.�@�Ҋ@1t@�]@�0U@�^@��w@�َ@�ץ@��@F��@���@�gA
�A^�
A��A�9A(LA<�AP<AIA��Ah�A�KA�yA�vA��A-�A�A�gA|�AA�A��A�.A�A�AJ�A�4
Aa�AYN
A��A�*AwA �A�A��A<�A�	KeyAttrFlagsi!O�	KeyAttrDataFloatf

|�	KeyAttrRefCounti���	AnimationCurveL�$N;SAnimCurveS��		DefaultD}f���	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&#�	
KeyValueFloatf��3���`���D��{h���T��ǔ��д���C��]і�u���.��XX��j͛�0��ui��&�������{������3��C����g��f{��Ù��.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���.���Ò�Ù��
��e{�������g��1���C���?����3������RO��5t��"Y�����l�u��lw��.��ؠ��B��}^\�У���������>N������kt���J����b��r=�ޜ�����V��Ɯ��.��*m��ʜ�.���(���� ��q���0$
��r�|�-��7A��U�MSi���}�|���v��⿛�=z������M�	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCounti�9�	AnimationCurveLh)N;SAnimCurveS�		DefaultD/�	KeyVerI�h�	%KeyTimel�Ig�R��&��@�
���	
KeyValueFloatf�?�?�?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

,�	KeyAttrRefCounti��	AnimationCurveLhMN;SAnimCurveS��		DefaultD��	KeyVerI���	%KeyTimel�Ig�R��&��@�
��	
KeyValueFloatf�?�?�?=�	KeyAttrFlagsi!w�	KeyAttrDataFloatf

��	KeyAttrRefCounti)�	AnimationCurveL(*N;SAnimCurveS�		DefaultD�	KeyVerI�X�	%KeyTimel�Ig�R��&��@�
���	
KeyValueFloatf�?�?�?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCountiQ�	AnimationCurveL�$N;SAnimCurveS�		DefaultD��	KeyVerI���	EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���	�
KeyValueFloatfg�S��?S��?S��?T��?S��?S��?S��?S��?S��?S��?S��?T��?T��?R��?R��?R��?S��?S��?S��?S��?T��?R��?S��?R��?S��?S��?T��?T��?S��?T��?S��?U��?T��?S��?S��?S��?S��?T��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?T��?T��?R��?R��?S��?Q��?S��?S��?S��?R��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?S��?��	KeyAttrFlagsi!�	KeyAttrDataFloatf

D�	KeyAttrRefCountigy�	AnimationCurveL�-N;SAnimCurveS��		DefaultD��	KeyVerI��	EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���	�
KeyValueFloatfg��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��l��	KeyAttrFlagsi!?�	KeyAttrDataFloatf

l�	KeyAttrRefCountig��	AnimationCurveL�LN;SAnimCurveS��		DefaultD��	KeyVerI� �	%KeyTimel�Ig�R��&��@�
�S�	
KeyValueFloatfSX@SX@SX@}�	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCounti)�	AnimationCurveLX*N;SAnimCurveSG�		DefaultD����?_�	KeyVerI�\�	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��	
KeyValueFloatf�~��?���?���?�<�?��?��?4��?91�? Z�?�t�?|~�?+m�?�>�?���?��?X�?k�?9��?ϖ�?~��?��?>7�?���?�I�?{~�?z~�?z~�?x~�?x~�?w~�?~�?s~�?�~�?y~�?|~�?v~�?y~�?w~�?~~�?�~�?x~�?{~�?u~�?s~�?r~�?z~�?s~�?u~�?|~�?~~�?{~�?{~�?z~�?{~�?~�?z~�?s~�?~~�?�~�?|~�?~~�?z~�?x~�?{~�?{~�?x~�?y~�?z~�?~~�?}~�?~�?�~�?y~�?y~�?w~�?~�?{~�?Xp�?�I�?k�?���?��?A7�?���?��?���?���?9g�?:"�?@��?���?��?�?���?{~�?s��?g�?x��?aF�?�:�?���?S6�?n��?xO�?�m�?:�?���?L��?���?)��?�
�?z~�?h��?�
�?���?��?1��?��?f]�?��?Ȋ�?EB�?9�?J��?��?-g�?"�?`��?kY�?���?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCounti�a�	AnimationCurveL)N;SAnimCurveS�		DefaultD`0� @��	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��	
KeyValueFloatf��AA�AAwA�AoAA�
Au
Aa
A�
A�
AtAA�ApA�A^A�AAA�A�
Aa
Aa
Aa
Aa
Aa
Aa
A`
Ab
Ab
Aa
Ab
Ab
Ab
Ab
Aa
A_
Ad
Ac
Ac
Ab
Aa
Ab
Ab
Aa
Ac
Ab
Ac
Ab
Aa
A`
A`
Aa
Aa
Aa
A_
A`
Ab
Ab
Ab
Aa
Aa
Ab
Ac
Ab
Ab
Ab
Ab
Ab
Ab
Ab
Ab
Aa
Aa
A
A�
AGA�AuAA�AAfA�Aj�A&�A�/A6�A��A�A$Aa
Af6A��	A�
A
�A�fAg�AEA��A$UA�EA��
A��A�M	A>A;�A�uAa
A9(A�uA.�A�A�_A�IAAOA�k	A��
Af�AL
A�gA@�A�A�4A�cA�Af�A��	KeyAttrFlagsi!'�	KeyAttrDataFloatf

T�	KeyAttrRefCounti���	AnimationCurveLX-N;SAnimCurveS��		DefaultD �[�?��	KeyVerI���	�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��	
KeyValueFloatf�Y�z>=�{>Dp|>-S}>�9~>>4�>�L�>���>���>Uр>���>	d�>��>K�~>ð}>n�|>��{>�{>R�z>��{>@}>�@>Ew�>Uр>Uр>Sр>Lр>Qр>Jр>Vр>Kр>Qр>Lр>Lр>_р>Rр>Nр>_р>rр>0р>0р>uр>iр>oр>gр>Lр>Oр>Rр>Oр>Nр>Sр>Qр>Vр>Uр>Rр>Oр>Pр>Oр>Mр>Rр>Pр>Pр>Mр>Lр>Sр>Rр>Tр>jр>eр>]р>`р>Vр>jр>`р>iр>Tр>��>�w�>��>"A>/A~>@}>�T|>��{>�{>Y�z>*�y>�v>�As>gbp>�>o>k�p>��v>Uр>ƙ�>�j�>"B�>t�>��>��>]�>�^�>�;�>���>�r�>j��>�>���>���>��>Rр>ja�>H�>���>�>�L�>�8�>ӻ�>(��>�$�>|٪>fñ>�ɸ>�ҿ>2��>]��>��>�>��>%�	KeyAttrFlagsi!_�	KeyAttrDataFloatf

��	KeyAttrRefCounti��	AnimationCurveL('N;SAnimCurveS��		DefaultD�	KeyVerI�@�	%KeyTimel�Ig�R��&��@�
�s�	
KeyValueFloatf�?�?�?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveLHLN;SAnimCurveSg�		DefaultD�	KeyVerI���	%KeyTimel�Ig�R��&��@�
���	
KeyValueFloatf�?�?�?�	KeyAttrFlagsi!O�	KeyAttrDataFloatf

|�	KeyAttrRefCounti�	AnimationCurveL�*N;SAnimCurveS��		DefaultD��	KeyVerI�0�	%KeyTimel�Ig�R��&��@�
�c�	
KeyValueFloatf�?�?�?��	KeyAttrFlagsi!��	KeyAttrDataFloatf

��	KeyAttrRefCounti)�	AnimationCurveL+N;SAnimCurveSW�		DefaultDo�	KeyVerI���	EKeyTimelg8�Ig�R�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
���	�
KeyValueFloatfg���"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��"@��	KeyAttrFlagsi!��	KeyAttrDataFloatf

�	KeyAttrRefCountig]
AnimationCurveL�+N;SAnimCurveS�		DefaultD��	KeyVerI��
MKeyTimelh@�Ig�RP�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aЏ=7bx�b ���b��Jcp�K�c	d���]dh��d�Ye�qe`���e�(f�g�fX�*�f}�;g����gPzu�g��8Oh�w��hH��i�t�bi��F�i@r
j���uj�o��j8�T-k�l�k����k0j�@l��b�l�g&�l(��Sm�d��mx�pn b4gn����np_�o�~zo�\B�oh�2pZɍp�،�p`WPEq��q�T��qXӚXrR^�r��!sPO�ks�ͨ�s�Ll#tH�/t�I��t�ȶ6u@Gz�u��=�u�DJv8�ĥv�A�w��K]w0?�wؽ�x�<�px(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
��
�
KeyValueFloatfh���C���C���C���C��C���C��C���C���C���C���C���C��C��C���C���C���C���C���C���C���C���C���C���C���C���C���C���C��C���C���C���C�}�C���C���C���C���C���C���C���C���C���C���C���C��C�}�C���C���C���C��C��C���C��C�~�C��C�z�C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C���C��
KeyAttrFlagsi!#
KeyAttrDataFloatf

P
KeyAttrRefCountih�
AnimationCurveLx(N;SAnimCurveS�
	DefaultD�
KeyVerI�
%KeyTimel�Ig�R��&��@�
�7

KeyValueFloatf�T@�T@�T@a
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCounti

AnimationCurveL�MN;SAnimCurveS+
	DefaultD�C@C
KeyVerI�@

�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&o

KeyValueFloatf���@��@ ��@!��@!��@!��@!��@"��@!��@!��@"��@!��@!��@!��@!��@!��@!��@ ��@ ��@��@��@ ��@��@"��@ ��@ ��@ ��@��@��@��@"��@��@#��@ ��@!��@��@ ��@��@"��@#��@ ��@!��@��@��@��@!��@��@��@!��@"��@!��@!��@ ��@!��@"��@!��@��@"��@%��@!��@"��@ ��@��@!��@!��@ ��@ ��@ ��@"��@"��@"��@%��@ ��@ ��@��@"��@ ��@!��@!��@!��@ ��@&��@ ��@��@��@��@ ��@ ��@ ��@!��@!��@ ��@"��@!��@!��@!��@ ��@"��@"��@!��@"��@!��@ ��@!��@"��@!��@!��@!��@"��@"��@"��@"��@"��@"��@#��@!��@!��@!��@!��@!��@"��@"��@"��@"��@"��@ ��@"��@"��@#��@"��@�
KeyAttrFlagsi!�
KeyAttrDataFloatf


KeyAttrRefCounti�E
AnimationCurveL�(N;SAnimCurveSc
	DefaultD�99@{
KeyVerI�x
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�

KeyValueFloatf�\��A[��A\��A\��A\��A\��A\��A\��A[��A[��A[��A[��A[��A[��A\��A\��A\��A\��A]��A\��A\��A]��A[��A\��A[��A[��A\��A\��A\��A\��A[��A\��A\��A\��A\��A\��A]��A]��A\��A[��A^��A]��A^��A]��A\��A]��A]��A\��A]��A]��A]��A\��A\��A[��A[��A\��A\��A\��AZ��A\��A]��A]��A]��A\��A\��A]��A]��A\��A\��A]��A\��A]��A]��A]��A]��A\��A\��A]��A]��A]��A\��A^��A]��A\��A\��A]��A\��A\��A\��A\��A\��A[��A\��A[��A[��A[��A[��A\��A\��A\��A\��A\��A[��A[��A]��A\��A\��A[��A\��A\��A[��A[��A[��A[��A\��A[��A[��A[��A[��A[��A\��A\��A\��A\��A\��A\��A]��A]��A]��A\��A�
KeyAttrFlagsi!
KeyAttrDataFloatf

8
KeyAttrRefCounti�}
AnimationCurveL�+N;SAnimCurveS�
	DefaultD`�s@�
KeyVerI��
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�

KeyValueFloatf��s@�s@��s@B�s@�s@��s@��s@޳s@&�s@��s@-�s@5�s@��s@�s@r�s@ǧs@V�s@��s@�s@�s@��s@��s@E�s@B�s@/�s@.�s@.�s@,�s@,�s@*�s@.�s@(�s@-�s@*�s@*�s@,�s@*�s@)�s@-�s@1�s@$�s@%�s@/�s@-�s@-�s@.�s@(�s@(�s@+�s@*�s@*�s@+�s@*�s@,�s@,�s@+�s@)�s@+�s@-�s@*�s@+�s@*�s@*�s@*�s@*�s@*�s@*�s@+�s@1�s@/�s@/�s@2�s@.�s@2�s@/�s@3�s@/�s@h�s@P�s@/�s@L�s@1�s@�s@�s@��s@֜s@�s@@�s@p�s@�s@�s@G�s@ȳs@��s@+�s@�s@�s@�s@W�s@!�s@
�s@��s@�s@.�s@��s@4�s@�s@��s@�s@��s@��s@-�s@�s@��s@��s@��s@p�s@��s@R�s@��s@��s@��s@��s@��s@o�s@`�s@d�s@}�s@��s@
�s@	
KeyAttrFlagsi!C
KeyAttrDataFloatf

p
KeyAttrRefCounti��
AnimationCurveL�(N;SAnimCurveS�
	DefaultD�
KeyVerI�$
%KeyTimel�Ig�R��&��@�
�W

KeyValueFloatf�?�?�?�
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCountim
AnimationCurveLMN;SAnimCurveSK
	DefaultDc
KeyVerI��
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf�?�?�?�
KeyAttrFlagsi!3
KeyAttrDataFloatf

`
KeyAttrRefCounti�
AnimationCurveL�'N;SAnimCurveS�
	DefaultD�
KeyVerI�
%KeyTimel�Ig�R��&��@�
�G

KeyValueFloatf�?�?�?q
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCounti]
AnimationCurveL($N;SAnimCurveS;
	DefaultDS
KeyVerI��
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatfBp��Bp��Bp���
KeyAttrFlagsi!#
KeyAttrDataFloatf

P
KeyAttrRefCounti� 
AnimationCurveLH(N;SAnimCurveS�
	DefaultD�
KeyVerI� 
%KeyTimel�Ig�R��&��@�
�7 

KeyValueFloatf���������a 
KeyAttrFlagsi!� 
KeyAttrDataFloatf

� 
KeyAttrRefCounti
'
AnimationCurveL(N;SAnimCurveS+!
	DefaultDC!
KeyVerI�@$
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&o&

KeyValueFloatf������*�*�*���������*�*������)�)*���)�)�)��@�������'`(��(��( ) ))��(��)0�0��()��( (�����)�@��)�)@� *@���*����)@)����*� *@*�) �*���*@��)�������)`)����� � ��(�(@)�(*))���`�P*P�0***�)`�@����)���*�����)��&
KeyAttrFlagsi!�&
KeyAttrDataFloatf

'
KeyAttrRefCounti�E-
AnimationCurveL�)N;SAnimCurveSc'
	DefaultD -@{'
KeyVerI�x*
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�,

KeyValueFloatf�i9@�7��!�v6��-¸\�%������Ez���Ç�#��~"h��Q���=��x3��)Š�������\�����@*C�@��K%���U� �¾��H���遤�M��W���SQ��%��¬��d����z�¹�d²�/� �������v�߷������N��I��7]��C���1��E��[l���ٍ��O��;"���*�;���u�IH���
��9¯�d�Mg���v��l����@��O������D���_L��Œ��:��§������J������4��³��з�dM��?��2����fx�ֻP�E90½sµ6��x�y��
��Tg>��F��%.�-���·�S�L��Z��`��!��©�����ږ†����£��šz��v��4�‘��¤�‘*�±ڶ��i��ߦ�©������z��޳�[M��k������¾�������3����*��9/���	�����lo�¥%�¤�^�_�3�UM���,
KeyAttrFlagsi!-
KeyAttrDataFloatf

8-
KeyAttrRefCounti�}3
AnimationCurveL�MN;SAnimCurveS�-
	DefaultD@��(��-
KeyVerI��0
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�2

KeyValueFloatf��E����\D�
6�����
Ў�(~P������}���C�N���;f��n$���P�xp�)x$����C����i�ZHj��Qo����i��P÷���?��G��.�?�k?�A`>{�?@��@�sMA�@`A��LA�:A��5AA�QA��kA�r!Aֈ�@��&?�t+���e�Ä���??qYL@�:O@�{C@�C�h<���L��2Td�����${��C����)c@�A���@H��@��@�M@��@+@@ٙ@m��@��@Đ�@�f�@,�Y@��@a�@��@1b�@���@Rֺ@籛@��m@@.pk?��n��V�A�����/��d����}A��[�����������Η�8���M���A����+[��8h��T��������ǎ��x�������S"����@2�	A9�A%iA�g%AUqAKO
A���@L?�@/��@��@�"�@���@�A�5A<)A�6�@��@��@���@@�n@��J@S��?`��>�HT�C핿��T��C��	3
KeyAttrFlagsi!C3
KeyAttrDataFloatf

p3
KeyAttrRefCounti��9
AnimationCurveLH+N;SAnimCurveS�3
	DefaultD`��?�3
KeyVerI��6
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&9

KeyValueFloatf�Se�?��@��@:�@g]�@��6A�)SA=�bATkcA��6A�LAc.�@���@�'A�{pAd�A0Z�A.�JA�\�@��t@���@�.A��pA�A�AUA�yA�#�7u����<A��@*�@�f�?�_@/��@9�@��x@?	>�8I�,����8��&+�����
���S�&��:���*����P7r���>��@��S@M�w@J[U@G$P?oQ�������S� �f���N��w�4��@CAWWZA#�A�A�A�A���A���A��A�ԒAB��Ag�A�AI�A��jA�AM�@��?�'���q����n��Re�cg�����Tu��Wh�@7
A�ZHA���A��A��rA!GDA�A��A�AY��@�|@ݜ�@��Aa}.Am9A��@��@�G@�ç?�N�?̬@��@0��@&��@��?�*?_:@�c�@Q�AE�BAQ�cA��rA�sA4rA��iAC�TAb<AY�*AևA&��@�i�?A9
KeyAttrFlagsi!{9
KeyAttrDataFloatf

�9
KeyAttrRefCounti�-;
AnimationCurveL�!N;SAnimCurveS:
	DefaultD#:
KeyVerI�\:
%KeyTimel�Ig�R��&��@�
��:

KeyValueFloatf�?�?�?�:
KeyAttrFlagsi!�:
KeyAttrDataFloatf

 ;
KeyAttrRefCounti�<
AnimationCurveL�,N;SAnimCurveS�;
	DefaultD�;
KeyVerI��;
%KeyTimel�Ig�R��&��@�
�<

KeyValueFloatf�?�?�?1<
KeyAttrFlagsi!k<
KeyAttrDataFloatf

�<
KeyAttrRefCounti>
AnimationCurveL�LN;SAnimCurveS�<
	DefaultD=
KeyVerI�L=
%KeyTimel�Ig�R��&��@�
�=

KeyValueFloatf�?�?�?�=
KeyAttrFlagsi!�=
KeyAttrDataFloatf

>
KeyAttrRefCounti�?
AnimationCurveLx+N;SAnimCurveSs>
	DefaultD�>
KeyVerI��>
%KeyTimel�Ig�R��&��@�
��>

KeyValueFloatf������!?
KeyAttrFlagsi![?
KeyAttrDataFloatf

�?
KeyAttrRefCounti
A
AnimationCurveL8)N;SAnimCurveS�?
	DefaultD@
KeyVerI�<@
%KeyTimel�Ig�R��&��@�
�o@

KeyValueFloatf�#��#��#™@
KeyAttrFlagsi!�@
KeyAttrDataFloatf

A
KeyAttrRefCounti�B
AnimationCurveL�,N;SAnimCurveScA
	DefaultD{A
KeyVerI��A
%KeyTimel�Ig�R��&��@�
��A

KeyValueFloatf�-���-���-��B
KeyAttrFlagsi!KB
KeyAttrDataFloatf

xB
KeyAttrRefCounti�H
AnimationCurveL�'N;SAnimCurveS�B
	DefaultD�OB@�B
KeyVerI��E
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&H

KeyValueFloatf��xB�XfBf˞Bݗ�B6�Bt��B���BM`�Bȁ�B��B��:B�h�A�<�A>�A�Bf�=B+�\B�JOB��/B��;B�7�B��B���B�b�Bud�Buw�B�NB9 	B��.B�UkB	�BQ`�BCțB)��B	w�BV*sBnA4B�ܻA�W�@�3@�H]@Tq�@��@A�@��@G?�@
��@!�@8^�@̆@���@Z��@�ȀAY��A�,B&�zBV��Bt��Bs'�B���B�3�B��B19�B��B��B	�BN��B��B��B��B��Bs��B��B�5�B5�B���BMy�Bj��B�]�BLu�B7H�B�BRjBr 7B5/�AEIsA��CAm��A�>HB�]�B{�B�u�Bw��B�P�B�ѰBT��B�3B6!�A��mA�O�A5_B��LB4tB<��B�
�B�w�B���Bt�Bq�Bh��B*�B_��Bi��B���By��B�s�B�g�B^��BzM�B���B���B���B�1�BK9�B��Bґ�B�K�B%�B5�WBV�!BIH
KeyAttrFlagsi!�H
KeyAttrDataFloatf

�H
KeyAttrRefCounti��N
AnimationCurveL8,N;SAnimCurveSI
	DefaultD ��3@+I
KeyVerI�(L
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&WN

KeyValueFloatf�)_�A�PAG��@ӱ�@��@��A�TRA5}DAnf�@1Ȍ�]��9�g��7����*?u�d=vH5�Tοp�N@�9�@��@�g�@�M�@��FA99CAO`A�b@�(�OF_�Ş��AG��
�4�$���ֿ޿��d�&����j�ڭ�����6mo?˷�@7*5A��iA��A�y�A��cA_5xA�TA�xpAϡmA�Aƍ�@^_5A�:+A$��@���@:�@�F�@|B(A��AA�*LA��3A|�@+ܚ@�=y@�r@��@�D�@�xA}�7A:RA�dA�HgA(s`ANRAƖ>A��)AsGA~A�I�@1�@�G�@�&A+�]ANB�A�K�A�g�A?IA�PA���@�{�@���@��A��A`��@�!�>�N��xK@۪�@u}�@��@:A`� A��A��@�̲@���@L��@[�@J�@.��@jW�@k�W@�>@u�T?���ic�}�x�5M��yx�7���j<@���@�Ы@Ӱ�@�@��@�)�@�Ę@Ɲ�@�N
KeyAttrFlagsi!�N
KeyAttrDataFloatf

�N
KeyAttrRefCounti�-U
AnimationCurveL�,N;SAnimCurveSKO
	DefaultD��b@cO
KeyVerI�`R
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�T

KeyValueFloatf�=+@��-@�?t=l��������2��{�������R�ܝ���w�<�?�z�<4�� �;���K��7w�&Ι���S��������l���J������ٝ{�\;2�Q�R��+���f3���w�L8���<���j��0��j�y���E�[���#����kݿ-ſE���G�siy����<2���Zm�>��f?n&�>q/�5숿\5��?�Ŀ��D��p��*�������$v��}�k���,��4���z��’@N�w@�G�@M)R@pI�u������SQ6�MJK���P��
Q�Y}O�KOH��h@��=8��D+�M����]�����}�1��*��~@�Z��׼��	�����j�⼣?v��Q����:�8����|��)�
<�٤���G��Y翪�=ɰ��!S�-�>�E�?��A?�n
���ȿ���x@�>9'@�s�@��@ğ�@}aA��)A�{RA�fpA�kYAA�ӻ@J->@�?�
>.Y�>e�?�"@��2@G��@�T
KeyAttrFlagsi!�T
KeyAttrDataFloatf

 U
KeyAttrRefCounti��V
AnimationCurveLxLN;SAnimCurveS�U
	DefaultD�U
KeyVerI��U
%KeyTimel�Ig�R��&��@�
�V

KeyValueFloatf�?�?�?1V
KeyAttrFlagsi!kV
KeyAttrDataFloatf

�V
KeyAttrRefCountiX
AnimationCurveL�AN;SAnimCurveS�V
	DefaultDW
KeyVerI�LW
%KeyTimel�Ig�R��&��@�
�W

KeyValueFloatf�?�?�?�W
KeyAttrFlagsi!�W
KeyAttrDataFloatf

X
KeyAttrRefCounti�Y
AnimationCurveL�JN;SAnimCurveSsX
	DefaultD�X
KeyVerI��X
%KeyTimel�Ig�R��&��@�
��X

KeyValueFloatf�?�?�?!Y
KeyAttrFlagsi![Y
KeyAttrDataFloatf

�Y
KeyAttrRefCounti
[
AnimationCurveL8;N;SAnimCurveS�Y
	DefaultDZ
KeyVerI�<Z
%KeyTimel�Ig�R��&��@�
�oZ

KeyValueFloatf����������Z
KeyAttrFlagsi!�Z
KeyAttrDataFloatf

[
KeyAttrRefCounti�\
AnimationCurveLheN;SAnimCurveSc[
	DefaultD{[
KeyVerI��[
%KeyTimel�Ig�R��&��@�
��[

KeyValueFloatf*C)�*C)�*C)�\
KeyAttrFlagsi!K\
KeyAttrDataFloatf

x\
KeyAttrRefCounti�]
AnimationCurveL/N;SAnimCurveS�\
	DefaultD�\
KeyVerI�,]
%KeyTimel�Ig�R��&��@�
�_]

KeyValueFloatf��0���0���0��]
KeyAttrFlagsi!�]
KeyAttrDataFloatf

�]
KeyAttrRefCounti5d
AnimationCurveL.N;SAnimCurveSS^
	DefaultD�TF1@k^
KeyVerI�ha
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�c

KeyValueFloatf��2�A7b�Ao��A��hA��9A���@�#)@_
�{��g��C�/��or��:��dHt�D+�*V��w]����Ⱥ����
��*��������7�[ф�Ȣ���n��˔i�yFl��������!��@��=
��~�������{���ռ��ߔA���A�BO��A!_�A$�A�	�AI��A�3�A���A+3�A^�A��A8\�A쀧A9��A�gXA���@�׆�a��
]�����\����c��[r���������b��<����|���O��_��	8��6�ү����������Q��&,������u��z���Q��t���e��w��$�@� �Ai�Ap�A�SA`m�@Ǵ�&����5���p�"��n)��_Fz���M��2��������?�nF@(������P�e��?���m����j!����߅�|�ۿ��Az�:AQ3A�%*A5̥A��
B�%-B:))B�&B��&Bs^B��B�Be�B��
Bm�B���A���A�c
KeyAttrFlagsi!�c
KeyAttrDataFloatf

(d
KeyAttrRefCounti�mj
AnimationCurveL�.N;SAnimCurveS�d
	DefaultD����d
KeyVerI��g
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�i

KeyValueFloatf�������Nɿ92�z�X>��?���>�=��Zu���pf��/�>I��?kE?��ԛB�O�|��8��13>B��=�	j��U[��=�{߼2$5�/�*�Jf�+I�d)�&.h����s���IN����Bk��q1��a��M,�����?��u?%�d>/���|x�~|���t��3#߿��ֿ⍿�����C?`7^?/�(?d�~?�[v?�`�>���=�h�=Eʽ�.�Z�J���Q����D��=�\?0H�?���?nݥ?M�>?����9�gWF�\�9>�`�>��+>�n>��>ȕ�>�u�>vA�>t��>A��>� �>���>�b�>�Ҋ��&�z踿�����.�*u�Ԅ=�=>J V�x�ľ'(��!�&����>�Z�>î
� yv�*@k��1��T�>[�=?��?6ʧ?֊�?��?!(I?A��>}�f>�4��W��"�[���s���������=���ñ����Aj�=%�N[޿���q���������,6��1��i
KeyAttrFlagsi!3j
KeyAttrDataFloatf

`j
KeyAttrRefCounti��p
AnimationCurveL�-N;SAnimCurveS�j
	DefaultD �$@�j
KeyVerI��m
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&p

KeyValueFloatf�?%ApLAҝȀ�@��,�i���a���D���N��]���(9>��@��DA�'A�$��������d�?��F@�gT@�h�@��(@�-���Ԅ���S�)nj�V�/����~2K�$B����D?��?�5�?�����4������+>�.G����K�$�+�1ܸ?�|@3��@�i�@���@{��@�5�@s��?�J?��U��)�;��e���z���+M@�b��r�����(������/R���E���@�[7@�(s@���@��w?'FQ��3��y�����?(!
@9A�?"
@cQO@�F@�A(@$S5@��(@�S@��"@bZ@�t[@�}�@7��@��@�K�?�+�@�@#��@r/�?r̿WV�����xL�֪?��@��CA��^AB#zA�McA�#A&��@0]�@��@{W�@ܦ�@�x@� @��?Z�@��H@���@$�@�k�@@@�@*�TAX�rAЅHA@�Ap�A���@�e�@�A�@��@P�@��@��A@	A1p
KeyAttrFlagsi!kp
KeyAttrDataFloatf

�p
KeyAttrRefCounti�r
AnimationCurveL8/N;SAnimCurveS�p
	DefaultDq
KeyVerI�Lq
%KeyTimel�Ig�R��&��@�
�q

KeyValueFloatf�?�?�?�q
KeyAttrFlagsi!�q
KeyAttrDataFloatf

r
KeyAttrRefCounti�s
AnimationCurveL�.N;SAnimCurveSsr
	DefaultD�r
KeyVerI��r
%KeyTimel�Ig�R��&��@�
��r

KeyValueFloatf�?�?�?!s
KeyAttrFlagsi![s
KeyAttrDataFloatf

�s
KeyAttrRefCounti
u
AnimationCurveLx.N;SAnimCurveS�s
	DefaultDt
KeyVerI�<t
%KeyTimel�Ig�R��&��@�
�ot

KeyValueFloatf�?�?�?�t
KeyAttrFlagsi!�t
KeyAttrDataFloatf

u
KeyAttrRefCounti�v
AnimationCurveLH.N;SAnimCurveScu
	DefaultD{u
KeyVerI��u
%KeyTimel�Ig�R��&��@�
��u

KeyValueFloatf;p�@;p�@;p�@v
KeyAttrFlagsi!Kv
KeyAttrDataFloatf

xv
KeyAttrRefCounti�w
AnimationCurveL�BN;SAnimCurveS�v
	DefaultD�v
KeyVerI�,w
%KeyTimel�Ig�R��&��@�
�_w

KeyValueFloatf����������w
KeyAttrFlagsi!�w
KeyAttrDataFloatf

�w
KeyAttrRefCounti5~
AnimationCurveL�BN;SAnimCurveSSx
	DefaultDkx
KeyVerI�h{
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�}

KeyValueFloatf���**@*��@*��@*�*��)�) *�) �)@����(������'����'��'�����()��������)����`)��@(@)������@(���)������������)�)�)�������))���*��)@����)@�����)�)�)�������@��@�@�����*��)�))�)�� * ����)�*)@�`��)���*���)�)@**�*�}
KeyAttrFlagsi!�}
KeyAttrDataFloatf

(~
KeyAttrRefCounti�m�
AnimationCurveLCN;SAnimCurveS�~
	DefaultD@�O��~
KeyVerI���
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&σ

KeyValueFloatf��x�7m��Hb��lSœHA¿�� ���P��q	AlXVAv�GA�U*A���@R���/����I²�_š����x�>0S…�2�PR*��-2š%�Uf��W���9O��	_@qY�@��o@�=��������#��K�Y�o�l���t��ﰘ�@�ˆ٘�"��‰&�³ۑ� V�„�w���U�x�/�g����۰����������"�����›����A�3_b��ć�{s�©ȩ�6޴�oA������ט��v�����>_������[��;$��J���9���}���S������(��9���=������~��������b���oV�±x��������N��_t�����k��÷�¥x�u%V� [;�Y�-¬&/•G��7y7��Z!��r���M��”��™V�����9���#D��n���Ɨ��~���ױ‰��!N�œ��¨J����=���"
�¨Q��T������3V��`���]���PZ�¢zq�3OG�=n���
KeyAttrFlagsi!3�
KeyAttrDataFloatf

`�
KeyAttrRefCounti���
AnimationCurveLXBN;SAnimCurveSÄ
	DefaultD@v��?ۄ
KeyVerI�؇
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�

KeyValueFloatf��;]?��?�X@#��l����8q���N@ҍ@��@��dA �mAP�A��@o~�@�v�@7	A�PAz�
A`��@�.�@�@�6�@���@���?��@�JVAJ�A��A�B��B��B��Ae�AjܷA�}�Age�AR+B0�B�1	B���A��A���A�˶A�\�A�D�A�G�Aφ�A��A�98A��AT�<Au�A�A�d�A�P~A��TAK��@�
�ФA�l�,���4���I�E�>�����cܿWĿ��ۿ���?TC��s����������c���Z�b�/�Kx$��p%���+�k���pk��c>�O�?ċ@�@�m�@��A�"A�DA�Z�@��1@�K��˄m�Ay?�|�?�R�?���?��i@��@p�AA�A��A��)A�KGA��>A��A���@�@�n�?&��=��
�x�<k�?v#@X�K@
��@s��@�:�@�Ŵ@cO�@�V;@�_�?$-]?>�?�)H@��@���@w��@��AXA�\A1�
KeyAttrFlagsi!k�
KeyAttrDataFloatf

��
KeyAttrRefCounti�ݐ
AnimationCurveLHCN;SAnimCurveS��
	DefaultD����
KeyVerI��
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&?�

KeyValueFloatf�����~H���,�hN�A�4��%����LB�>P��@�"A�IA�gg@H:?�&�Z�?nw�?o?L�*���b���C��=@�ؿI%�����ގ@8�EA�A�ͦA�A��A�Z4A��@��1@�h�T'��;i��������8��O���7;���������[L���������������y�E�/��i��;�=�q=R���@��K�P�k���>�%�������>�����P���m?��߱��I�����S�(���<�o�6�yR��I�zI��g�������ݺ���u��lA��qh �`@��]T���^��O��'�χ�}C���R4��~�?H,�?/�q��/��l1��9�"�5D��\��1��?ȕE@�c&@���?-2�>U�
�����g���8�����u�޿�܍�|'����V�n��n��~V��ᄈ�������˭��t7��AX����X@�N�@,Ή@���?�X���Ez�T�?U��?`�@^F@+B:@�@Ob@i�
KeyAttrFlagsi!��
KeyAttrDataFloatf

А
KeyAttrRefCounti�U�
AnimationCurveLxCN;SAnimCurveS3�
	DefaultDK�
KeyVerI���
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf�?�?�?�
KeyAttrFlagsi!�
KeyAttrDataFloatf

H�
KeyAttrRefCounti͓
AnimationCurveL8DN;SAnimCurveS��
	DefaultDÒ
KeyVerI���
%KeyTimel�Ig�R��&��@�
�/�

KeyValueFloatf�?�?�?Y�
KeyAttrFlagsi!��
KeyAttrDataFloatf

��
KeyAttrRefCountiE�
AnimationCurveLhDN;SAnimCurveS#�
	DefaultD;�
KeyVerI�t�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf�?�?�?є
KeyAttrFlagsi!�
KeyAttrDataFloatf

8�
KeyAttrRefCounti��
AnimationCurveL�CN;SAnimCurveS��
	DefaultD��
KeyVerI��
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf��@��@��@I�
KeyAttrFlagsi!��
KeyAttrDataFloatf

��
KeyAttrRefCounti5�
AnimationCurveL�CN;SAnimCurveS�
	DefaultD+�
KeyVerI�d�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf�#��#��#���
KeyAttrFlagsi!��
KeyAttrDataFloatf

(�
KeyAttrRefCounti��
AnimationCurveL�eN;SAnimCurveS��
	DefaultD��
KeyVerI�ܘ
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf�-���-���-��9�
KeyAttrFlagsi!s�
KeyAttrDataFloatf

��
KeyAttrRefCounti�
AnimationCurveL8eN;SAnimCurveS�
	DefaultD�`?.@�
KeyVerI��
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&G�

KeyValueFloatf��qA��}AMD�AtBΖ=B�=B:�Bh��A�~AA׫�A��Bb�QB]��B�3�B��B���B,��B.��B�IB�W�Ad�/AwҍA�CB�RB�`B�.HB>?B��"A��@9x�@r�Ae�BF=B�SgB#�BȖB�y�B���B��B�νBnG�B�z�B�B#��B}��B��pB�{KBn�BʸA�i-A���@"K�@���@��@��S@�^?D�?�M�@-��A��B��nB�j�Bly�B׏�B���Bx!�B0�B	>�B��B��B���B���B��BpV�B��B��B�N�B���B��B��B8��Bd�BI�B^��BF�CB/�B�?B�[+B��OB��gB"�uB�i�B��BÉ�BR��BOȑB��B1�B㉺B�i�B,�B-��B��B���B\�BAۗB(0�B��B3��B,��B-��Bj�B[��B���BI��B�
�B
Y�Ba��B��C�OC���Bx_�BȦ�B�P�BgN�B�4�B��B)��Bv�{B\�FBq�
KeyAttrFlagsi!��
KeyAttrDataFloatf

؟
KeyAttrRefCounti��
AnimationCurveL�eN;SAnimCurveS;�
	DefaultD�;�?S�
KeyVerI�P�
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&�

KeyValueFloatf����?|P?J�����)�N�����*bH�2�8�����K������V�`>�.���Q��~�����s#��n~��RSo���4��d2���{�̨=���C�e@���K��d��f�B�G��|���Z5���B$�6���`f������k��������^�-�����V�镡��9���I7�.ti��Ӄ��:��-��5�Y�Tz��50��� ��(���������%f���H�>��8>m��=?J�
-���L.�S�P�}dd��Vu��a���0����$R-��i4��")�zQ�z?�b�����'`������.��u�������<�����?�`�@1��@aL�@d@��K�Y����4�kV��v�����TҦ�����WW��S�1�S�yĀ�[����t��f�[����ʇ���Ȥm����Y_���[���������m����n��`���D������Er����a�=C�}xg������§�����j'��ͩ��b&���'[�7Pӿ�F����
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCounti�U�
AnimationCurveL(fN;SAnimCurveSs�
	DefaultDu!�?��
KeyVerI���
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��

KeyValueFloatf���?����	*���d���^��)���j����=�0�!�-A<�������~�+�4��@ݜ:Ap.1A�A��2A��Aa�@#�O?�v������3���>����Hֱ�	�@i��@��@���!w�@_m�!���~��Sճ�eD;�&�n��Gw��a���������j���J���1F������8#��l������}[!?�#�??��?
/@�l�?i?�]6?Q�y?_�?�V@T�@u�A�b(A�!A��AV�
A\�A�A��#Aߨ�@K��@?��@�7�@�̽@5
�@eߖ@�)�@W�@�W@�e�is� �A�+A�!�@^�@��@xP@��}?�9?҅#�E�[��
���]n��ef��C?�W~Ͽ4u��y��������W0�������?S��^����C��@��`��D)?۔@,V`@|��@Q\w@ם�@��m@��8? J�����^�>h�\�d��'?:��h'�࿆o������>F'@�@]��@p��@]2?@�
KeyAttrFlagsi!�
KeyAttrDataFloatf

H�
KeyAttrRefCounti�ͭ
AnimationCurveLXfN;SAnimCurveS��
	DefaultDì
KeyVerI���
%KeyTimel�Ig�R��&��@�
�/�

KeyValueFloatf�?�?�?Y�
KeyAttrFlagsi!��
KeyAttrDataFloatf

��
KeyAttrRefCountiE�
AnimationCurveL�fN;SAnimCurveS#�
	DefaultD;�
KeyVerI�t�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf�?�?�?Ѯ
KeyAttrFlagsi!�
KeyAttrDataFloatf

8�
KeyAttrRefCounti��
AnimationCurveL�fN;SAnimCurveS��
	DefaultD��
KeyVerI��
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf�?�?�?I�
KeyAttrFlagsi!��
KeyAttrDataFloatf

��
KeyAttrRefCounti5�
AnimationCurveL�fN;SAnimCurveS�
	DefaultD+�
KeyVerI�d�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf��?��?��?��
KeyAttrFlagsi!��
KeyAttrDataFloatf

(�
KeyAttrRefCounti��
AnimationCurveLgN;SAnimCurveS��
	DefaultD��
KeyVerI�ܲ
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf*C)�*C)�*C)�9�
KeyAttrFlagsi!s�
KeyAttrDataFloatf

��
KeyAttrRefCounti%�
AnimationCurveLHgN;SAnimCurveS�
	DefaultD�
KeyVerI�T�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf��0���0���0���
KeyAttrFlagsi!�
KeyAttrDataFloatf

�
KeyAttrRefCounti]�
AnimationCurveLxgN;SAnimCurveS{�
	DefaultD`8?$���
KeyVerI���
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��

KeyValueFloatf���!�G5�Eݾ����̉�����$��	���;AT�A�/A��@��?>�����OE���y�wpj��(�8_� p��v�:A*�AAV���k�'��C5������1�A�!B�=.B�D'B1B�i�A��KA���>Q��eK�k�s���|���y��W��v����-���Q�����䄪��������=���M��������LS�@�=A�A��A���A�A�l��CH?�p���+������p���@���%�����iS���be�Y�m�	���d������=���0���RT��׿uDAEjAR��@Ϗ��I����I<��{N��^��sg��zE�`���7��4��B������q������X�XD���i�����҅c������K�����P����ޏ�u�����������������!��a������5���\��@ͅ�A(ڈA�HA5p{A�/�A��A���AB��A�0�ApN�A��}Ad�A��A@{�AE��A��A�
KeyAttrFlagsi!#�
KeyAttrDataFloatf

P�
KeyAttrRefCounti���
AnimationCurveL�gN;SAnimCurveS��
	DefaultD�>п˻
KeyVerI�Ⱦ
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&��

KeyValueFloatf������
����'1���&?�sP?��>u��چO?\�?Z��>��>TH�2S��Y�>�W?��.?}f�>�1'>ȗʽ�V)?�@H?X����(��
>�3�=.��O:�
S,@�=�@��@�s@L�0@�0Y?���=����u��p��
��Q�pU���(�x5�O���n%�&4%�AB���4f�Λ���i¼U��>��?�Y�?(@Ua@QW"?*~��s�=F�>O�?�pQ?2I{?��?���?���?c�?�Ѭ?΋X?%�:?��U?
�J?ThD?��?�0�>�e>���A�>��?��=����:kY>I{�>��h>ԗ�>�Z>��:� ���؅���Ծ;����|���0��\�����S�3�o�V���^������$8��
���(�f���
��<�ʾS�SϚ��)��ޥ��OC>t��>w��>�r��-���߷��%̿4�����P�0[���y�����K྾%�F%��0���3�A���̾!�
KeyAttrFlagsi![�
KeyAttrDataFloatf

��
KeyAttrRefCounti���
AnimationCurveL�gN;SAnimCurveS��
	DefaultD`h�'��
KeyVerI��
�KeyTimel��x�},��SKb�5�.ELӑ�f�����Ʃ�p��+W��	W���Z��\�vc֑��p󲮕vi�V�-��v�u[nK��������d�X,�%<,���8q���yG�	B����6iͅ���9��pC֌�l<Es������V�5����L�*l���b�˅�"��u�%KXv04)�f�;��@����<�+"ڈ���>ghQ؈�u�����,-��P��!o����C�tZ��>vv��`]��������w��M����4o��f�l1��.��G�l�s�њ�W���E���c%�j��Ctoʁ->��bZq'��l�]WB�o��c�g�0f���v�6�(���{����=O륍X�/���ZG��2�h��҅�n^���W�����hge��\)c�_����;g�����#�9��KiFι��?q��.����%X#
uc���K����9V}W�\��$�RlaV'��p$���|�Sc���9,[�pHA�����&��e,>-8VN{��=�F��}jUЬ��!l���Ђ̥R�1����J:�]d=vw}�:˫%�OU�`�t�7�H��y�S=�I�zT�ZsF>�:�;�m��[U�&�U��#��5.�{�V����
[^J�մ"z_�p��惃'kh�Qًّq��hS�ZG�G�W_ÎZ����"��G���!��2�4k�`O�"v?���i}��8Mߵ�����Z���w�x_����4&/�

KeyValueFloatf�Cc<�6�[��H��
�<@J��@�a�@3��@hd�?z��m�������%�K�R4�&�0@���@��@Sm�@8Fs@{�">Q+�_݋�v����RA1:A�hA�A�&Av�&?����Ş�r`�	� ��D����u���wZ��ko-���7���G�	��u)��C�|�1��!�}� �h��D�O��wL���I���I���
��z��
���,3��/�!2 ��g�?B�@��N@Gߍ@ӛ�@"��@%H�@)�
A�-A}�CA��AA�,A(�A�p�@���@[u�@���@�:�@/x�@>G�?%�1����l��X�?�G�@l��@vq�?3�1?��������9��5�����WE���$�oB��3�
��4`�c�Z�4�п����3��g��>	��>��0�8��3����������n�>Fݕ�����H�>y's?�N!@Y�@���@*m�@���@-�A�ZA
A�R�@���@9Z@�j@���?�2@�yA@?�F@0�?@Ks@��?Y�
KeyAttrFlagsi!��
KeyAttrDataFloatf

��
KeyAttrRefCounti�E�
AnimationCurveLhN;SAnimCurveS#�
	DefaultD;�
KeyVerI�t�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf�?�?�?��
KeyAttrFlagsi!�
KeyAttrDataFloatf

8�
KeyAttrRefCounti��
AnimationCurveL8hN;SAnimCurveS��
	DefaultD��
KeyVerI���
%KeyTimel�Ig�R��&��@�
��

KeyValueFloatf�?�?�?I�
KeyAttrFlagsi!��
KeyAttrDataFloatf

��
KeyAttrRefCounti5�
AnimationCurveLhhN;SAnimCurveS�
	DefaultD+�
KeyVerI�d�
%KeyTimel�Ig�R��&��@�
���

KeyValueFloatf�?�?�?��
KeyAttrFlagsi!��
KeyAttrDataFloatf

(�
KeyAttrRefCounti`�
#MotionBuilder_SystemLXF:SKTimeWarpManagerSS�
Properties70��
/PSMoBuTypeNameSKStringSSSBox�
/PSMoBuSubTypeNameSKStringSSS\�
BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager��
.PSMoBuAttrBlindDataSBlobSSI��

BinaryDataRpF�
2PSMoBuRelationBlindDataSBlobSSI9�

BinaryDataRp��
/MotionBuilder_GenericL�E:SFaceTime HD Camera (Display)S��
Properties70	�
1PSMoBuTypeNameSKStringSSSVideoJ�
3PSMoBuSubTypeNameSKStringSSSLive��
UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Video�
LPS
RecordPathScharptrSSS"C:\Users\bOb\Documents/Run_JumpUpHigh_Run-_205_Idle_JumpUpLow_NoHands_Idle-_202_Idle_JumpDownLow_BackFlip_Idle-_93_TO_96_a_U1_M_P_halfSteps2Idle_StrafeFwdFootOverTOIdle__Fb_p135_No_0_1-_89_90B_a_U1_M_P_Walk2Idle_Idle2WalkBackward_Fb_p0_No_0_0-FaceTime HD Camera (Display)-VideoRecording.avi8�
#PSOnlineSboolSSIo�
)PSResolutionFRSenumSSI��
)PSRecordToFileSboolSSI��
(PSRecordAudioSboolSSI�
'PS
CompressorSenumSSIN�
.PSMoBuAttrBlindDataSBlobSSI�A�
�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRpa�
0MotionBuilder_GenericL��E:SFaceTime HD Camera (Built-in)ST�
Properties70��
1PSMoBuTypeNameSKStringSSSVideo��
3PSMoBuSubTypeNameSKStringSSSLive.�
VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video��
MPS
RecordPathScharptrSSS#C:\Users\bOb\Documents/Run_JumpUpHigh_Run-_205_Idle_JumpUpLow_NoHands_Idle-_202_Idle_JumpDownLow_BackFlip_Idle-_93_TO_96_a_U1_M_P_halfSteps2Idle_StrafeFwdFootOverTOIdle__Fb_p135_No_0_1-_89_90B_a_U1_M_P_Walk2Idle_Idle2WalkBackward_Fb_p0_No_0_0-FaceTime HD Camera (Built-in)-VideoRecording.avi��
#PSOnlineSboolSSI��
)PSResolutionFRSenumSSI(�
)PSRecordToFileSboolSSI^�
(PSRecordAudioSboolSSI��
'PS
CompressorSenumSSI��
.PSMoBuAttrBlindDataSBlobSSI���
�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIG�
2PSMoBuRelationBlindDataSBlobSSI:�

BinaryDataRp��
!MotionBuilder_GenericL0�E:SVideo Output 1S��
Properties70��
1PSMoBuTypeNameSKStringSSSVideo?�
5PSMoBuSubTypeNameSKStringSSSOutput��
GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video��
%PSDrawModeSenumSSIU�
.PSMoBuAttrBlindDataSBlobSSI)H�
.
BinaryDataR)p	UseMipMapI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
!MotionBuilder_SystemL��E:SKVideoRendererS��
Properties70��
2PSMoBuTypeNameSKStringSSSObject��
=PSMoBuSubTypeNameSKStringSSSKVideoRenderer�
@PSMoBuObjectFullNameSKStringSSSKVideoRenderer'�
.PSMoBuAttrBlindDataSBlobSSI��
�
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
!MotionBuilder_SystemL��E:SKSerialManagerS��
Properties70[�
:PSMoBuTypeNameSKStringSSSKSerialManager��
/PSMoBuSubTypeNameSKStringSSS��
@PSMoBuObjectFullNameSKStringSSSKSerialManagerC�
.PSMoBuAttrBlindDataSBlobSSI�6�
�
BinaryDataR�p�
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001KPortI�TCPPortIInternalPortI"	IPAddressS0.0.0.0>	IPPortS3001�PortIzTCPPortI�InternalPortI�BaudRateI�%�
UseHardwareFCI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp?�
#MotionBuilder_SystemL��E:SKCharacterHelperS2�
Properties70o�
0PSMoBuTypeNameSKStringSSSTool��
8PSMoBuSubTypeNameSKStringSSS	Character�
BPSMoBuObjectFullNameSKStringSSSKCharacterHelperx�
.PSMoBuAttrBlindDataSBlobSSIk�

BinaryDataRp%�
2PSMoBuRelationBlindDataSBlobSSID�
I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI��
MotionBuilder_SystemL`"F:SKNLEManagerS��
Properties70��
7PSMoBuTypeNameSKStringSSSKNLEManager�
/PSMoBuSubTypeNameSKStringSSSd�
=PSMoBuObjectFullNameSKStringSSSKNLEManager<�
.PSMoBuAttrBlindDataSBlobSSIs/�
x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp(�
MotionBuilder_SystemL@#F:SConstraintsS�
Properties70e�
2PSMoBuTypeNameSKStringSSSFolder��
7PSMoBuSubTypeNameSKStringSSSCategory��
EPSMoBuObjectFullNameSKStringSSSConstraintsFolder��
.PSMoBuAttrBlindDataSBlobSSI5��
:
BinaryDataR5p(
FolderTypeSConstraints�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp]�
 MotionBuilder_SystemL nE:S
KAudioManagerSP�
Properties70��
9PSMoBuTypeNameSKStringSSS
KAudioManager�
/PSMoBuSubTypeNameSKStringSSSS�
?PSMoBuObjectFullNameSKStringSSS
KAudioManager��
.PSMoBuAttrBlindDataSBlobSSI��

BinaryDataRp�
AudioInputHNameSMicrophone (Display Audio)`FormatI xOnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�
AudioInputK.NameS)Microphone (Cirrus Logic CS4206A (AB 29))cFormatI {OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD
AudioInputZ:NameS5Digital Audio (S/PDIF) (Cirrus Logic CS4206A (AB 29))rFormatI �OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayDC�
2PSMoBuRelationBlindDataSBlobSSI6�

BinaryDataRp��
(MotionBuilder_SystemL��E:SKMotionTriggerManagerS��
Properties70�
APSMoBuTypeNameSKStringSSSKMotionTriggerManagerK�
/PSMoBuSubTypeNameSKStringSSS��
GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager/�
.PSMoBuAttrBlindDataSBlobSSI*"�
/
BinaryDataR*p
KEEPACTIVEI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp<MotionBuilder_SystemLmE:S
Story rootS/Properties70Z�
5PSMoBuTypeNameSKStringSSS	TimelineX��
/PSMoBuSubTypeNameSKStringSSS��
FPSMoBuObjectFullNameSKStringSSSStory rootTimeline�
"PSMutedSboolSSIL�
#PSSoloedSboolSSI��
.PSRecordClipPathScharptrSSS��
 PSTracksSobjectSS��
#PS	TimelinesSobjectSS'�
2PSQuaternionInterpolateSboolSSI�
JPSRotationOffsetSColorRGBSColorSDDD��
IPS
RotationPivotSColorRGBSColorSDDD-�
IPS
ScalingOffsetSColorRGBSColorSDDD��
HPSScalingPivotSColorRGBSColorSDDD��
.PSTranslationActiveSboolSSI�
JPSTranslationMinSColorRGBSColorSDDDo�
JPSTranslationMaxSColorRGBSColorSDDD��
,PSTranslationMinXSboolSSI��
,PSTranslationMinYSboolSSI�
,PSTranslationMinZSboolSSIW�
,PSTranslationMaxXSboolSSI��
,PSTranslationMaxYSboolSSI��
,PSTranslationMaxZSboolSSI�
*PS
RotationOrderSenumSSIG�
6PSRotationSpaceForLimitOnlySboolSSI��
;PSRotationStiffnessXSdoubleSNumberSD��
;PSRotationStiffnessYSdoubleSNumberSD"�
;PSRotationStiffnessZSdoubleSNumberSD`�
0PSAxisLenSdoubleSNumberSD$@��
GPSPreRotationSColorRGBSColorSDDD�
HPSPostRotationSColorRGBSColorSDDDD�
+PSRotationActiveSboolSSI��
GPSRotationMinSColorRGBSColorSDDD��
GPSRotationMaxSColorRGBSColorSDDD%)PSRotationMinXSboolSSI\)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI)PSRotationMaxYSboolSSI8)PSRotationMaxZSboolSSIn(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSI�FPS
ScalingMinSColorRGBSColorSDDDNFPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI&(PSScalingMaxXSboolSSI\(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSI�PPSGeometricTranslationSColorRGBSColorSDDDKMPSGeometricRotationSColorRGBSColorSDDD�LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD-6PS
MinDampRangeYSdoubleSNumberSDq6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD=6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD9PSMinDampStrengthZSdoubleSNumberSDY9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD,7PSPreferedAngleXSdoubleSNumberSDq7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�!PSShowSboolSSI+	8PSNegativePercentShapeSupportSboolSSI�	KPSLcl TranslationSColorRGBSColorSDDD�	HPSLcl RotationSColorRGBSColorSDDD/
GPSLcl ScalingSColorRGBSColorSD�?D�?D�?p
3PS
VisibilitySdoubleSNumberSD�?�.PSMoBuAttrBlindDataSBlobSSI���
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI"2PSMoBuRelationBlindDataSBlobSSI
BinaryDataRp�!MotionBuilder_SystemL�lE:S	Edit rootS�!Properties70�5PSMoBuTypeNameSKStringSSS	TimelineX
/PSMoBuSubTypeNameSKStringSSSe
EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline�
"PSMutedSboolSSI�
#PSSoloedSboolSSI.PSRecordClipPathScharptrSSS0 PSTracksSobjectSSa#PS	TimelinesSobjectSS�2PSQuaternionInterpolateSboolSSI�JPSRotationOffsetSColorRGBSColorSDDDPIPS
RotationPivotSColorRGBSColorSDDD�IPS
ScalingOffsetSColorRGBSColorSDDD�HPSScalingPivotSColorRGBSColorSDDD9.PSTranslationActiveSboolSSI�JPSTranslationMinSColorRGBSColorSDDD�JPSTranslationMaxSColorRGBSColorSDDD#,PSTranslationMinXSboolSSI],PSTranslationMinYSboolSSI�,PSTranslationMinZSboolSSI�,PSTranslationMaxXSboolSSI,PSTranslationMaxYSboolSSIE,PSTranslationMaxZSboolSSI}*PS
RotationOrderSenumSSI�6PSRotationSpaceForLimitOnlySboolSSI
;PSRotationStiffnessXSdoubleSNumberSDS;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD�0PSAxisLenSdoubleSNumberSD$@/GPSPreRotationSColorRGBSColorSDDD�HPSPostRotationSColorRGBSColorSDDD�+PSRotationActiveSboolSSIGPSRotationMinSColorRGBSColorSDDDhGPSRotationMaxSColorRGBSColorSDDD�)PSRotationMinXSboolSSI�)PSRotationMinYSboolSSI
)PSRotationMinZSboolSSID)PSRotationMaxXSboolSSI{)PSRotationMaxYSboolSSI�)PSRotationMaxZSboolSSI�(PSInheritTypeSenumSSI *PS
ScalingActiveSboolSSItFPS
ScalingMinSColorRGBSColorSDDD�FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�(PSScalingMinXSboolSSI4(PSScalingMinYSboolSSIj(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI�(PSScalingMaxYSboolSSI(PSScalingMaxZSboolSSIjPPSGeometricTranslationSColorRGBSColorSDDD�MPSGeometricRotationSColorRGBSColorSDDDLPSGeometricScalingSColorRGBSColorSD�?D�?D�?c6PS
MinDampRangeXSdoubleSNumberSD�6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD/6PS
MaxDampRangeXSdoubleSNumberSDs6PS
MaxDampRangeYSdoubleSNumberSD�6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSDE9PSMinDampStrengthYSdoubleSNumberSD�9PSMinDampStrengthZSdoubleSNumberSD�9PSMaxDampStrengthXSdoubleSNumberSD9PSMaxDampStrengthYSdoubleSNumberSDa9PSMaxDampStrengthZSdoubleSNumberSD�7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD07PSPreferedAngleZSdoubleSNumberSD_!PSShowSboolSSI�8PSNegativePercentShapeSupportSboolSSI�KPSLcl TranslationSColorRGBSColorSDDDTHPSLcl RotationSColorRGBSColorSDDD�GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�3PS
VisibilitySdoubleSNumberSD�?%!.PSMoBuAttrBlindDataSBlobSSI�!�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�!2PSMoBuRelationBlindDataSBlobSSI�!
BinaryDataRp�$$MotionBuilder_SystemL`eE:SKTimelineXManagerS�$Properties70_"=PSMoBuTypeNameSKStringSSSKTimelineXManager�"/PSMoBuSubTypeNameSKStringSSS�"CPSMoBuObjectFullNameSKStringSSSKTimelineXManager=$.PSMoBuAttrBlindDataSBlobSSI�0$�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5�$2PSMoBuRelationBlindDataSBlobSSI�$
BinaryDataRp'MotionBuilder_SystemLXYE:SPosesS
'Properties70`%2PSMoBuTypeNameSKStringSSSFolder�%7PSMoBuSubTypeNameSKStringSSSCategory�%?PSMoBuObjectFullNameSKStringSSS
PosesFolder�&.PSMoBuAttrBlindDataSBlobSSI/y&4
BinaryDataR/p"

FolderTypeSPoses�&2PSMoBuRelationBlindDataSBlobSSI�&
BinaryDataRp`)MotionBuilder_SystemL�eE:STakesSS)Properties70�'2PSMoBuTypeNameSKStringSSSFolder�'7PSMoBuSubTypeNameSKStringSSSCategory;(?PSMoBuObjectFullNameSKStringSSS
TakesFolder�(.PSMoBuAttrBlindDataSBlobSSI/�(4
BinaryDataR/p"

FolderTypeSTakesF)2PSMoBuRelationBlindDataSBlobSSI9)
BinaryDataRpE-MotionBuilder_SystemL�^E:SGlobal LightS8-Properties70*9PSMoBuTypeNameSKStringSSS
GlobalShadingB*4PSMoBuSubTypeNameSKStringSSSLight�*>PSMoBuObjectFullNameSKStringSSSGlobal Light�*BPS
Ambient ColorSColorSSAD����?D����?D����?*+>PS	Fog ColorSColorSSAD�?D�?D�?e+-PS	Fog BeginSNumberSSAD@33�?�++PSFog EndSNumberSSAD@�@�+/PSFog DensitySNumberSSAD@
,$PSFogModeSenumSSIA,&PS	FogEnableSboolSSI�,.PSMoBuAttrBlindDataSBlobSSI�,
BinaryDataRp+-2PSMoBuRelationBlindDataSBlobSSI-
BinaryDataRp�2MotionBuilder_SystemL0\E:SRendererS�2Properties70�-4PSMoBuTypeNameSKStringSSSRenderer .6PSMoBuSubTypeNameSKStringSSSDefaultr.DPSMoBuObjectFullNameSKStringSSSRendererRenderer�.+PSFrustumCullingSboolSSI�.*PS
DisplayNormalSboolSSI //PSDisplayBoundingBoxSboolSSIi/;PSDisplayHierarchicalBoundingBoxSboolSSI�/,PSIDBufferPickingSboolSSI�/=PSIDBufferPickingAlphaSdoubleSNumberSD�?(0,PSIDBufferDisplaySboolSSId0.PSSelectionOverrideSboolSSI�0FPSSelectionOverrideTransparencySdoubleSNumberSD�?1RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?]17PSCurrentCallbackIndexSintSIntegerSI�����11PSAdvancedMaterialModeSboolSSI2.PSMoBuAttrBlindDataSBlobSSI2
BinaryDataRp�22PSMoBuRelationBlindDataSBlobSSIy2
BinaryDataRpk;&MotionBuilder_SystemL��E:SPython Tool ManagerS^;Properties70B34PSMoBuTypeNameSKStringSSS__FBTool3/PSMoBuSubTypeNameSKStringSSS�3EPSMoBuObjectFullNameSKStringSSSPython Tool Manager4'PSCaptionScharptrSSS94$PSEnabledSboolSSIl4%PSReadOnlySboolSSI�4$PSVisibleSboolSSI�4'PSLeftSintSIntegerSI5&PSTopSintSIntegerSI=5(PSWidthSintSIntegerSIt5)PSHeightSintSIntegerSI�5*PSAnchorsSintSIntegerSI�5(PSSkinContextSenumSSI6$PSHintScharptrSSSK6)PS	HintMouseScharptrSSS�60PS
HintMouseLeftSintSIntegerSI�����6/PSHintMouseTopSintSIntegerSI����71PSHintMouseWidthSintSIntegerSI����E72PSHintMouseHeightSintSIntegerSI�����71PSHintIsTextCompletionSboolSSI�7#PSActiveSboolSSI�7'PS
ActiveControlSobjectSS$8,PSBackgroundBrushSenumSSI`8.PSBorderStyleSintSIntegerSI�8+PSPositionSintSIntegerSI�8-PS
StartWSizeSintSIntegerSI�9-PS
StartHSizeSintSIntegerSI�H9+PSMaxWSizeSintSIntegerSI�����9+PSMaxHSizeSintSIntegerSI�����9+PSMinWSizeSintSIntegerSI��9+PSMinHSizeSintSIntegerSI����-:,PS	StartXPosSintSIntegerSI����g:,PS	StartYPosSintSIntegerSI�����:.PSMoBuAttrBlindDataSBlobSSI�:
BinaryDataRpQ;2PSMoBuRelationBlindDataSBlobSSID;
BinaryDataRp:D(MotionBuilder_SystemL �E:SBatch Tool (scripted)S-DProperties70<4PSMoBuTypeNameSKStringSSS__FBToolL</PSMoBuSubTypeNameSKStringSSS�<GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)�<'PSCaptionScharptrSSS=$PSEnabledSboolSSI;=%PSReadOnlySboolSSIm=$PSVisibleSboolSSI�='PSLeftSintSIntegerSI�=&PSTopSintSIntegerSI>(PSWidthSintSIntegerSIC>)PSHeightSintSIntegerSI{>*PSAnchorsSintSIntegerSI�>(PSSkinContextSenumSSI�>$PSHintScharptrSSS?)PS	HintMouseScharptrSSSX?0PS
HintMouseLeftSintSIntegerSI�����?/PSHintMouseTopSintSIntegerSI�����?1PSHintMouseWidthSintSIntegerSI����@2PSHintMouseHeightSintSIntegerSI����S@1PSHintIsTextCompletionSboolSSI�@#PSActiveSboolSSI�@'PS
ActiveControlSobjectSS�@,PSBackgroundBrushSenumSSI/A.PSBorderStyleSintSIntegerSIhA+PSPositionSintSIntegerSI�A-PS
StartWSizeSintSIntegerSI�A-PS
StartHSizeSintSIntegerSImB+PSMaxWSizeSintSIntegerSI����PB+PSMaxHSizeSintSIntegerSI�����B+PSMinWSizeSintSIntegerSI��B+PSMinHSizeSintSIntegerSI�����B,PS	StartXPosSintSIntegerSI����6C,PS	StartYPosSintSIntegerSI�����C.PSMoBuAttrBlindDataSBlobSSI�C
BinaryDataRp D2PSMoBuRelationBlindDataSBlobSSID
BinaryDataRpM3MotionBuilder_SystemL��E:S Character Selection/Key ControlsSMProperties70�D4PSMoBuTypeNameSKStringSSS__FBTool&E/PSMoBuSubTypeNameSKStringSSS�ERPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls�E'PSCaptionScharptrSSS�E$PSEnabledSboolSSI F%PSReadOnlySboolSSIRF$PSVisibleSboolSSI�F'PSLeftSintSIntegerSI�F&PSTopSintSIntegerSI�F(PSWidthSintSIntegerSI(G)PSHeightSintSIntegerSI`G*PSAnchorsSintSIntegerSI�G(PSSkinContextSenumSSI�G$PSHintScharptrSSS�G)PS	HintMouseScharptrSSS=H0PS
HintMouseLeftSintSIntegerSI����zH/PSHintMouseTopSintSIntegerSI�����H1PSHintMouseWidthSintSIntegerSI�����H2PSHintMouseHeightSintSIntegerSI����8I1PSHintIsTextCompletionSboolSSIiI#PSActiveSboolSSI�I'PS
ActiveControlSobjectSS�I,PSBackgroundBrushSenumSSIJ.PSBorderStyleSintSIntegerSIMJ+PSPositionSintSIntegerSI�J-PS
StartWSizeSintSIntegerSI��J-PS
StartHSizeSintSIntegerSIx�J+PSMaxWSizeSintSIntegerSI����5K+PSMaxHSizeSintSIntegerSI����nK+PSMinWSizeSintSIntegerSI��K+PSMinHSizeSintSIntegerSI�����K,PS	StartXPosSintSIntegerSI����L,PS	StartYPosSintSIntegerSI�����L.PSMoBuAttrBlindDataSBlobSSI�L
BinaryDataRpM2PSMoBuRelationBlindDataSBlobSSI�L
BinaryDataRp�UMotionBuilder_SystemL��E:S
FBX ExportS�UProperties70�M4PSMoBuTypeNameSKStringSSS__FBTool�M/PSMoBuSubTypeNameSKStringSSS?N<PSMoBuObjectFullNameSKStringSSS
FBX ExporttN'PSCaptionScharptrSSS�N$PSEnabledSboolSSI�N%PSReadOnlySboolSSIO$PSVisibleSboolSSI@O'PSLeftSintSIntegerSItO&PSTopSintSIntegerSI�O(PSWidthSintSIntegerSI�O)PSHeightSintSIntegerSIP*PSAnchorsSintSIntegerSIOP(PSSkinContextSenumSSI�P$PSHintScharptrSSS�P)PS	HintMouseScharptrSSS�P0PS
HintMouseLeftSintSIntegerSI����3Q/PSHintMouseTopSintSIntegerSI����rQ1PSHintMouseWidthSintSIntegerSI�����Q2PSHintMouseHeightSintSIntegerSI�����Q1PSHintIsTextCompletionSboolSSI"R#PSActiveSboolSSIWR'PS
ActiveControlSobjectSS�R,PSBackgroundBrushSenumSSI�R.PSBorderStyleSintSIntegerSIS+PSPositionSintSIntegerSIAS-PS
StartWSizeSintSIntegerSI^|S-PS
StartHSizeSintSIntegerSI��S+PSMaxWSizeSintSIntegerSI�����S+PSMaxHSizeSintSIntegerSI����'T+PSMinWSizeSintSIntegerSI�`T+PSMinHSizeSintSIntegerSI�����T,PS	StartXPosSintSIntegerSI�����T,PS	StartYPosSintSIntegerSI����GU.PSMoBuAttrBlindDataSBlobSSI:U
BinaryDataRp�U2PSMoBuRelationBlindDataSBlobSSI�U
BinaryDataRp�} MotionBuilder_SystemL@�E:S
HierarchyViewS�}Properties70{V;PSMoBuTypeNameSKStringSSSKtHierarchyView�V/PSMoBuSubTypeNameSKStringSSSW?PSMoBuObjectFullNameSKStringSSS
HierarchyView:}.PSMoBuAttrBlindDataSBlobSSI�%-}�%
BinaryDataR�%p�%
HierarchyView5ShowGridI�%ObjectsAttributes�NameSReferenceModel�	XDO@�	YD(�@�ExpandedIDNameSHipsModel	XDO@	YD��@7ExpandedI�NameSSpineModel}	XD�u��	YDH�@�ExpandedI2NameSChestModel�	XD@x�	YD�@%ExpandedI�NameSNeckModelj	XDd���	YDؕ@�ExpandedINameSHeadModel�	XD����	YD��@ExpandedI�NameSLeftEyeModelY	XD��p	YD��@�ExpandedINameSRightEyeModel�	XDl���	YDh�@ExpandedI�NameS
JawModelH	XD~��_	YD��@yExpandedINameSTongueBackModel�	XD֧��	YDp�@�ExpandedI}NameSTongueTipModel?	XD@��V	YD0�@pExpandedI�NameSLeftLipLowerModel�	XD����	YDp�@�ExpandedIsNameS
JawENDModel5	XD��L	YD0�@fExpandedI�NameSRightLipLowerModel�	XD~���	YDp�@�ExpandedIrNameSRightLipCornerModel4	XD��K	YD0�@eExpandedI�NameSLeftLipCornerModel�	XDR���	YDp�@�ExpandedIoNameSLeftLipUpperModel1	XD���H	YDh�@bExpandedI�NameSLeftNostrilModel�	XD����	YD��@�ExpandedIg	NameSLeftCheekModel)		XDd��@		YDh�@Z	ExpandedI�	NameSLeftEyelidLowerModel�		XD��		YD��@�	ExpandedIi
NameSLeftEyelidUpperModel+
	XD8��B
	YDh�@\
ExpandedI�
NameSLeftInnerBrowModel�
	XDD���
	YD��@�
ExpandedIhNameSLeftIOuterBrowModel*	XD��A	YDh�@[ExpandedI�NameSRightInnerBrowModel�	XD���	YD��@�ExpandedIiNameSRightIOuterBrowModel+	XD���B	YDh�@\ExpandedI�NameSRightEyelidUpperModel�	XD����	YD��@�ExpandedIm
NameSRightEyelidLowerModel/
	XDh��F
	YDh�@`
ExpandedI�
NameSRightCheekModel�
	XD<���
	YD��@�
ExpandedIgNameSRightNostrilModel)	XD��@	YDh�@ZExpandedI�NameSRightLipUpperModel�	XD���	YD��@�ExpandedIeNameSRightShoulderModel'	XD�m�>	YD�@XExpandedI�NameSRightArmModel�	XD@q��	YD��@�ExpandedI]NameSRightForeArmModel	XD�s�6	YD��@PExpandedI�NameSRightHandModel�	XD�u��	YDp�@�ExpandedIYNameSRightHandPinky1Model	XD���2	YD8�@LExpandedI�NameSRightHandPinky2Model�	XD���	YD�@�ExpandedI[NameSRightHandPinky3Model	XD���4	YDȚ@NExpandedI�NameSRightHandRing1Model�	XD����	YD��@�ExpandedI[NameSRightHandRing2Model	XD���4	YD��@NExpandedI�NameSRightHandRing3Model�	XD؇��	YD��@�ExpandedI]NameSRightHandMiddle1Model	XD@x�6	YD8�@PExpandedI�NameSRightHandMiddle2Model�	XD�z��	YD�@�ExpandedIaNameSRightHandMiddle3Model#	XD�|�:	YDȚ@TExpandedI�NameSRightHandIndex1Model�	XDV��	YD��@�ExpandedIcNameSRightHandIndex2Model%	XD�_�<	YD��@VExpandedI�NameSRightHandIndex3Model�	XD`d��	YD��@�ExpandedIeNameSRightHandThumb1Model'	XD�j@>	YD8�@XExpandedI�NameSRightHandThumb2Model�	XD�e@�	YD�@�ExpandedIgNameSRightHandThumb3Model)	XD a@@	YDȚ@ZExpandedI�NameSLeftShoulderModel�	XD��@�	YD�@�ExpandedI^NameSLeftArmModel 	XD��@7	YD��@QExpandedI�NameSLeftForeArmModel�	XDh�@�	YD��@�ExpandedIUNameSLeftHandModel	XDЗ@.	YDp�@HExpandedI�NameSLeftHandPinky1Model�	XD��@�	YD8�@�ExpandedIUNameSLeftHandPinky2Model	XD��@.	YD�@HExpandedI�NameSLeftHandPinky3Model�	XD`�@�	YDȚ@�ExpandedITNameSLeftHandRing1Model	XD��@-	YD��@GExpandedI�NameSLeftHandRing2Model�	XD��@�	YD��@�ExpandedIRNameSLeftHandRing3Model	XD`�@+	YD��@EExpandedI�NameSLeftHandMiddle1Model�	XD<�@�	YD8�@�ExpandedITNameSLeftHandMiddle2Model	XD��@-	YD�@GExpandedI�NameSLeftHandMiddle3Model�	XD�@�	YDȚ@�ExpandedIUNameSLeftHandIndex1Model	XD�@.	YD��@HExpandedI�NameSLeftHandIndex2Model�	XDT�@�	YD��@�ExpandedIU NameSLeftHandIndex3Model 	XD��@. 	YD��@H ExpandedI� NameSLeftHandThumb1Model� 	XDN�@� 	YD8�@� ExpandedIU!NameSLeftHandThumb2Model!	XD�@.!	YD�@H!ExpandedI�!NameSLeftHandThumb3Model�!	XDp�@�!	YDȚ@�!ExpandedIQ"NameSRightUpLegModel"	XDޥ@*"	YD��@D"ExpandedI�"NameSRightLegModel�"	XD��@�"	YDP�@�"ExpandedIF#NameSRightFootModel#	XDH�@#	YD�@9#ExpandedI�#NameSRightToesModel�#	XD��@�#	YD��@�#ExpandedI<$NameSLeftUpLegModel�#	XDb�@$	YD��@/$ExpandedI�$NameSLeftLegModelw$	XD�@�$	YDP�@�$ExpandedI/%NameSLeftFootModel�$	XD̨@%	YD�@"%ExpandedI�%NameSLeftToesModelk%	XD��@�%	YD��@�%ExpandedI�}2PSMoBuRelationBlindDataSBlobSSI�}
BinaryDataRpކMotionBuilder_SystemL`�E:S	TransportSцProperties70[~,PSMoBuTypeNameSKStringSSS�~/PSMoBuSubTypeNameSKStringSSS�~;PSMoBuObjectFullNameSKStringSSS	Transport'PSCaptionScharptrSSSH$PSEnabledSboolSSI{%PSReadOnlySboolSSI�$PSVisibleSboolSSI�'PSLeftSintSIntegerSI�&PSTopSintSIntegerSIL�(PSWidthSintSIntegerSI��)PSHeightSintSIntegerSI��*PSAnchorsSintSIntegerSI�(PSSkinContextSenumSSI#�$PSHintScharptrSSSZ�)PS	HintMouseScharptrSSS��0PS
HintMouseLeftSintSIntegerSI����Ձ/PSHintMouseTopSintSIntegerSI�����1PSHintMouseWidthSintSIntegerSI����T�2PSHintMouseHeightSintSIntegerSI������1PSHintIsTextCompletionSboolSSIĂ#PSActiveSboolSSI��'PS
ActiveControlSobjectSS3�,PSBackgroundBrushSenumSSIo�.PSBorderStyleSintSIntegerSI��+PSPositionSintSIntegerSIM�.PSMoBuAttrBlindDataSBlobSSI@@�E
BinaryDataR@p3Transport Tool Settings�ZoomBar Settings�Run_JumpUpHigh_Run�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display Settings	AudioDisplayI(
AudioClipNameSHAudioTrackNameSpAudioLeftChannelActiveI�AudioRightChannelActiveI&Settings�
TimeFormatI�SnapOnFramesIReferenceTimeIndexI����Ć2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��MotionBuilder_SystemL0�E:SFCurveS�Properties70k�,PSMoBuTypeNameSKStringSSS��/PSMoBuSubTypeNameSKStringSSS�8PSMoBuObjectFullNameSKStringSSSFCurve#�'PSCaptionScharptrSSSU�$PSEnabledSboolSSI��%PSReadOnlySboolSSI��$PSVisibleSboolSSI�'PSLeftSintSIntegerSI#�&PSTopSintSIntegerSIY�(PSWidthSintSIntegerSI��)PSHeightSintSIntegerSIȉ*PSAnchorsSintSIntegerSI��(PSSkinContextSenumSSI0�$PSHintScharptrSSSg�)PS	HintMouseScharptrSSS��0PS
HintMouseLeftSintSIntegerSI�����/PSHintMouseTopSintSIntegerSI����!�1PSHintMouseWidthSintSIntegerSI����a�2PSHintMouseHeightSintSIntegerSI������1PSHintIsTextCompletionSboolSSIы#PSActiveSboolSSI�'PS
ActiveControlSobjectSS@�,PSBackgroundBrushSenumSSI|�.PSBorderStyleSintSIntegerSI��+PSPositionSintSIntegerSId�.PSMoBuAttrBlindDataSBlobSSIJW�O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveIێ2PSMoBuRelationBlindDataSBlobSSIΎ
BinaryDataRp�MotionBuilder_GenericL�E:S
GlobalInfoS
�Properties70��5PSMoBuTypeNameSKStringSSS	SceneInfoՏ7PSMoBuSubTypeNameSKStringSSSUserData*�GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo��.PSMoBuAttrBlindDataSBlobSSI�y��
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS��2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRpe0Connectionsc�CSOOL(�;:L��CSOOL�i�:L8Gv)��CSOOL�e�:L0Bv)ؒCSOOL�a�:L(=v)��CSOOLH��:LHQv)&�CSOOL@��:L�v)M�CSOOL8��:L3v)t�CSOOL ��:LPVv)��CSOOL(7F:L �;:“CSOOLh�:L�9�CSOOL(��:L�9�CSOOL���:L�97�CSOOL8�:L�9^�CSOOL�[�:L�9��CSOOLж�:L�9��CSOOLp�:L�9ӔCSOOL�߅:L�9��CSOOL(P�:L�9!�CSOOL���:L�9H�CSOOL觅:L�9o�CSOOL��:L�9��CSOOL(k�:L�9��CSOOL�l�:L�9�CSOOL���:L�9�CSOOL�ͅ:L�92�CSOOL�e�:L�9Y�CSOOLf�:L�9��CSOOL0!�:L�9��CSOOL��:L�9ΖCSOOL`Ʌ:L�9��CSOOLH$�:L�9�CSOOL���:L�9C�CSOOL`9�:L�9j�CSOOL�1�:L�9��CSOOL���:L�9��CSOOLxÅ:L�9ߗCSOOL�P�:L�9�CSOOLc�:L�9-�CSOOL��:L�9T�CSOOLx��9L�9{�CSOOL��9L�9��CSOOL ��9L�9ɘCSOOL`��9L�9�CSOOL���9L�9�CSOOL(��9L�9>�CSOOLH�9L�9e�CSOOL(��9L�9��CSOOL���9L�9��CSOOL ��9L�9ڙCSOOL�2�9L�9�CSOOL8��9L�9(�CSOOL�)�9L�9O�CSOOL��9L�9v�CSOOL�9L�9��CSOOL�.�9L�9ĚCSOOL ��9L�9�CSOOL���9L�9�CSOOL`��9L�99�CSOOL���9L�9`�CSOOL���9L�9��CSOOLX��9L�9��CSOOL��9L�9՛CSOOL��9L�9��CSOOLp*�9L�9#�CSOOL@$�9L�9J�CSOOLh��9L�9q�CSOOL(��9L�9��CSOOLH"�9L�9��CSOOLH+�9L�9�CSOOL���9L�9
�CSOOLp��9L�94�CSOOL�1�9L�9[�CSOOL���9L�9��CSOOLH��9L�9��CSOOL��9L�9НCSOOL���9L�9��CSOOL��9L�9�CSOOL@��9L�9E�CSOOLP��9L�9l�CSOOL���9L�9��CSOOL���9L�9��CSOOL���9L�9�CSOOL��9L�9�CSOOL ��9L�9/�CSOOL0��9L�9V�CSOOL@��9L�9}�CSOOLp��9L�9��CSOOL���9L�9˟CSOOL�|�9L�9�CSOOL�x�9L�9�CSOOL�u�9L�9@�CSOOLs�9L�9g�CSOOL0p�9L�9��CSOOL@l�9L�9��CSOOLPh�9L�9ܠCSOOL�e�9L�9�CSOOL�a�9L�9*�CSOOL�]�9L�9Q�CSOOL�Y�9L�9x�CSOOL�V�9L�9��CSOOLT�9L�9ơCSOOL@Q�9L�9�CSOOLpN�9L�9�CSOOL�K�9L�9;�CSOOL�H�9L�9b�CSOOLF�9L�9��CSOOL0C�9L�9��CSOOL`@�9L�9עCSOOL�=�9L�9��CSOOL�:�9L�9%�CSOOL�7�9L�9L�CSOOLȤ�9L�9s�CSOOL #�9L�9��CSOOL��9L�9��CSOOL8�9L�9�CSOOL��9L�9�CSOOL���9L�96�CSOOL0��9L�9]�CSOOL���9L�9��CSOOLp��9L�9��CSOOL��9L�9ҤCSOOL �9L�9��CSOOL���9L�9 �CSOOL�Y�9L�9G�CSOOL�d�9L�9n�CSOOL`��9L�9��CSOOLؠ�9L�9��CSOOLx�9L�9�CSOOL��9L�9
�CSOOL���9L�91�CSOOL��3;L�9X�CSOOL��3;L�9�CSOOL�3;L�9��CSOOL8�3;L�9ͦCSOOL�3;L�9��CSOOL@�3;L�9�CSOOLش3;L�9B�CSOOL��3;L�9i�CSOOL@e3;L�9��CSOOLXh3;L�9��CSOOL�k3;L�9ާCSOOLo3;L�9�CSOOLФ3;L�9,�CSOOL0�3;L�9S�CSOOLȦ3;L�9z�CSOOL0�3;L�9��CSOOL��3;L�9ȨCSOOL�3;L�9�CSOOL��3;L�9�CSOOL��3;L�9=�CSOOLP�3;L�9d�CSOOL��3;L�9��CSOOLp�3;L�9��CSOOL�1:L(�;:٩CSOOL0�;:L(�;:�CSOOL�1:L0�;:'�CSOOL8�;:L0�;:N�CSOOLh�<L0�;:u�CSOOL�:L0�;:��-CSOPLh�:L0�;:SLcl Translation�*CSOPL(��:L0�;:SLcl Rotation�)CSOPL���:L0�;:SLcl ScalingF�CSOOL��1:L8�;:m�CSOOL@�;:L8�;:��-CSOPL8�:L8�;:SLcl Translation�*CSOPL�[�:L8�;:SLcl Rotation�)CSOPLж�:L8�;:SLcl Scaling>�CSOOL��1:L@�;:e�CSOOLH�;:L@�;:��CSOOL@�:L@�;:��CSOOL��:L@�;:ڬCSOOL@�1:LH�;:�CSOOLP�;:LH�;:<�-CSOPLp�:LH�;:SLcl Translationt�*CSOPL�߅:LH�;:SLcl Rotation��)CSOPL(P�:LH�;:SLcl ScalingҭCSOOL�1:LP�;:��CSOOLX�;:LP�;: �CSOOL`�;:LP�;:G�CSOOLh�;:LP�;:n�CSOOL��8:LP�;:��CSOOL��8:LP�;:��CSOOL�9:LP�;:�CSOOL�9:LP�;:
�CSOOL�9:LP�;:1�CSOOL�9:LP�;:X�CSOOL�9:LP�;:�CSOOL�:LP�;:��CSOOL�:LP�;:ͯCSOOL�:LP�;:��CSOOL �:LP�;:�CSOOL(�:LP�;:B�CSOOL0�:LP�;:i�CSOOL8�:LP�;:��-CSOPL���:LP�;:SLcl Translationܰ*CSOPL觅:LP�;:SLcl Rotation�)CSOPL��:LP�;:SLcl Scaling:�CSOOL��1:LX�;:a�CSOOL��1:L`�;:��CSOOL��1:Lh�;:��CSOOLp�;:Lh�;:ֱCSOOLx�;:Lh�;:��CSOOL��8:Lh�;:$�CSOOL��8:Lh�;:K�CSOOL��8:Lh�;:r�CSOOL��8:Lh�;:��CSOOL��8:Lh�;:��CSOOL@�1:Lp�;:�CSOOL�31:Lx�;:�CSOOL�41:L��8:5�CSOOL�.1:L��8:\�CSOOL01:L��8:��CSOOL@B1:L��8:��CSOOL@21:L��8:ѳCSOOL51:L��8:��CSOOL#1:L��8:�CSOOL@?1:L�9:F�CSOOL?1:L�9:m�CSOOL�91:L�9:��CSOOL�71:L�9:��CSOOL@;1:L�9:�CSOOL=1:L�:	�CSOOL�?1:L�:0�CSOOL�"1:L�:W�CSOOL@51:L �:~�CSOOL�#1:L(�:��CSOOL@>1:L0�:̵CSOOL@,1:L8�:�CSOOL�:1:L@�:�CSOOLH�:L@�:U�-CSOPL(k�:L@�:SLcl Translation��*CSOPL�l�:L@�:SLcl RotationĶ)CSOPL���:L@�:SLcl Scaling�CSOOL�1:LH�:�CSOOLP�:LH�:M�-CSOPL�ͅ:LH�:SLcl Translation��*CSOPL�e�:LH�:SLcl Rotation��)CSOPLf�:LH�:SLcl Scaling�CSOOL@�1:LP�:
�CSOOLX�:LP�:E�-CSOPL0!�:LP�:SLcl Translation}�*CSOPL��:LP�:SLcl Rotation��)CSOPL`Ʌ:LP�:SLcl Scaling۸CSOOLD1:LX�:�CSOOL`�:LX�:)�CSOOL(��:LX�:P�CSOOL@lj:LX�:w�CSOOLX։:LX�:��CSOOLp�:LX�:ٹ-CSOPLH$�:LX�:SLcl Translation�*CSOPL���:LX�:SLcl RotationH�)CSOPL`9�:LX�:SLcl Scalingo�CSOOL��1:L`�:��CSOOL��:L`�:Ѻ-CSOPL�1�:L`�:SLcl Translation	�*CSOPL���:L`�:SLcl Rotation@�)CSOPLxÅ:L`�:SLcl Scalingg�CSOOL��1:L��:��CSOOL ��:L��:ɻ-CSOPL�P�:L��:SLcl Translation�*CSOPLc�:L��:SLcl Rotation8�)CSOPL��:L��:SLcl Scaling_�CSOOL@1:L ��:��-CSOPLx��9L ��:SLcl TranslationҼ*CSOPL��9L ��:SLcl Rotation	�)CSOPL ��9L ��:SLcl Scaling0�CSOOL1:L(��:W�CSOOL0��:L(��:��-CSOPL`��9L(��:SLcl Translationʽ*CSOPL���9L(��:SLcl Rotation�)CSOPL(��9L(��:SLcl Scaling(�CSOOL�1:L0��:O�CSOOL8‰:L0��:��-CSOPLH�9L0��:SLcl Translation¾*CSOPL(��9L0��:SLcl Rotation��)CSOPL���9L0��:SLcl Scaling �CSOOL 1:L8‰:[�-CSOPL ��9L8‰:SLcl Translation��*CSOPL�2�9L8‰:SLcl Rotationʿ)CSOPL8��9L8‰:SLcl Scaling�CSOOL�1:L@lj:�CSOOLH̉:L@lj:S�-CSOPL�)�9L@lj:SLcl Translation��*CSOPL��9L@lj:SLcl Rotation��)CSOPL�9L@lj:SLcl Scaling��CSOOL@1:LH̉:�CSOOLPщ:LH̉:K�-CSOPL�.�9LH̉:SLcl Translation��*CSOPL ��9LH̉:SLcl Rotation��)CSOPL���9LH̉:SLcl Scaling��CSOOL�1:LPщ:�-CSOPL`��9LPщ:SLcl TranslationT�*CSOPL���9LPщ:SLcl Rotation��)CSOPL���9LPщ:SLcl Scaling��CSOOL�1:LX։:��CSOOL`ۉ:LX։:�-CSOPLX��9LX։:SLcl TranslationL�*CSOPL��9LX։:SLcl Rotation��)CSOPL��9LX։:SLcl Scaling��CSOOL@1:L`ۉ:��CSOOLh��:L`ۉ:�-CSOPLp*�9L`ۉ:SLcl TranslationD�*CSOPL@$�9L`ۉ:SLcl Rotation{�)CSOPLh��9L`ۉ:SLcl Scaling��CSOOL�1:Lh��:��-CSOPL(��9Lh��:SLcl Translation�*CSOPLH"�9Lh��:SLcl RotationL�)CSOPLH+�9Lh��:SLcl Scalings�CSOOL@1:Lp�:��CSOOL��:Lp�:��-CSOPL���9Lp�:SLcl Translation
�*CSOPLp��9Lp�:SLcl RotationD�)CSOPL�1�9Lp�:SLcl Scalingk�CSOOL@ 1:L��:��CSOOL��:L��:��-CSOPL���9L��:SLcl Translation�*CSOPLH��9L��:SLcl Rotation<�)CSOPL��9L��:SLcl Scalingc�CSOOL�1:L��:��-CSOPL���9L��:SLcl Translation��*CSOPL��9L��:SLcl Rotation
�)CSOPL@��9L��:SLcl Scaling4�CSOOL�1:L��:[�CSOOL���:L��:��-CSOPLP��9L��:SLcl Translation��*CSOPL���9L��:SLcl Rotation�)CSOPL���9L��:SLcl Scaling,�CSOOL@1:L���:S�CSOOL���:L���:��-CSOPL���9L���:SLcl Translation��*CSOPL��9L���:SLcl Rotation��)CSOPL ��9L���:SLcl Scaling$�CSOOL1:L���:K�CSOOL���:L���:��-CSOPL0��9L���:SLcl Translation��*CSOPL@��9L���:SLcl Rotation��)CSOPLp��9L���:SLcl Scaling�CSOOL�1:L���:C�CSOOL���:L���:j�CSOOL��:L���:��CSOOL �<L���:��CSOOL8��<L���:��CSOOLP�<L���:�-CSOPL���9L���:SLcl TranslationR�*CSOPL�|�9L���:SLcl Rotation��)CSOPL�x�9L���:SLcl Scaling��CSOOL1:L���:��CSOOL��:L���:�-CSOPL�u�9L���:SLcl TranslationJ�*CSOPLs�9L���:SLcl Rotation��)CSOPL0p�9L���:SLcl Scaling��CSOOL@1:L��:��CSOOL�	�:L��:
�-CSOPL@l�9L��:SLcl TranslationB�*CSOPLPh�9L��:SLcl Rotationy�)CSOPL�e�9L��:SLcl Scaling��CSOOL@F1:L�	�:��-CSOPL�a�9L�	�:SLcl Translation�*CSOPL�]�9L�	�:SLcl RotationJ�)CSOPL�Y�9L�	�:SLcl Scalingq�CSOOL�1:L��:��CSOOL��:L��:��-CSOPL�V�9L��:SLcl Translation�*CSOPLT�9L��:SLcl RotationB�)CSOPL@Q�9L��:SLcl Scalingi�CSOOL��1:L��:��CSOOL��:L��:��-CSOPLpN�9L��:SLcl Translation�*CSOPL�K�9L��:SLcl Rotation:�)CSOPL�H�9L��:SLcl Scalinga�CSOOL��1:L��:��-CSOPLF�9L��:SLcl Translation��*CSOPL0C�9L��:SLcl Rotation�)CSOPL`@�9L��:SLcl Scaling2�CSOOL@�1:L �<Y�CSOOL(��<L �<��-CSOPL�=�9L �<SLcl Translation��*CSOPL�:�9L �<SLcl Rotation�)CSOPL�7�9L �<SLcl Scaling*�CSOOL�1:L(��<Q�CSOOL0��<L(��<��-CSOPLȤ�9L(��<SLcl Translation��*CSOPL #�9L(��<SLcl Rotation��)CSOPL��9L(��<SLcl Scaling"�CSOOL@�1:L0��<]�-CSOPL8�9L0��<SLcl Translation��*CSOPL��9L0��<SLcl Rotation��)CSOPL���9L0��<SLcl Scaling��CSOOL��1:L8��<�CSOOL@�<L8��<U�-CSOPL0��9L8��<SLcl Translation��*CSOPL���9L8��<SLcl Rotation��)CSOPLp��9L8��<SLcl Scaling��CSOOL��1:L@�<�CSOOLH	�<L@�<M�-CSOPL��9L@�<SLcl Translation��*CSOPL �9L@�<SLcl Rotation��)CSOPL���9L@�<SLcl Scaling��CSOOL�1:LH	�<�-CSOPL�Y�9LH	�<SLcl TranslationV�*CSOPL�d�9LH	�<SLcl Rotation��)CSOPL`��9LH	�<SLcl Scaling��CSOOL@�1:LP�<��CSOOLX�<LP�<�-CSOPLؠ�9LP�<SLcl TranslationN�*CSOPLx�9LP�<SLcl Rotation��)CSOPL��9LP�<SLcl Scaling��CSOOL��1:LX�<��CSOOL`�<LX�<�-CSOPL���9LX�<SLcl TranslationF�*CSOPL��3;LX�<SLcl Rotation}�)CSOPL��3;LX�<SLcl Scaling��CSOOL��1:L`�<��-CSOPL�3;L`�<SLcl Translation�*CSOPL8�3;L`�<SLcl RotationN�)CSOPL�3;L`�<SLcl Scalingu�CSOOL�1:Lh�<��CSOOLp"�<Lh�<��-CSOPL@�3;Lh�<SLcl Translation�*CSOPLش3;Lh�<SLcl RotationF�)CSOPL��3;Lh�<SLcl Scalingm�CSOOL@�1:Lp"�<��CSOOLx'�<Lp"�<��-CSOPL@e3;Lp"�<SLcl Translation�*CSOPLXh3;Lp"�<SLcl Rotation>�)CSOPL�k3;Lp"�<SLcl Scalinge�CSOOL��1:Lx'�<��CSOOL�:Lx'�<��-CSOPLo3;Lx'�<SLcl Translation��*CSOPLФ3;Lx'�<SLcl Rotation6�)CSOPL0�3;Lx'�<SLcl Scaling]�CSOOL��1:L�:��CSOOL�1:L�:��CSOOL�:L�:��-CSOPLȦ3;L�:SLcl Translation�*CSOPL0�3;L�:SLcl RotationU�)CSOPL��3;L�:SLcl Scaling|�CSOOL�1:L�:��CSOOL �:L�:��-CSOPL�3;L�:SLcl Translation�*CSOPL��3;L�:SLcl RotationM�)CSOPL��3;L�:SLcl Scalingt�CSOOL�J1:L �:��CSOOL(�:L �:��-CSOPLP�3;L �:SLcl Translation�*CSOPL��3;L �:SLcl RotationE�)CSOPLp�3;L �:SLcl Scalingl�CSOOLm1:L(�:��CSOOL�9L�;��CSOOLXԯ9L�;��CSOOL�	�9L�;�CSOOL,�9L�;7�!CSOPL�YN;Lh�:Sd|Xf�!CSOPLH�M;Lh�:Sd|Y��!CSOPLx�M;Lh�:Sd|Z��!CSOPL��M;L(��:Sd|X��!CSOPLؤM;L(��:Sd|Y"�!CSOPL��M;L(��:Sd|ZQ�!CSOPLȢM;L���:Sd|X��!CSOPL��M;L���:Sd|Y��!CSOPL(�M;L���:Sd|Z��!CSOPL��M;L8�:Sd|X
�!CSOPLX�M;L8�:Sd|Y<�!CSOPLh�M;L8�:Sd|Zk�!CSOPL��M;L�[�:Sd|X��!CSOPL�M;L�[�:Sd|Y��!CSOPL�M;L�[�:Sd|Z��!CSOPLH�M;Lж�:Sd|X'�!CSOPL��M;Lж�:Sd|YV�!CSOPL(�M;Lж�:Sd|Z��!CSOPL�M;Lp�:Sd|X��!CSOPL�M;Lp�:Sd|Y��!CSOPLX�M;Lp�:Sd|Z�!CSOPL��M;L�߅:Sd|XA�!CSOPL8�M;L�߅:Sd|Yp�!CSOPLh�M;L�߅:Sd|Z��!CSOPL�YN;L(P�:Sd|X��!CSOPL��M;L(P�:Sd|Y��!CSOPLȥM;L(P�:Sd|Z,�!CSOPL8�M;L���:Sd|X[�!CSOPL(ZN;L���:Sd|Y��!CSOPL(�M;L���:Sd|Z��!CSOPLX�M;L觅:Sd|X��!CSOPL��M;L觅:Sd|Y�!CSOPL��M;L觅:Sd|ZF�!CSOPLh�M;L��:Sd|Xu�!CSOPL��M;L��:Sd|Y��!CSOPLȨM;L��:Sd|Z��!CSOPL��M;L(k�:Sd|X�!CSOPL��M;L(k�:Sd|Y1�!CSOPLاM;L(k�:Sd|Z`�!CSOPL�M;L�l�:Sd|X��!CSOPL8�M;L�l�:Sd|Y��!CSOPL��M;L�l�:Sd|Z��!CSOPLYN;L���:Sd|X�!CSOPLؕM;L���:Sd|YK�!CSOPL�M;L���:Sd|Zz�!CSOPL8�M;L�ͅ:Sd|X��!CSOPLh�M;L�ͅ:Sd|Y��!CSOPL�M;L�ͅ:Sd|Z�!CSOPL�M;L�e�:Sd|X6�!CSOPLH�M;L�e�:Sd|Ye�!CSOPLx�M;L�e�:Sd|Z��!CSOPL(�M;Lf�:Sd|X��!CSOPLX�M;Lf�:Sd|Y��!CSOPL�ZN;Lf�:Sd|Z!�!CSOPL��M;L0!�:Sd|XP�!CSOPLȷM;L0!�:Sd|Y�!CSOPL��M;L0!�:Sd|Z��!CSOPL(�M;L��:Sd|X��!CSOPLضM;L��:Sd|Y�!CSOPL�M;L��:Sd|Z;�!CSOPL8�M;L`Ʌ:Sd|Xj�!CSOPLh�M;L`Ʌ:Sd|Y��!CSOPL�M;L`Ʌ:Sd|Z��!CSOPLH�M;LH$�:Sd|X��!CSOPLx�M;LH$�:Sd|Y&�!CSOPL��M;LH$�:Sd|ZU�!CSOPL��M;L���:Sd|X��!CSOPLX`N;L���:Sd|Y��!CSOPL�M;L���:Sd|Z��!CSOPL8�M;L`9�:Sd|X�!CSOPLh�M;L`9�:Sd|Y@�!CSOPL��M;L`9�:Sd|Zo�!CSOPLH�M;L�1�:Sd|X��!CSOPLx�M;L�1�:Sd|Y��!CSOPL��M;L�1�:Sd|Z��!CSOPLعM;L���:Sd|X+�!CSOPL��M;L���:Sd|YZ�!CSOPL��M;L���:Sd|Z��!CSOPL�M;LxÅ:Sd|X��!CSOPL�M;LxÅ:Sd|Y��!CSOPL��M;LxÅ:Sd|Z�!CSOPL\N;L�P�:Sd|XE�!CSOPLx�M;L�P�:Sd|Yt�!CSOPL��M;L�P�:Sd|Z��!CSOPLؼM;Lc�:Sd|X��!CSOPL�M;Lc�:Sd|Y�!CSOPL��M;Lc�:Sd|Z0�!CSOPL�M;L��:Sd|X_�!CSOPL�M;L��:Sd|Y��!CSOPLH�M;L��:Sd|Z��!CSOPL�XN;Lx��9Sd|X��!CSOPL�XN;Lx��9Sd|Y�!CSOPL��M;Lx��9Sd|ZJ�!CSOPL(�M;L��9Sd|Xy�!CSOPLX�M;L��9Sd|Y��!CSOPL��M;L��9Sd|Z��!CSOPL�M;L ��9Sd|X�!CSOPLXcN;L ��9Sd|Y5�!CSOPL� N;L ��9Sd|Zd�!CSOPL� N;L`��9Sd|X��!CSOPL(!N;L`��9Sd|Y��!CSOPLX!N;L`��9Sd|Z��!CSOPL N;L���9Sd|X �!CSOPL8 N;L���9Sd|YO�!CSOPLh N;L���9Sd|Z~�!CSOPL� N;L(��9Sd|X��!CSOPLHN;L(��9Sd|Y��!CSOPLxN;L(��9Sd|Z�!CSOPL�N;LH�9Sd|X:�!CSOPL�N;LH�9Sd|Yi�!CSOPL8N;LH�9Sd|Z��!CSOPLH[N;L(��9Sd|X��!CSOPL��M;L(��9Sd|Y��!CSOPL�M;L(��9Sd|Z%�!CSOPLH�M;L���9Sd|XT�!CSOPLx�M;L���9Sd|Y��!CSOPL(�M;L���9Sd|Z��!CSOPLX�M;L ��9Sd|X��!CSOPL��M;L ��9Sd|Y�!CSOPL��M;L ��9Sd|Z?�!CSOPLh�M;L�2�9Sd|Xn�!CSOPL��M;L�2�9Sd|Y��!CSOPL��M;L�2�9Sd|Z��!CSOPL��M;L8��9Sd|X��!CSOPL�M;L8��9Sd|Y*�!CSOPL�_N;L8��9Sd|ZY�!CSOPLX�M;L�)�9Sd|X��!CSOPL��M;L�)�9Sd|Y��!CSOPL��M;L�)�9Sd|Z��!CSOPL��M;L��9Sd|X�!CSOPL��M;L��9Sd|YD�!CSOPL��M;L��9Sd|Zs�!CSOPL��M;L�9Sd|X��!CSOPL(�M;L�9Sd|Y��!CSOPL��M;L�9Sd|Z�!CSOPL�M;L�.�9Sd|X/�!CSOPL8�M;L�.�9Sd|Y^�!CSOPLh�M;L�.�9Sd|Z��!CSOPL��M;L ��9Sd|X��!CSOPL�\N;L ��9Sd|Y��!CSOPL��M;L ��9Sd|Z�!CSOPL��M;L���9Sd|XI�!CSOPL(�M;L���9Sd|Yx�!CSOPLX�M;L���9Sd|Z��!CSOPL�M;L`��9Sd|X��!CSOPL8�M;L`��9Sd|Y�!CSOPLh�M;L`��9Sd|Z4�!CSOPL��M;L���9Sd|Xc�!CSOPLH�M;L���9Sd|Y��!CSOPLx�M;L���9Sd|Z��!CSOPL��M;L���9Sd|X��!CSOPL��M;L���9Sd|Y�!CSOPL8�M;L���9Sd|ZN�!CSOPL�cN;LX��9Sd|X}�!CSOPL8#N;LX��9Sd|Y��!CSOPLh#N;LX��9Sd|Z��!CSOPL�#N;L��9Sd|X
�!CSOPL�#N;L��9Sd|Y9�!CSOPLx"N;L��9Sd|Zh�!CSOPL�"N;L��9Sd|X��!CSOPL�"N;L��9Sd|Y��!CSOPL#N;L��9Sd|Z��!CSOPL�!N;Lp*�9Sd|X$�!CSOPL�!N;Lp*�9Sd|YS�!CSOPL"N;Lp*�9Sd|Z��!CSOPLH"N;L@$�9Sd|X��!CSOPL�N;L@$�9Sd|Y��!CSOPLH^N;L@$�9Sd|Z!CSOPL��M;Lh��9Sd|X>!CSOPL(�M;Lh��9Sd|Ym!CSOPLX�M;Lh��9Sd|Z�!CSOPL��M;L(��9Sd|X�!CSOPL8�M;L(��9Sd|Y�!CSOPLh�M;L(��9Sd|Z)!CSOPL��M;LH"�9Sd|XX!CSOPL��M;LH"�9Sd|Y�!CSOPLx�M;LH"�9Sd|Z�!CSOPL��M;LH+�9Sd|X�!CSOPL��M;LH+�9Sd|Y!CSOPL�M;LH+�9Sd|ZC!CSOPLh�M;L���9Sd|Xr!CSOPL�]N;L���9Sd|Y�!CSOPL��M;L���9Sd|Z�!CSOPL�M;Lp��9Sd|X�!CSOPL8�M;Lp��9Sd|Y.!CSOPLh�M;Lp��9Sd|Z]!CSOPL�M;L�1�9Sd|X�!CSOPLH�M;L�1�9Sd|Y�!CSOPLx�M;L�1�9Sd|Z�!CSOPL��M;L���9Sd|X!CSOPLX�M;L���9Sd|YH!CSOPL��M;L���9Sd|Zw!CSOPL��M;LH��9Sd|X�!CSOPL��M;LH��9Sd|Y�!CSOPLH�M;LH��9Sd|Z!CSOPL�bN;L��9Sd|X3!CSOPL�N;L��9Sd|Yb!CSOPLN;L��9Sd|Z�!CSOPLHN;L���9Sd|X�!CSOPLxN;L���9Sd|Y�!CSOPL(N;L���9Sd|Z!CSOPLXN;L��9Sd|XM!CSOPL�N;L��9Sd|Y|!CSOPL�N;L��9Sd|Z�!CSOPLhN;L@��9Sd|X�!CSOPL�N;L@��9Sd|Y	!CSOPL�N;L@��9Sd|Z8!CSOPL�N;LP��9Sd|Xg!CSOPLN;LP��9Sd|Y�!CSOPL(cN;LP��9Sd|Z�!CSOPLXN;L���9Sd|X�!CSOPL�N;L���9Sd|Y#!CSOPL�N;L���9Sd|ZR!CSOPL�N;L���9Sd|X�!CSOPL�N;L���9Sd|Y�!CSOPL�N;L���9Sd|Z�!CSOPL�N;L���9Sd|X	!CSOPL(N;L���9Sd|Y=	!CSOPL�N;L���9Sd|Zl	!CSOPLN;L��9Sd|X�	!CSOPL8N;L��9Sd|Y�	!CSOPLhN;L��9Sd|Z�	!CSOPL�N;L ��9Sd|X(
!CSOPL�NN;L ��9Sd|YW
!CSOPL�ON;L ��9Sd|Z�
!CSOPL�ON;L0��9Sd|X�
!CSOPLXWN;L0��9Sd|Y�
!CSOPLPN;L0��9Sd|Z!CSOPLON;L@��9Sd|XB!CSOPLHON;L@��9Sd|Yq!CSOPLxON;L@��9Sd|Z�!CSOPL�FN;Lp��9Sd|X�!CSOPL��M;Lp��9Sd|Y�!CSOPL��M;Lp��9Sd|Z-!CSOPL(�M;L���9Sd|X\!CSOPL8�M;L���9Sd|Y�!CSOPLh�M;L���9Sd|Z�!CSOPL��M;L�|�9Sd|X�!CSOPL��M;L�|�9Sd|Y
!CSOPLx�M;L�|�9Sd|ZG
!CSOPL��M;L�x�9Sd|Xv
!CSOPL��M;L�x�9Sd|Y�
!CSOPL�M;L�x�9Sd|Z�
!CSOPL��M;L�u�9Sd|X!CSOPL��M;L�u�9Sd|Y2!CSOPL�M;L�u�9Sd|Za!CSOPLH�M;Ls�9Sd|X�!CSOPLX�M;Ls�9Sd|Y�!CSOPL�=N;Ls�9Sd|Z�!CSOPLXKN;L0p�9Sd|X!CSOPL��M;L0p�9Sd|YL!CSOPL�M;L0p�9Sd|Z{!CSOPL8�M;L@l�9Sd|X�!CSOPLH�M;L@l�9Sd|Y�!CSOPLx�M;L@l�9Sd|Z!CSOPL��M;LPh�9Sd|X7!CSOPLءM;LPh�9Sd|Yf!CSOPL��M;LPh�9Sd|Z�!CSOPL��M;L�e�9Sd|X�!CSOPL�M;L�e�9Sd|Y�!CSOPL�M;L�e�9Sd|Z"!CSOPLȟM;L�a�9Sd|XQ!CSOPL��M;L�a�9Sd|Y�!CSOPL(�M;L�a�9Sd|Z�!CSOPLX�M;L�]�9Sd|X�!CSOPLh�M;L�]�9Sd|Y
!CSOPL�6N;L�]�9Sd|Z<!CSOPL(9N;L�Y�9Sd|Xk!CSOPLh5N;L�Y�9Sd|Y�!CSOPL(HN;L�Y�9Sd|Z�!CSOPL�M;L�V�9Sd|X�!CSOPLX�M;L�V�9Sd|Y'!CSOPL��M;L�V�9Sd|ZV!CSOPL��M;LT�9Sd|X�!CSOPLȴM;LT�9Sd|Y�!CSOPL��M;LT�9Sd|Z�!CSOPL(�M;L@Q�9Sd|X!CSOPLسM;L@Q�9Sd|YA!CSOPL�M;L@Q�9Sd|Zp!CSOPL8�M;LpN�9Sd|X�!CSOPLh�M;LpN�9Sd|Y�!CSOPL�M;LpN�9Sd|Z�!CSOPLH�M;L�K�9Sd|X,!CSOPLx�M;L�K�9Sd|Y[!CSOPL��M;L�K�9Sd|Z�!CSOPL��M;L�H�9Sd|X�!CSOPL�@N;L�H�9Sd|Y�!CSOPLXHN;L�H�9Sd|Z!CSOPL8�M;LF�9Sd|XF!CSOPL��M;LF�9Sd|Yu!CSOPL��M;LF�9Sd|Z�!CSOPL��M;L0C�9Sd|X�!CSOPL�M;L0C�9Sd|Y!CSOPLH�M;L0C�9Sd|Z1!CSOPLx�M;L`@�9Sd|X`!CSOPL(�M;L`@�9Sd|Y�!CSOPLX�M;L`@�9Sd|Z�!CSOPL��M;L�=�9Sd|X�!CSOPL��M;L�=�9Sd|Y!CSOPLh�M;L�=�9Sd|ZK!CSOPL��M;L�:�9Sd|Xz!CSOPL��M;L�:�9Sd|Y�!CSOPL��M;L�:�9Sd|Z�!CSOPL�M;L�7�9Sd|X!CSOPL88N;L�7�9Sd|Y6!CSOPL�M;L�7�9Sd|Ze!CSOPLx�M;LȤ�9Sd|X�!CSOPL��M;LȤ�9Sd|Y�!CSOPL��M;LȤ�9Sd|Z�!CSOPL��M;L #�9Sd|X!!CSOPL�M;L #�9Sd|YP!CSOPLH�M;L #�9Sd|Z!CSOPL��M;L��9Sd|X�!CSOPL(�M;L��9Sd|Y�!CSOPLX�M;L��9Sd|Z!CSOPL��M;L8�9Sd|X;!CSOPL8�M;L8�9Sd|Yj!CSOPLh�M;L8�9Sd|Z�!CSOPL��M;L��9Sd|X�!CSOPL��M;L��9Sd|Y�!CSOPL��M;L��9Sd|Z&!CSOPL(<N;L���9Sd|XU!CSOPL8N;L���9Sd|Y�!CSOPL�N;L���9Sd|Z�!CSOPL�N;L0��9Sd|X�!CSOPL�N;L0��9Sd|Y!CSOPLN;L0��9Sd|Z@!CSOPLHN;L���9Sd|Xo!CSOPLxN;L���9Sd|Y�!CSOPL(N;L���9Sd|Z�!CSOPLXN;Lp��9Sd|X�!CSOPL�N;Lp��9Sd|Y+!CSOPL�N;Lp��9Sd|ZZ!CSOPLhN;L��9Sd|X�!CSOPL�N;L��9Sd|Y�!CSOPL�N;L��9Sd|Z�!CSOPL�N;L �9Sd|X!CSOPLN;L �9Sd|YE!CSOPLH:N;L �9Sd|Zt!CSOPLX6N;L���9Sd|X�!CSOPL�-N;L���9Sd|Y�!CSOPLh,N;L���9Sd|Z !CSOPL,N;L�Y�9Sd|X0 !CSOPLLN;L�Y�9Sd|Y_ !CSOPL�)N;L�Y�9Sd|Z� !CSOPL�)N;L�d�9Sd|X� !CSOPL�*N;L�d�9Sd|Y� !CSOPL�&N;L�d�9Sd|Z!!CSOPL�MN;L`��9Sd|XJ!!CSOPLH%N;L`��9Sd|Yy!!CSOPL�*N;L`��9Sd|Z�!!CSOPL�%N;Lؠ�9Sd|X�!!CSOPL8MN;Lؠ�9Sd|Y"!CSOPL�%N;Lؠ�9Sd|Z5"!CSOPLX'N;Lx�9Sd|Xd"!CSOPL8&N;Lx�9Sd|Y�"!CSOPL�$N;Lx�9Sd|Z�"!CSOPLh)N;L��9Sd|X�"!CSOPLhMN;L��9Sd|Y #!CSOPL(*N;L��9Sd|ZO#!CSOPL�$N;L���9Sd|X~#!CSOPL�-N;L���9Sd|Y�#!CSOPL�LN;L���9Sd|Z�#!CSOPLX*N;L��3;Sd|X$!CSOPL)N;L��3;Sd|Y:$!CSOPLX-N;L��3;Sd|Zi$!CSOPL('N;L��3;Sd|X�$!CSOPLHLN;L��3;Sd|Y�$!CSOPL�*N;L��3;Sd|Z�$!CSOPL+N;L�3;Sd|X%%!CSOPL�+N;L�3;Sd|YT%!CSOPLx(N;L�3;Sd|Z�%!CSOPL�MN;L8�3;Sd|X�%!CSOPL�(N;L8�3;Sd|Y�%!CSOPL�+N;L8�3;Sd|Z&!CSOPL�(N;L�3;Sd|X?&!CSOPLMN;L�3;Sd|Yn&!CSOPL�'N;L�3;Sd|Z�&!CSOPL($N;L@�3;Sd|X�&!CSOPLH(N;L@�3;Sd|Y�&!CSOPL(N;L@�3;Sd|Z*'!CSOPL�)N;Lش3;Sd|XY'!CSOPL�MN;Lش3;Sd|Y�'!CSOPLH+N;Lش3;Sd|Z�'!CSOPL�!N;L��3;Sd|X�'!CSOPL�,N;L��3;Sd|Y(!CSOPL�LN;L��3;Sd|ZD(!CSOPLx+N;L@e3;Sd|Xs(!CSOPL8)N;L@e3;Sd|Y�(!CSOPL�,N;L@e3;Sd|Z�(!CSOPL�'N;LXh3;Sd|X)!CSOPL8,N;LXh3;Sd|Y/)!CSOPL�,N;LXh3;Sd|Z^)!CSOPLxLN;L�k3;Sd|X�)!CSOPL�AN;L�k3;Sd|Y�)!CSOPL�JN;L�k3;Sd|Z�)!CSOPL8;N;Lo3;Sd|X*!CSOPLheN;Lo3;Sd|YI*!CSOPL/N;Lo3;Sd|Zx*!CSOPL.N;LФ3;Sd|X�*!CSOPL�.N;LФ3;Sd|Y�*!CSOPL�-N;LФ3;Sd|Z+!CSOPL8/N;L0�3;Sd|X4+!CSOPL�.N;L0�3;Sd|Yc+!CSOPLx.N;L0�3;Sd|Z�+!CSOPLH.N;LȦ3;Sd|X�+!CSOPL�BN;LȦ3;Sd|Y�+!CSOPL�BN;LȦ3;Sd|Z,!CSOPLCN;L0�3;Sd|XN,!CSOPLXBN;L0�3;Sd|Y},!CSOPLHCN;L0�3;Sd|Z�,!CSOPLxCN;L��3;Sd|X�,!CSOPL8DN;L��3;Sd|Y
-!CSOPLhDN;L��3;Sd|Z9-!CSOPL�CN;L�3;Sd|Xh-!CSOPL�CN;L�3;Sd|Y�-!CSOPL�eN;L�3;Sd|Z�-!CSOPL8eN;L��3;Sd|X�-!CSOPL�eN;L��3;Sd|Y$.!CSOPL(fN;L��3;Sd|ZS.!CSOPLXfN;L��3;Sd|X�.!CSOPL�fN;L��3;Sd|Y�.!CSOPL�fN;L��3;Sd|Z�.!CSOPL�fN;LP�3;Sd|X/!CSOPLgN;LP�3;Sd|Y>/!CSOPLHgN;LP�3;Sd|Zm/!CSOPLxgN;L��3;Sd|X�/!CSOPL�gN;L��3;Sd|Y�/!CSOPL�gN;L��3;Sd|Z�/!CSOPLhN;Lp�3;Sd|X)0!CSOPL8hN;Lp�3;Sd|YX0!CSOPLhhN;Lp�3;Sd|Zh1Takes�0CurrentSRun_JumpUpHigh_Run[1TakeSRun_JumpUpHigh_Run�0FileNameSRun_JumpUpHigh_Run.tak"1	LocalTimeL�Ig�RL@�
�N1
ReferenceTimeL�Ig�RL@�
�������h�~��&{��Z�j���~���u�)

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/Raw Mocap Data/Animations/Running/Jumping/Run_JumpUpHigh_Run.fbx

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000