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
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteIWSecondI'tMillisecondI^�'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSSsC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1.fbxz�PSSrcDocumentUrlSKStringSUrlSSsC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1.fbx�$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodeskOEPSOriginal|ApplicationNameSKStringSSS
MotionBuilder�?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 20:31:39.08261PSOriginal|FileNameSKStringSSSi%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodeskFPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder\@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 20:31:39.082FileIdR+�!�*�Ÿƽ.�+��<CreationTimeS2012-11-08 15:31:39:094�6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105
GlobalSettings�VersionI��Properties70
	)PSUpAxisSintSIntegerSIE	-PS
UpAxisSignSintSIntegerSI	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI5
0PS
CoordAxisSignSintSIntegerSIt
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?K@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective#%PSTimeModeSenumSSId3PS
TimeSpanStartSKTimeSTimeSL�NY^Q�2PSTimeSpanStopSKTimeSTimeSL�T��q�8PSCustomFrameRateSdoubleSNumberSD�f	Documents1
CountIY!DocumentL�w�S	KFbxSceneSScene.Properties70�
&PSSourceObjectSobjectSS!_PSActiveAnimStackNameSKStringSSS,_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1L	RootNodeL�
References�CDefinitions�VersionId�CountI] 
ObjectTypeSGlobalSettingsCountIt
ObjectTypeSMotionBuilder_SystemgCountI#

ObjectTypeSModel�CountIT
#PropertyTemplateSFbxNode�"Properties70.2PSQuaternionInterpolateSenumSSI�KPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD7JPS
ScalingOffsetSVector3DSVectorSDDD�IPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI#KPSTranslationMinSVector3DSVectorSDDD|KPSTranslationMaxSVector3DSVectorSDDD�,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI*,PSTranslationMinZSboolSSId,PSTranslationMaxXSboolSSI�,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI*PS
RotationOrderSenumSSIT6PSRotationSpaceForLimitOnlySboolSSI�;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD/;PSRotationStiffnessZSdoubleSNumberSDm0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDDIPSPostRotationSVector3DSVectorSDDDS+PSRotationActiveSboolSSI�HPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD6)PSRotationMinXSboolSSIm)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI)PSRotationMaxYSboolSSII)PSRotationMaxZSboolSSI(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSIGPS
ScalingMinSVector3DSVectorSDDDaGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?�(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI(PSScalingMinZSboolSSI9(PSScalingMaxXSboolSSIo(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSIQPSGeometricTranslationSVector3DSVectorSDDD`NPSGeometricRotationSVector3DSVectorSDDD�MPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSDC6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD6PS
MaxDampRangeYSdoubleSNumberSDS6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD(9PSMinDampStrengthZSdoubleSNumberSDo9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSDB7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD (PSLookAtPropertySobjectSS: *PSUpVectorPropertySobjectSSi !PSShowSboolSSI� 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����&!#PSFreezeSboolSSIW!#PSLODBoxSboolSSI�!NPSLcl TranslationSLcl TranslationSSADDD	"HPSLcl RotationSLcl RotationSSADDD]"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?�"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI0>
ObjectTypeS
NodeAttributeW#CountIT#>PropertyTemplateS	FbxCamera>Properties70�#>PSPositionSVectorSSADDDI�3$>PSUpVectorSVectorSSADD�?D�$FPSInterestPositionSVectorSSADDD�$&PSRollSRollSSAD%:PSOpticalCenterXSOpticalCenterXSSADK%:PSOpticalCenterYSOpticalCenterYSSAD�%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD&1PSDisplayTurnTableIconSboolSSIO&*PS
UseMotionBlurSboolSSI�&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?',PSAspectRatioModeSenumSSIR'4PSAspectWidthSdoubleSNumberSDt@�'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?(/PSFilmOffsetXSNumberSSADV(/PSFilmOffsetYSNumberSSAD�(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?)8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?d)9PSFilmSqueezeRatioSdoubleSNumberSD�?�),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?*2PSFilmTranslateXSNumberSSADX*2PSFilmTranslateYSNumberSSAD�*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD+1PS
FilmRollValueSNumberSSADO+*PS
FilmRollOrderSenumSSI�+)PSApertureModeSenumSSI�+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@>,6PSFieldOfViewXSFieldOfViewXSSADD@�,6PSFieldOfViewYSFieldOfViewYSSADD@�,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI.-*PS
UseFrameColorSboolSSI�-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?�-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI#.%PSShowGridSboolSSI_..PSShowOpticalCenterSboolSSI�.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSIT/GPS
AudioColorSVector3DSVectorSDD�?D�/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@01PSAutoComputeClipPanesSboolSSIO0/PSViewCameraToLookAtSboolSSI�04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI15PSBackPlaneDistanceSNumberSSAD@�@W12PSBackPlaneDistanceModeSenumSSI�16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@ 23PSFrontPlaneDistanceModeSenumSSIS2%PSLockModeSboolSSI�23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI3*PS
BackPlateCropSboolSSIB3,PSBackPlateCenterSboolSSI3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?4*PS
ShowBackplateSboolSSIG44PSBackPlaneOffsetXSNumberSSAD�44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD
53PSBackPlaneScaleXSNumberSSAD�?N53PSBackPlaneScaleYSNumberSSAD�?�5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI96-PSFrontPlateCenterSboolSSIw60PSFrontPlateKeepRatioSboolSSI�6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI<75PSFrontPlaneOffsetXSNumberSSAD75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD84PSFrontPlaneScaleXSNumberSSAD�?G84PSFrontPlaneScaleYSNumberSSAD�?�8,PSForeground TextureSobjectSS�8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI<91PSSafeAreaDisplayStyleSenumSSI�9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI:5PS2D Magnifier ZoomSNumberSSADY@F:2PS2D Magnifier XSNumberSSADI@�:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI;2PS	OrthoZoomSdoubleSNumberSD�?C;0PSUseRealTimeDOFAndAASboolSSI};,PSUseDepthOfFieldSboolSSI�;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@8<6PS
FocusDistanceSdoubleSNumberSDi@r<,PSUseAntialiasingSboolSSI�<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI;=2PSUseAccumulationBufferSboolSSI~=5PSFrameSamplingCountSintSIntegerSI�=.PSFrameSamplingTypeSenumSSI	>APSColorSColorRGBSColorSD�������?D�������?D�������?�>
ObjectTypeSMotionBuilder_Genericx>CountIBA
ObjectTypeSAnimationLayer�>CountI5APropertyTemplateSFbxAnimLayer(AProperties70E?*PSWeightSNumberSSADY@t?!PSMuteSboolSSI�?!PSSoloSboolSSI�?!PSLockSboolSSI!@APSColorSColorRGBSColorSD�������?D�������?D�������?U@&PS	BlendModeSenumSSI�@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSIA5PSBlendModeBypassS	ULongLongSSL(C
ObjectTypeSAnimationStack�ACountICPropertyTemplateSFbxAnimStackCProperties70B+PSDescriptionSKStringSSSAB0PS
LocalStartSKTimeSTimeSL~B/PS	LocalStopSKTimeSTimeSL�B4PSReferenceStartSKTimeSTimeSLC3PS
ReferenceStopSKTimeSTimeSLzC
ObjectTypeSAnimationCurveNodemCCountI0�C
ObjectTypeSAnimationCurve�CCountId3yObjects�H<
NodeAttributeLXۨ:S#Producer PerspectiveNodeAttributeSCamera\GProperties70�D>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@DJEDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�E1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSIF4PSFieldOfViewSFieldOfViewSSADD@BF/PSFocalLengthSNumberSSAD �Z5@�F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSADG2PS2D Magnifier XSNumberSSADOG2PS2D Magnifier YSNumberSSAD}G	TypeFlagsSCamera�GGeometryVersionI|�GPositionDD b@D�r@�GUpDD�?D&HLookAtD1�ʧ�U�<D�����V@DHHShowInfoOnMovingIcH	ShowAudioI�H
AudioColorDD�?D�H	CameraOrthoZoomD�?]N6
NodeAttributeL�2b:SProducer FrontNodeAttributeSCamera�LProperties70|I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D"JDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?aJ1PSDisplayTurnTableIconSboolSSI�J,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@K/PSFocalLengthSNumberSSAD �Z5@ZK2PS	NearPlaneSdoubleSNumberSD�?�K1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?&L5PS2D Magnifier ZoomSNumberSSADfL2PS2D Magnifier XSNumberSSAD�L2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSIM	TypeFlagsSCamera4MGeometryVersionI|dMPositionDD�V@DL�@�MUpDD�?D�MLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioI+N
AudioColorDD�?DPN	CameraOrthoZoomD�?�S5
NodeAttributeL�:b:SProducer BackNodeAttributeSCamera�RProperties70O>PSPositionSVectorSSADD�V@DL��eOFPSInterestPositionSVectorSSADD�V@D�ODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI0P,PSFilmFormatIndexSenumSSIrP4PSFieldOfViewSFieldOfViewSSADD@�P/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?.Q1PSFarPlaneSdoubleSNumberSDL�@xQ<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�Q5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSAD;R2PS2D Magnifier YSNumberSSADzR1PSCameraProjectionTypeSenumSSI�R	TypeFlagsSCamera�RGeometryVersionI|�RPositionDD�V@DL��#SUpDD�?DQSLookAtDD�V@DsSShowInfoOnMovingI�S	ShowAudioI�S
AudioColorDD�?D�S	CameraOrthoZoomD�?�Y6
NodeAttributeL�6b:SProducer RightNodeAttributeSCameraXProperties70�T>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@DMUDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�U1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSIV4PSFieldOfViewSFieldOfViewSSADD@EV/PSFocalLengthSNumberSSAD �Z5@�V2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@W<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?QW5PS2D Magnifier ZoomSNumberSSAD�W2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSADX1PSCameraProjectionTypeSenumSSI>X	TypeFlagsSCamera_XGeometryVersionI|�XPositionDL�@D�V@D�XUpDD�?D�XLookAtDD�V@D	YShowInfoOnMovingI$Y	ShowAudioIVY
AudioColorDD�?D{Y	CameraOrthoZoomD�?_5
NodeAttributeL�Bb:SProducer LeftNodeAttributeSCamera�]Properties70<Z>PSPositionSVectorSSADL��D�V@D�ZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?![1PSDisplayTurnTableIconSboolSSI[[,PSFilmFormatIndexSenumSSI�[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@\2PS	NearPlaneSdoubleSNumberSD�?Y\1PSFarPlaneSdoubleSNumberSDL�@�\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD&]2PS2D Magnifier XSNumberSSADf]2PS2D Magnifier YSNumberSSAD�]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|$^PositionDL��D�V@DN^UpDD�?D|^LookAtDD�V@D�^ShowInfoOnMovingI�^	ShowAudioI�^
AudioColorDD�?D_	CameraOrthoZoomD�?�d4
NodeAttributeL�>b:SProducer TopNodeAttributeSCamera�cProperties70�_>PSPositionSVectorSSADDy�@D`>PSUpVectorSVectorSSADDD�p`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?a1PSDisplayTurnTableIconSboolSSI;a,PSFilmFormatIndexSenumSSI}a4PSFieldOfViewSFieldOfViewSSADD@�a/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?9b1PSFarPlaneSdoubleSNumberSDL�@�b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSADc2PS2D Magnifier XSNumberSSADFc2PS2D Magnifier YSNumberSSAD�c1PSCameraProjectionTypeSenumSSI�c	TypeFlagsSCamera�cGeometryVersionI|dPositionDDy�@D.dUpDDD�\dLookAtDD�V@D~dShowInfoOnMovingI�d	ShowAudioI�d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeL�Jb:SProducer BottomNodeAttributeSCamerauiProperties70�e>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?SfFPSInterestPositionSVectorSSADD�V@D�fDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSIg,PSFilmFormatIndexSenumSSI`g4PSFieldOfViewSFieldOfViewSSADD@�g/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?h1PSFarPlaneSdoubleSNumberSDL�@fh<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�h5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD)i2PS2D Magnifier YSNumberSSADhi1PSCameraProjectionTypeSenumSSI�i	TypeFlagsSCamera�iGeometryVersionI|�iPositionDD��DjUpD�D�D�??jLookAtDD�V@DajShowInfoOnMovingI|j	ShowAudioI�j
AudioColorDD�?D�j	CameraOrthoZoomD�?>l?
NodeAttributeL��:SCamera SwitcherNodeAttributeSCameraSwitcher�kProperties70�k-PSCamera IndexSIntegerSSAI�kVersionIe�kNameSCamera SwitcherModel�kCameraIdIl
CameraNameId1lCameraIndexName�l*
NodeAttributeL��-SNodeAttributeSLimbNode�l
	TypeFlagsSSkeleton&m*
NodeAttributeLH�-SNodeAttributeSLimbNodem
	TypeFlagsSSkeleton�m*
NodeAttributeLHl�-SNodeAttributeSLimbNode�m
	TypeFlagsSSkeletonn*
NodeAttributeL�9�-SNodeAttributeSLimbNoden
	TypeFlagsSSkeleton�n*
NodeAttributeLH!�-SNodeAttributeSLimbNodeun
	TypeFlagsSSkeleton�n*
NodeAttributeL$�-SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletonjo*
NodeAttributeL��-SNodeAttributeSLimbNode]o
	TypeFlagsSSkeleton�o*
NodeAttributeL�W�-SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonRp*
NodeAttributeL�-SNodeAttributeSLimbNodeEp
	TypeFlagsSSkeleton�p*
NodeAttributeLl�-SNodeAttributeSLimbNode�p
	TypeFlagsSSkeleton:q*
NodeAttributeLg�-SNodeAttributeSLimbNode-q
	TypeFlagsSSkeleton�q*
NodeAttributeLH��-SNodeAttributeSLimbNode�q
	TypeFlagsSSkeleton"r*
NodeAttributeL�+�-SNodeAttributeSLimbNoder
	TypeFlagsSSkeleton�r*
NodeAttributeL�-SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton
s*
NodeAttributeLȟ�-SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton~s*
NodeAttributeL���-SNodeAttributeSLimbNodeqs
	TypeFlagsSSkeleton�s*
NodeAttributeL��-SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletonft*
NodeAttributeL���-SNodeAttributeSLimbNodeYt
	TypeFlagsSSkeleton�t*
NodeAttributeL]�-SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonNu*
NodeAttributeL�X�-SNodeAttributeSLimbNodeAu
	TypeFlagsSSkeleton�u*
NodeAttributeL�c�-SNodeAttributeSLimbNode�u
	TypeFlagsSSkeleton6v*
NodeAttributeL�-SNodeAttributeSLimbNode)v
	TypeFlagsSSkeleton�v*
NodeAttributeL���-SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonw*
NodeAttributeL�[�-SNodeAttributeSLimbNodew
	TypeFlagsSSkeleton�w*
NodeAttributeL�(�-SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonx*
NodeAttributeL���-SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonzx*
NodeAttributeL��-SNodeAttributeSLimbNodemx
	TypeFlagsSSkeleton�x*
NodeAttributeLH|�-SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletonby*
NodeAttributeL�g�-SNodeAttributeSLimbNodeUy
	TypeFlagsSSkeleton�y*
NodeAttributeL���-SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonJz*
NodeAttributeL��-SNodeAttributeSLimbNode=z
	TypeFlagsSSkeleton�z*
NodeAttributeLH��-SNodeAttributeSLimbNode�z
	TypeFlagsSSkeleton2{*
NodeAttributeL��-SNodeAttributeSLimbNode%{
	TypeFlagsSSkeleton�{*
NodeAttributeLȕ�-SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton|*
NodeAttributeL�x�-SNodeAttributeSLimbNode
|
	TypeFlagsSSkeleton�|*
NodeAttributeL�2�-SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton}*
NodeAttributeLH0�-SNodeAttributeSLimbNode�|
	TypeFlagsSSkeletonv}*
NodeAttributeL���-SNodeAttributeSLimbNodei}
	TypeFlagsSSkeleton�}*
NodeAttributeLH9�-SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton^~*
NodeAttributeL��-SNodeAttributeSLimbNodeQ~
	TypeFlagsSSkeleton�~*
NodeAttributeLȘ�-SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletonF*
NodeAttributeL�
�-SNodeAttributeSLimbNode9
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton.�*
NodeAttributeL��-SNodeAttributeSLimbNode!�
	TypeFlagsSSkeleton��*
NodeAttributeLH"�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�_�-SNodeAttributeSLimbNode	�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode}�
	TypeFlagsSSkeleton��*
NodeAttributeLH �-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonr�*
NodeAttributeL��-SNodeAttributeSLimbNodee�
	TypeFlagsSSkeleton�*
NodeAttributeL�6�-SNodeAttributeSLimbNodeق
	TypeFlagsSSkeletonZ�*
NodeAttributeLH�-SNodeAttributeSLimbNodeM�
	TypeFlagsSSkeleton΃*
NodeAttributeL���-SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonB�*
NodeAttributeL	�-SNodeAttributeSLimbNode5�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton*�*
NodeAttributeL�=�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL`�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���-SNodeAttributeSLimbNodey�
	TypeFlagsSSkeleton��*
NodeAttributeL���-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonn�*
NodeAttributeLH�-SNodeAttributeSLimbNodea�
	TypeFlagsSSkeleton�*
NodeAttributeLȇ�-SNodeAttributeSLimbNodeՇ
	TypeFlagsSSkeletonV�*
NodeAttributeLH��-SNodeAttributeSLimbNodeI�
	TypeFlagsSSkeletonʈ*
NodeAttributeLH��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton>�*
NodeAttributeL�-SNodeAttributeSLimbNode1�
	TypeFlagsSSkeleton��*
NodeAttributeL���-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton&�*
NodeAttributeLH
�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�-SNodeAttributeSLimbNodeu�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonj�*
NodeAttributeL�x�-SNodeAttributeSLimbNode]�
	TypeFlagsSSkeletonތ*
NodeAttributeL�-SNodeAttributeSLimbNodeь
	TypeFlagsSSkeletonR�*
NodeAttributeL��-SNodeAttributeSLimbNodeE�
	TypeFlagsSSkeletonƍ*
NodeAttributeLȿ�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton:�*
NodeAttributeL~�-SNodeAttributeSLimbNode-�
	TypeFlagsSSkeleton��*
NodeAttributeLȵ�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton��4ModelL�v)SProducer PerspectiveModelSCamera
�VersionI���Properties70{�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSIL�NPSLcl TranslationSLcl TranslationSSADD b@D�r@��HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V�ܐ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIz�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5�5PSRotationLimitsVisibilitySboolSSI}�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI=�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIȓ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@Q�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIŔ%PSPickableSboolSSI��*PS
TransformableSboolSSI3�(PSCullingModeSenumSSIn�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?#�0PSAspectHSdoubleSNumberSD�?V�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSI*�2PSForegroundTransparentSboolSSIl�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSIǗShadingCW�CullingS
CullingOff:�.ModelL�v)SProducer FrontModelSCameraP�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI3�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL�@�HPSLcl RotationSLcl RotationSSADD�V@D�,PS	MultiTakeSintSIntegerSIZ�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI5�-PSPivotsVisibilitySenumSSIx�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIA�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIǜ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIQ�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI՝3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI@�*PS
TransformableSboolSSIv�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI(�0PSAspectWSdoubleSNumberSD�?f�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSIȟ!PSCropSboolSSI��#PSCenterSboolSSI-�&PS	KeepRatioSboolSSIm�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI
�ShadingCW-�CullingS
CullingOff|�-ModelL�v)SProducer BackModelSCamera��VersionI�6�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?/�!PSShowSboolSSIu�8PSDefaultAttributeIndexSintSIntegerSIѢNPSLcl TranslationSLcl TranslationSSADD�V@DL��'�HPSLcl RotationSLcl RotationSSAD�D�V�Da�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD<�/PSSetPreferedAngleSActionSSIw�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIB�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI¥1PSScalingRefVisibilitySboolSSI	�9PSHierarchicalCenterVisibilitySboolSSIM�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@֦5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIJ�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI,�+PSResolutionModeSenumSSIj�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ۨ%PSFitImageSboolSSI
�!PSCropSboolSSI;�#PSCenterSboolSSIo�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI)�*PSResetCameraSActionSSIL�ShadingCWo�CullingS
CullingOff��.ModelL$v)SProducer RightModelSCameraժVersionI�y�Properties70C�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?r�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL�@D�V@Dj�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@��,PS	MultiTakeSintSIntegerSI߬-PSManipulationModeSenumSSIB�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIE�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIƮ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIL�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI֯8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIZ�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIŰ*PS
TransformableSboolSSI��(PSCullingModeSenumSSI6�-PSShowTrajectoriesSboolSSIo�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSIM�!PSCropSboolSSI~�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI4�4PSDisplay2DMagnifierFrameSboolSSIl�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff��-ModelL)v)SProducer LeftModelSCamera�VersionI�e�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSIV�NPSLcl TranslationSLcl TranslationSSADL��D�V@D��,PS	MultiTakeSintSIntegerSI˵-PSManipulationModeSenumSSI.�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDk�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI1�:PSLocalTranslationRefVisibilitySboolSSIq�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI8�9PSHierarchicalCenterVisibilitySboolSSI|�6PSGeometricCenterVisibilitySboolSSI¸8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIF�3PSDefaultKeyingGroupEnumSenumSSIy�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI"�-PSShowTrajectoriesSboolSSI[�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?׺0PSAspectHSdoubleSNumberSD�?
�%PSFitImageSboolSSI9�!PSCropSboolSSIj�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI޻2PSForegroundTransparentSboolSSI �4PSDisplay2DMagnifierFrameSboolSSIX�*PSResetCameraSActionSSI{�ShadingCW��CullingS
CullingOff��,ModelL.v)SProducer TopModelSCamera�VersionI���Properties70p�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIA�NPSLcl TranslationSLcl TranslationSSADDy�@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
CullingOff0�/ModelL3v)SProducer BottomModelSCameraF�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI)�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@�,PS	MultiTakeSintSIntegerSIP�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI+�-PSPivotsVisibilitySenumSSIn�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI7�3PSRotationAxisVisibilitySboolSSIv�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIG�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI6�*PS
TransformableSboolSSIl�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?\�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI#�&PS	KeepRatioSboolSSIc�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI�ShadingCW#�CullingS
CullingOff��7ModelL��8:SCamera SwitcherModelSCameraSwitcher��VersionI�N�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?/�!PSShowSboolSSIu�8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIM�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIP�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIW�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@$�5PSDefaultKeyingGroupSintSIntegerSIe�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIA�-PSShowTrajectoriesSboolSSId�ShadingCW��CullingS
CullingOfft�+ModelL��8:SReferenceModelSLimbNode��VersionI�.�Properties70<�+PSRotationActiveSboolSSIr�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD
�8PSDefaultAttributeIndexSintSIntegerSIj�OPSLcl TranslationSLcl TranslationSSA+DDD��IPSLcl RotationSLcl RotationSSA+DDD�EPSVisibility InheritanceSVisibility InheritanceSSIN�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD)�/PSSetPreferedAngleSActionSSId�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI/�2PSRotationRefVisibilitySboolSSIp�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI:�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI7�%PSPickableSboolSSIo�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI!�3PSlockInfluenceWeightsSBoolSSAUID�ShadingCYg�CullingS
CullingOff��&ModelL��8:SHipsModelSLimbNode��VersionI�I�Properties70�+PSRotationActiveSboolSSIM�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIE�OPSLcl TranslationSLcl TranslationSSA+D�
�<�D�[�V@D`�����IPSLcl RotationSLcl RotationSSA+D`�&@D`��?D�V���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��'ModelL��8:SSpineModelSLimbNode��VersionI�e�Properties703�+PSRotationActiveSboolSSIi�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIa�OPSLcl TranslationSLcl TranslationSSA+D�D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D�n�*@D��o@D@��@�EPSVisibility InheritanceSVisibility InheritanceSSIE�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD �/PSSetPreferedAngleSActionSSI[�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI&�2PSRotationRefVisibilitySboolSSIg�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI1�6PSGeometricCenterVisibilitySboolSSIw�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI.�%PSPickableSboolSSIf�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIX�CPSLimbLength 1SNumberSSAUD�?DDY@{�ShadingCY��CullingS
CullingOff��'ModelL��8:SChestModelSLimbNode��VersionI���Properties70O�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD �8PSDefaultAttributeIndexSintSIntegerSI}�OPSLcl TranslationSLcl TranslationSSA+DDA0@D�2ſ��IPSLcl RotationSLcl RotationSSA+D��Q@D�*/@D��=�'�EPSVisibility InheritanceSVisibility InheritanceSSIa�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD<�/PSSetPreferedAngleSActionSSIw�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIB�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI	�9PSHierarchicalCenterVisibilitySboolSSIM�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIJ�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI#�"PSliwSBoolSSAUIt�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��&ModelL��8:SNeckModelSLimbNode�VersionI���Properties70j�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD;�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D4�D`��9@D <�	���IPSLcl RotationSLcl RotationSSA+D`O��D`���D��w@B�EPSVisibility InheritanceSVisibility InheritanceSSI|�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDW�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI]�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI$�9PSHierarchicalCenterVisibilitySboolSSIh�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI2�3PSDefaultKeyingGroupEnumSenumSSIe�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI>�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�&ModelL��8:SHeadModelSLimbNode3�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDV�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�D 4� @D s�?
IPSLcl RotationSLcl RotationSSA+D����D ���?D���]EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI5UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDr/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI8:PSLocalTranslationRefVisibilitySboolSSIx2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI?9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIM3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI)-PSShowTrajectoriesSboolSSIY"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff)ModelL�9:SLeftEyeModelSLimbNodeQVersionI��
Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI.GPS
ScalingMaxSVector3DSVectorSDDDt8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D෭@D`#� @D��+@(IPSLcl RotationSLcl RotationSSA+DDD{EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIS	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�	/PSSetPreferedAngleSActionSSI�	-PSPivotsVisibilitySenumSSI
5PSRotationLimitsVisibilitySboolSSIV
:PSLocalTranslationRefVisibilitySboolSSI�
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSI]9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@*5PSDefaultKeyingGroupSintSIntegerSIk3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI
(PSCullingModeSenumSSIG
-PSShowTrajectoriesSboolSSIw
"PSliwSBoolSSAUI�
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCYCullingS
CullingOffr*ModelL�9:SRightEyeModelSLimbNodepVersionI�,Properties70�*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI0(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI(OPSLcl TranslationSLcl TranslationSSA+D���D %� @D�+@IPSLcl RotationSLcl RotationSSA+DDD�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSIG-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI"-PSPivotsVisibilitySenumSSIe5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI.3PSRotationAxisVisibilitySboolSSIm1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI>8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI-*PS
TransformableSboolSSIc(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@BShadingCYeCullingS
CullingOff�%ModelL�9:S
JawModelSLimbNode�VersionI��Properties70+PSRotationActiveSboolSSIJ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@*8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@�D@���?D`)��?�IPSLcl RotationSLcl RotationSSA+DDD1EPSVisibility InheritanceSVisibility InheritanceSSIk,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIL2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIW6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI!3PSDefaultKeyingGroupEnumSenumSSIT%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI-"PSliwSBoolSSAUI~CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�&,ModelL�9:STongueBackModelSLimbNode(VersionI��&Properties70z+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI GPS
ScalingMaxSVector3DSVectorSDDDK 8PSDefaultAttributeIndexSintSIntegerSI� OPSLcl TranslationSLcl TranslationSSA+D@<D��K�D`'�?� IPSLcl RotationSLcl RotationSSA+DDDR!EPSVisibility InheritanceSVisibility InheritanceSSI�!,PS	MultiTakeSintSIntegerSI�!-PSManipulationModeSenumSSI*"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSI�"5PSRotationLimitsVisibilitySboolSSI-#:PSLocalTranslationRefVisibilitySboolSSIm#2PSRotationRefVisibilitySboolSSI�#3PSRotationAxisVisibilitySboolSSI�#1PSScalingRefVisibilitySboolSSI4$9PSHierarchicalCenterVisibilitySboolSSIx$6PSGeometricCenterVisibilitySboolSSI�$8PSReferentialSizeSdoubleSNumberSD(@%5PSDefaultKeyingGroupSintSIntegerSIB%3PSDefaultKeyingGroupEnumSenumSSIu%%PSPickableSboolSSI�%*PS
TransformableSboolSSI�%(PSCullingModeSenumSSI&-PSShowTrajectoriesSboolSSIN&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@�&ShadingCY�&CullingS
CullingOff/+ModelL�9:STongueTipModelSLimbNodeH'VersionI��.Properties70�'+PSRotationActiveSboolSSI�'(PSInheritTypeSenumSSI%(GPS
ScalingMaxSVector3DSVectorSDDDk(8PSDefaultAttributeIndexSintSIntegerSI�(OPSLcl TranslationSLcl TranslationSSA+D@<D@���D�}�@)IPSLcl RotationSLcl RotationSSA+DDDr)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSIJ*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI+5PSRotationLimitsVisibilitySboolSSIM+:PSLocalTranslationRefVisibilitySboolSSI�+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI
,1PSScalingRefVisibilitySboolSSIT,9PSHierarchicalCenterVisibilitySboolSSI�,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@!-5PSDefaultKeyingGroupSintSIntegerSIb-3PSDefaultKeyingGroupEnumSenumSSI�-%PSPickableSboolSSI�-*PS
TransformableSboolSSI.(PSCullingModeSenumSSI>.-PSShowTrajectoriesSboolSSIn."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY/CullingS
CullingOff57.ModelL���:SLeftLipLowerModelSLimbNodek/VersionI��6Properties70�/+PSRotationActiveSboolSSI�/(PSInheritTypeSenumSSIH0GPS
ScalingMaxSVector3DSVectorSDDD�08PSDefaultAttributeIndexSintSIntegerSI�0OPSLcl TranslationSLcl TranslationSSA+D�"��?D��Y�D��r @B1IPSLcl RotationSLcl RotationSSA+DDD�1EPSVisibility InheritanceSVisibility InheritanceSSI�1,PS	MultiTakeSintSIntegerSI
2-PSManipulationModeSenumSSIm2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI�2-PSPivotsVisibilitySenumSSI(35PSRotationLimitsVisibilitySboolSSIp3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI�33PSRotationAxisVisibilitySboolSSI041PSScalingRefVisibilitySboolSSIw49PSHierarchicalCenterVisibilitySboolSSI�46PSGeometricCenterVisibilitySboolSSI58PSReferentialSizeSdoubleSNumberSD(@D55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI�5%PSPickableSboolSSI�5*PS
TransformableSboolSSI&6(PSCullingModeSenumSSIa6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI�6CPSLimbLength 1SNumberSSAUD�?DDY@7ShadingCY(7CullingS
CullingOff�?(ModelL���:S
JawENDModelSLimbNode�7VersionI�D?Properties70�7*PS
RotationOrderSenumSSI8+PSRotationActiveSboolSSIH8(PSInheritTypeSenumSSI�8GPS
ScalingMaxSVector3DSVectorSDDD�88PSDefaultAttributeIndexSintSIntegerSI@9OPSLcl TranslationSLcl TranslationSSA+D@<D��P�D���@�9IPSLcl RotationSLcl RotationSSA+DDD�9EPSVisibility InheritanceSVisibility InheritanceSSI$:,PS	MultiTakeSintSIntegerSI_:-PSManipulationModeSenumSSI�:UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�:/PSSetPreferedAngleSActionSSI:;-PSPivotsVisibilitySenumSSI};5PSRotationLimitsVisibilitySboolSSI�;:PSLocalTranslationRefVisibilitySboolSSI<2PSRotationRefVisibilitySboolSSIF<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI�<9PSHierarchicalCenterVisibilitySboolSSI=6PSGeometricCenterVisibilitySboolSSIV=8PSReferentialSizeSdoubleSNumberSD(@�=5PSDefaultKeyingGroupSintSIntegerSI�=3PSDefaultKeyingGroupEnumSenumSSI
>%PSPickableSboolSSIE>*PS
TransformableSboolSSI{>(PSCullingModeSenumSSI�>-PSShowTrajectoriesSboolSSI�>"PSliwSBoolSSAUI7?CPSLimbLength 1SNumberSSAUD�?DDY@Z?ShadingCY}?CullingS
CullingOff�G/ModelLȫ�:SRightLipLowerModelSLimbNode�?VersionI�hGProperties706@+PSRotationActiveSboolSSIl@(PSInheritTypeSenumSSI�@GPS
ScalingMaxSVector3DSVectorSDDDA8PSDefaultAttributeIndexSintSIntegerSIdAOPSLcl TranslationSLcl TranslationSSA+D�"���D��Y�D@�r @�AIPSLcl RotationSLcl RotationSSA+DDDBEPSVisibility InheritanceSVisibility InheritanceSSIHB,PS	MultiTakeSintSIntegerSI�B-PSManipulationModeSenumSSI�BUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD#C/PSSetPreferedAngleSActionSSI^C-PSPivotsVisibilitySenumSSI�C5PSRotationLimitsVisibilitySboolSSI�C:PSLocalTranslationRefVisibilitySboolSSI)D2PSRotationRefVisibilitySboolSSIjD3PSRotationAxisVisibilitySboolSSI�D1PSScalingRefVisibilitySboolSSI�D9PSHierarchicalCenterVisibilitySboolSSI4E6PSGeometricCenterVisibilitySboolSSIzE8PSReferentialSizeSdoubleSNumberSD(@�E5PSDefaultKeyingGroupSintSIntegerSI�E3PSDefaultKeyingGroupEnumSenumSSI1F%PSPickableSboolSSIiF*PS
TransformableSboolSSI�F(PSCullingModeSenumSSI�F-PSShowTrajectoriesSboolSSI
G"PSliwSBoolSSAUI[GCPSLimbLength 1SNumberSSAUD�?DDY@~GShadingCY�GCullingS
CullingOff�O0ModelLа�:SRightLipCornerModelSLimbNode	HVersionI��OProperties70[H+PSRotationActiveSboolSSI�H(PSInheritTypeSenumSSI�HGPS
ScalingMaxSVector3DSVectorSDDD,I8PSDefaultAttributeIndexSintSIntegerSI�IOPSLcl TranslationSLcl TranslationSSA+D��E
�D����D@�r@�IIPSLcl RotationSLcl RotationSSA+DDD3JEPSVisibility InheritanceSVisibility InheritanceSSImJ,PS	MultiTakeSintSIntegerSI�J-PSManipulationModeSenumSSIKUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDHK/PSSetPreferedAngleSActionSSI�K-PSPivotsVisibilitySenumSSI�K5PSRotationLimitsVisibilitySboolSSIL:PSLocalTranslationRefVisibilitySboolSSINL2PSRotationRefVisibilitySboolSSI�L3PSRotationAxisVisibilitySboolSSI�L1PSScalingRefVisibilitySboolSSIM9PSHierarchicalCenterVisibilitySboolSSIYM6PSGeometricCenterVisibilitySboolSSI�M8PSReferentialSizeSdoubleSNumberSD(@�M5PSDefaultKeyingGroupSintSIntegerSI#N3PSDefaultKeyingGroupEnumSenumSSIVN%PSPickableSboolSSI�N*PS
TransformableSboolSSI�N(PSCullingModeSenumSSI�N-PSShowTrajectoriesSboolSSI/O"PSliwSBoolSSAUI�OCPSLimbLength 1SNumberSSAUD�?DDY@�OShadingCY�OCullingS
CullingOff�W/ModelLص�:SLeftLipCornerModelSLimbNode-PVersionI��WProperties70P+PSRotationActiveSboolSSI�P(PSInheritTypeSenumSSI
QGPS
ScalingMaxSVector3DSVectorSDDDPQ8PSDefaultAttributeIndexSintSIntegerSI�QOPSLcl TranslationSLcl TranslationSSA+D�LF
@D����D`�r@RIPSLcl RotationSLcl RotationSSA+DDDWREPSVisibility InheritanceSVisibility InheritanceSSI�R,PS	MultiTakeSintSIntegerSI�R-PSManipulationModeSenumSSI/SUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDlS/PSSetPreferedAngleSActionSSI�S-PSPivotsVisibilitySenumSSI�S5PSRotationLimitsVisibilitySboolSSI2T:PSLocalTranslationRefVisibilitySboolSSIrT2PSRotationRefVisibilitySboolSSI�T3PSRotationAxisVisibilitySboolSSI�T1PSScalingRefVisibilitySboolSSI9U9PSHierarchicalCenterVisibilitySboolSSI}U6PSGeometricCenterVisibilitySboolSSI�U8PSReferentialSizeSdoubleSNumberSD(@V5PSDefaultKeyingGroupSintSIntegerSIGV3PSDefaultKeyingGroupEnumSenumSSIzV%PSPickableSboolSSI�V*PS
TransformableSboolSSI�V(PSCullingModeSenumSSI#W-PSShowTrajectoriesSboolSSISW"PSliwSBoolSSAUI�WCPSLimbLength 1SNumberSSAUD�?DDY@�WShadingCY�WCullingS
CullingOff`.ModelLຒ:SLeftLipUpperModelSLimbNodePXVersionI��_Properties70�X+PSRotationActiveSboolSSI�X(PSInheritTypeSenumSSI-YGPS
ScalingMaxSVector3DSVectorSDDDsY8PSDefaultAttributeIndexSintSIntegerSI�YOPSLcl TranslationSLcl TranslationSSA+D�3�?D��[�D |�"@'ZIPSLcl RotationSLcl RotationSSA+DDDzZEPSVisibility InheritanceSVisibility InheritanceSSI�Z,PS	MultiTakeSintSIntegerSI�Z-PSManipulationModeSenumSSIR[UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�[/PSSetPreferedAngleSActionSSI�[-PSPivotsVisibilitySenumSSI
\5PSRotationLimitsVisibilitySboolSSIU\:PSLocalTranslationRefVisibilitySboolSSI�\2PSRotationRefVisibilitySboolSSI�\3PSRotationAxisVisibilitySboolSSI]1PSScalingRefVisibilitySboolSSI\]9PSHierarchicalCenterVisibilitySboolSSI�]6PSGeometricCenterVisibilitySboolSSI�]8PSReferentialSizeSdoubleSNumberSD(@)^5PSDefaultKeyingGroupSintSIntegerSIj^3PSDefaultKeyingGroupEnumSenumSSI�^%PSPickableSboolSSI�^*PS
TransformableSboolSSI_(PSCullingModeSenumSSIF_-PSShowTrajectoriesSboolSSIv_"PSliwSBoolSSAUI�_CPSLimbLength 1SNumberSSAUD�?DDY@�_ShadingCY
`CullingS
CullingOff<h-ModelL迒:SLeftNostrilModelSLimbNoder`VersionI��gProperties70�`+PSRotationActiveSboolSSI�`(PSInheritTypeSenumSSIOaGPS
ScalingMaxSVector3DSVectorSDDD�a8PSDefaultAttributeIndexSintSIntegerSI�aOPSLcl TranslationSLcl TranslationSSA+Dף�?D�@D@i,"@IbIPSLcl RotationSLcl RotationSSA+DDD�bEPSVisibility InheritanceSVisibility InheritanceSSI�b,PS	MultiTakeSintSIntegerSIc-PSManipulationModeSenumSSItcUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�c/PSSetPreferedAngleSActionSSI�c-PSPivotsVisibilitySenumSSI/d5PSRotationLimitsVisibilitySboolSSIwd:PSLocalTranslationRefVisibilitySboolSSI�d2PSRotationRefVisibilitySboolSSI�d3PSRotationAxisVisibilitySboolSSI7e1PSScalingRefVisibilitySboolSSI~e9PSHierarchicalCenterVisibilitySboolSSI�e6PSGeometricCenterVisibilitySboolSSIf8PSReferentialSizeSdoubleSNumberSD(@Kf5PSDefaultKeyingGroupSintSIntegerSI�f3PSDefaultKeyingGroupEnumSenumSSI�f%PSPickableSboolSSI�f*PS
TransformableSboolSSI-g(PSCullingModeSenumSSIhg-PSShowTrajectoriesSboolSSI�g"PSliwSBoolSSAUI�gCPSLimbLength 1SNumberSSAUD�?DDY@hShadingCY/hCullingS
CullingOff\p+ModelL�Ē:SLeftCheekModelSLimbNode�hVersionI�pProperties70�h+PSRotationActiveSboolSSIi(PSInheritTypeSenumSSIoiGPS
ScalingMaxSVector3DSVectorSDDD�i8PSDefaultAttributeIndexSintSIntegerSIjOPSLcl TranslationSLcl TranslationSSA+D���@D�(�
@D`��@ijIPSLcl RotationSLcl RotationSSA+DDD�jEPSVisibility InheritanceSVisibility InheritanceSSI�j,PS	MultiTakeSintSIntegerSI1k-PSManipulationModeSenumSSI�kUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�k/PSSetPreferedAngleSActionSSIl-PSPivotsVisibilitySenumSSIOl5PSRotationLimitsVisibilitySboolSSI�l:PSLocalTranslationRefVisibilitySboolSSI�l2PSRotationRefVisibilitySboolSSIm3PSRotationAxisVisibilitySboolSSIWm1PSScalingRefVisibilitySboolSSI�m9PSHierarchicalCenterVisibilitySboolSSI�m6PSGeometricCenterVisibilitySboolSSI(n8PSReferentialSizeSdoubleSNumberSD(@kn5PSDefaultKeyingGroupSintSIntegerSI�n3PSDefaultKeyingGroupEnumSenumSSI�n%PSPickableSboolSSIo*PS
TransformableSboolSSIMo(PSCullingModeSenumSSI�o-PSShowTrajectoriesSboolSSI�o"PSliwSBoolSSAUI	pCPSLimbLength 1SNumberSSAUD�?DDY@,pShadingCYOpCullingS
CullingOff�x1ModelL�ɒ:SLeftEyelidLowerModelSLimbNode�pVersionI�<xProperties70
q+PSRotationActiveSboolSSI@q(PSInheritTypeSenumSSI�qGPS
ScalingMaxSVector3DSVectorSDDD�q8PSDefaultAttributeIndexSintSIntegerSI8rOPSLcl TranslationSLcl TranslationSSA+D@�~@D�@D p~@�rIPSLcl RotationSLcl RotationSSA+D�D�D�rEPSVisibility InheritanceSVisibility InheritanceSSIs,PS	MultiTakeSintSIntegerSIWs-PSManipulationModeSenumSSI�sUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�s/PSSetPreferedAngleSActionSSI2t-PSPivotsVisibilitySenumSSIut5PSRotationLimitsVisibilitySboolSSI�t:PSLocalTranslationRefVisibilitySboolSSI�t2PSRotationRefVisibilitySboolSSI>u3PSRotationAxisVisibilitySboolSSI}u1PSScalingRefVisibilitySboolSSI�u9PSHierarchicalCenterVisibilitySboolSSIv6PSGeometricCenterVisibilitySboolSSINv8PSReferentialSizeSdoubleSNumberSD(@�v5PSDefaultKeyingGroupSintSIntegerSI�v3PSDefaultKeyingGroupEnumSenumSSIw%PSPickableSboolSSI=w*PS
TransformableSboolSSIsw(PSCullingModeSenumSSI�w-PSShowTrajectoriesSboolSSI�w"PSliwSBoolSSAUI/xCPSLimbLength 1SNumberSSAUD�?DDY@RxShadingCYuxCullingS
CullingOff��1ModelLϒ:SLeftEyelidUpperModelSLimbNode�xVersionI�b�Properties700y+PSRotationActiveSboolSSIfy(PSInheritTypeSenumSSI�yGPS
ScalingMaxSVector3DSVectorSDDDz8PSDefaultAttributeIndexSintSIntegerSI^zOPSLcl TranslationSLcl TranslationSSA+D`��@D#$@D�
 @�zIPSLcl RotationSLcl RotationSSA+DDD{EPSVisibility InheritanceSVisibility InheritanceSSIB{,PS	MultiTakeSintSIntegerSI}{-PSManipulationModeSenumSSI�{UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD|/PSSetPreferedAngleSActionSSIX|-PSPivotsVisibilitySenumSSI�|5PSRotationLimitsVisibilitySboolSSI�|:PSLocalTranslationRefVisibilitySboolSSI#}2PSRotationRefVisibilitySboolSSId}3PSRotationAxisVisibilitySboolSSI�}1PSScalingRefVisibilitySboolSSI�}9PSHierarchicalCenterVisibilitySboolSSI.~6PSGeometricCenterVisibilitySboolSSIt~8PSReferentialSizeSdoubleSNumberSD(@�~5PSDefaultKeyingGroupSintSIntegerSI�~3PSDefaultKeyingGroupEnumSenumSSI+%PSPickableSboolSSIc*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIU�CPSLimbLength 1SNumberSSAUD�?DDY@x�ShadingCY��CullingS
CullingOff̈/ModelLԒ:SLeftInnerBrowModelSLimbNode�VersionI���Properties70T�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI߁GPS
ScalingMaxSVector3DSVectorSDDD%�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��L�?D ��'@D`��"@قIPSLcl RotationSLcl RotationSSA+DDD,�EPSVisibility InheritanceSVisibility InheritanceSSIf�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDA�/PSSetPreferedAngleSActionSSI|�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIG�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIDž1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIR�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ۆ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIO�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI(�"PSliwSBoolSSAUIy�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff)�0ModelLْ:SLeftIOuterBrowModelSLimbNode'�VersionI��Properties70x�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI<�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIߊOPSLcl TranslationSLcl TranslationSSA+D@@D �&@D��@6�IPSLcl RotationSLcl RotationSSA+DDD��EPSVisibility InheritanceSVisibility InheritanceSSIË,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIa�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIٌ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSId�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI$�1PSScalingRefVisibilitySboolSSIk�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@8�5PSDefaultKeyingGroupSintSIntegerSIy�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSIU�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI֐CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffN�0ModelL_�9SRightInnerBrowModelSLimbNode��VersionI��Properties70֑+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIa�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D��L�D ��'@D`��"@[�IPSLcl RotationSLcl RotationSSA+DDD��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��1ModelLd�9SRightIOuterBrowModelSLimbNode��VersionI�f�Properties70��*PS
RotationOrderSenumSSI4�+PSRotationActiveSboolSSIj�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIb�OPSLcl TranslationSLcl TranslationSSA+D��D���&@D��@��IPSLcl RotationSLcl RotationSSA+DDD�EPSVisibility InheritanceSVisibility InheritanceSSIF�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD!�/PSSetPreferedAngleSActionSSI\�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI'�2PSRotationRefVisibilitySboolSSIh�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI2�6PSGeometricCenterVisibilitySboolSSIx�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI/�%PSPickableSboolSSIg�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIؠ-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIY�CPSLimbLength 1SNumberSSAUD�?DDY@|�ShadingCY��CullingS
CullingOffө2ModelLi�9SRightEyelidUpperModelSLimbNode	�VersionI���Properties70[�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD,�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D+��D�`$@D`�
 @�IPSLcl RotationSLcl RotationSSA+DDD3�EPSVisibility InheritanceSVisibility InheritanceSSIm�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDH�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIƥ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIN�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIΦ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIY�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI#�3PSDefaultKeyingGroupEnumSenumSSIV�%PSPickableSboolSSI��*PS
TransformableSboolSSIĨ(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI/�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYƩCullingS
CullingOff��2ModelL n�9SRightEyelidLowerModelSLimbNode0�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI
�GPS
ScalingMaxSVector3DSVectorSDDDS�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��~�D u@D��~@�IPSLcl RotationSLcl RotationSSA+D�D�DZ�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIϬ-PSManipulationModeSenumSSI2�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDo�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI5�:PSLocalTranslationRefVisibilitySboolSSIu�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI<�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIƯ8PSReferentialSizeSdoubleSNumberSD(@	�5PSDefaultKeyingGroupSintSIntegerSIJ�3PSDefaultKeyingGroupEnumSenumSSI}�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI&�-PSShowTrajectoriesSboolSSIV�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ʱShadingCY�CullingS
CullingOff�,ModelL(s�9SRightCheekModelSLimbNodeQ�VersionI�չProperties70��+PSRotationActiveSboolSSIٲ(PSInheritTypeSenumSSI.�GPS
ScalingMaxSVector3DSVectorSDDDt�8PSDefaultAttributeIndexSintSIntegerSIѳOPSLcl TranslationSLcl TranslationSSA+D-��D�V�
@D�]�@(�IPSLcl RotationSLcl RotationSSA+DDD{�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIS�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI˵-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIV�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI׶3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI]�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@*�5PSDefaultKeyingGroupSintSIntegerSIk�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIָ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIG�-PSShowTrajectoriesSboolSSIw�"PSliwSBoolSSAUIȹCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff>�.ModelL0x�9SRightNostrilModelSLimbNodet�VersionI���Properties70ƺ+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIQ�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+Dף��D`@D`�,"@K�IPSLcl RotationSLcl RotationSSA+DDD��EPSVisibility InheritanceSVisibility InheritanceSSIؼ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIv�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI1�5PSRotationLimitsVisibilitySboolSSIy�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI9�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIĿ6PSGeometricCenterVisibilitySboolSSI
�8PSReferentialSizeSdoubleSNumberSD(@M�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI/�(PSCullingModeSenumSSIj�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY1�CullingS
CullingOffb�/ModelL8}�9SRightLipUpperModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI �(PSInheritTypeSenumSSIu�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D�3��D��W�D@i�"@o�IPSLcl RotationSLcl RotationSSA+DDD��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI7�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIU�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI]�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI.�8PSReferentialSizeSdoubleSNumberSD(@q�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIS�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@2�ShadingCYU�CullingS
CullingOff��/ModelL@��9SRightShoulderModelSLimbNode��VersionI���Properties70+�HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc�d�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD5�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D����D`�)6@D@
M����IPSLcl RotationSLcl RotationSSA+D�l9'�D@��)�D ݶ �<�EPSVisibility InheritanceSVisibility InheritanceSSIv�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDQ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIW�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIb�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI,�3PSDefaultKeyingGroupEnumSenumSSI_�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI8�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffQ�*ModelLH��9SRightArmModelSLimbNode1�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSId�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D��$@D �\0�D`��վ^�IPSLcl RotationSLcl RotationSSA+D`M#@@D�D7@DJ�J@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI&�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSID�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI
�3PSRotationAxisVisibilitySboolSSIL�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@`�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIB�(PSCullingModeSenumSSI}�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@!�ShadingCYD�CullingS
CullingOff��.ModelLP��9SRightForeArmModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?R�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD#�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D`�W9�D �<�?D`,�����IPSLcl RotationSLcl RotationSSA+D�DO@D \QZ@D�k�G@*�EPSVisibility InheritanceSVisibility InheritanceSSId�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD?�/PSSetPreferedAngleSActionSSIz�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIE�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIP�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIM�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI&�"PSliwSBoolSSAUIw�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��+ModelLX��9SRightHandModelSLimbNode �VersionI���Properties70r�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D@V�D�m7�D��0�J�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI"�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD_�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI%�:PSLocalTranslationRefVisibilitySboolSSIe�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI,�9PSHierarchicalCenterVisibilitySboolSSIp�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI:�3PSDefaultKeyingGroupEnumSenumSSIm�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIF�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOfff�1ModelL`��9SRightHandPinky1ModelSLimbNodeF�VersionI� �Properties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q����+PSRotationActiveSboolSSI$�(PSInheritTypeSenumSSIy�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D����D�K�ɿD�ۚ�s�IPSLcl RotationSLcl RotationSSA+D�e�?�D`��D`��E@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI;�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIY�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI"�3PSRotationAxisVisibilitySboolSSIa�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI2�8PSReferentialSizeSdoubleSNumberSD(@u�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI!�*PS
TransformableSboolSSIW�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@6�ShadingCYY�CullingS
CullingOff��1ModelL`�*:SRightHandPinky2ModelSLimbNode��VersionI���Properties701�HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?j�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD;�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���D�(���D`����IPSLcl RotationSLcl RotationSSA+D�!�!�D��=@D�*�J@B�EPSVisibility InheritanceSVisibility InheritanceSSI|�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDW�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI]�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI$�9PSHierarchicalCenterVisibilitySboolSSIh�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI2�3PSDefaultKeyingGroupEnumSenumSSIe�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI>�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff1ModelLh�*:SRightHandPinky3ModelSLimbNode>�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDa�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�8$�D�V��D �@��IPSLcl RotationSLcl RotationSSA+D@�� �D`I[@D@��H@h�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI@UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD}/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIC:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIJ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIX3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI4-PSShowTrajectoriesSboolSSId"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�
0ModelLp�*:SRightHandRing1ModelSLimbNodecVersionI�=
Properties70�HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�+PSRotationActiveSboolSSIA(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI9OPSLcl TranslationSLcl TranslationSSA+D�H=�D js�?D �m￐IPSLcl RotationSLcl RotationSSA+D "��D@�{�D��H@�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSIX-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI3	-PSPivotsVisibilitySenumSSIv	5PSRotationLimitsVisibilitySboolSSI�	:PSLocalTranslationRefVisibilitySboolSSI�	2PSRotationRefVisibilitySboolSSI?
3PSRotationAxisVisibilitySboolSSI~
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI	6PSGeometricCenterVisibilitySboolSSIO8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSI>*PS
TransformableSboolSSIt(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI0
CPSLimbLength 1SNumberSSAUD�?DDY@S
ShadingCYv
CullingS
CullingOff�0ModelLx�*:SRightHandRing2ModelSLimbNode�
VersionI��Properties70MHPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDW8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D�'�D ښ��D`K�߿IPSLcl RotationSLcl RotationSSA+D%�
�D���?D@�K@^EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI6UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDs/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI9:PSLocalTranslationRefVisibilitySboolSSIy2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI@9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@
5PSDefaultKeyingGroupSintSIntegerSIN3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI*-PSShowTrajectoriesSboolSSIZ"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff#0ModelL��*:SRightHandRing3ModelSLimbNodeYVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI6GPS
ScalingMaxSVector3DSVectorSDDD|8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@���D�
��D��ݿ0IPSLcl RotationSLcl RotationSSA+D@�.�D����?D�%6@@�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�&2ModelL��*:SRightHandMiddle1ModelSLimbNode�VersionI�Z&Properties70�HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�(+PSRotationActiveSboolSSI^(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIV OPSLcl TranslationSLcl TranslationSSA+D�QB�D<��?D@��?� IPSLcl RotationSLcl RotationSSA+D`g3@D���%�D`@SG@!EPSVisibility InheritanceSVisibility InheritanceSSI:!,PS	MultiTakeSintSIntegerSIu!-PSManipulationModeSenumSSI�!UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD"/PSSetPreferedAngleSActionSSIP"-PSPivotsVisibilitySenumSSI�"5PSRotationLimitsVisibilitySboolSSI�":PSLocalTranslationRefVisibilitySboolSSI#2PSRotationRefVisibilitySboolSSI\#3PSRotationAxisVisibilitySboolSSI�#1PSScalingRefVisibilitySboolSSI�#9PSHierarchicalCenterVisibilitySboolSSI&$6PSGeometricCenterVisibilitySboolSSIl$8PSReferentialSizeSdoubleSNumberSD(@�$5PSDefaultKeyingGroupSintSIntegerSI�$3PSDefaultKeyingGroupEnumSenumSSI#%%PSPickableSboolSSI[%*PS
TransformableSboolSSI�%(PSCullingModeSenumSSI�%-PSShowTrajectoriesSboolSSI�%"PSliwSBoolSSAUIM&CPSLimbLength 1SNumberSSAUD�?DDY@p&ShadingCY�&CullingS
CullingOff/2ModelL��*:SRightHandMiddle2ModelSLimbNode�&VersionI��.Properties70l'HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9��'+PSRotationActiveSboolSSI�'(PSInheritTypeSenumSSI0(GPS
ScalingMaxSVector3DSVectorSDDDv(8PSDefaultAttributeIndexSintSIntegerSI�(OPSLcl TranslationSLcl TranslationSSA+D`��D���?D@��?*)IPSLcl RotationSLcl RotationSSA+D`Ռ�?D ���D��<@})EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSIU*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI+5PSRotationLimitsVisibilitySboolSSIX+:PSLocalTranslationRefVisibilitySboolSSI�+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI,1PSScalingRefVisibilitySboolSSI_,9PSHierarchicalCenterVisibilitySboolSSI�,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@,-5PSDefaultKeyingGroupSintSIntegerSIm-3PSDefaultKeyingGroupEnumSenumSSI�-%PSPickableSboolSSI�-*PS
TransformableSboolSSI.(PSCullingModeSenumSSII.-PSShowTrajectoriesSboolSSIy."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY/CullingS
CullingOffD72ModelL��*:SRightHandMiddle3ModelSLimbNodez/VersionI��6Properties70�/+PSRotationActiveSboolSSI0(PSInheritTypeSenumSSIW0GPS
ScalingMaxSVector3DSVectorSDDD�08PSDefaultAttributeIndexSintSIntegerSI�0OPSLcl TranslationSLcl TranslationSSA+D >u
�D@�&�D�I��?Q1IPSLcl RotationSLcl RotationSSA+D �W�?D� S��D`�;@�1EPSVisibility InheritanceSVisibility InheritanceSSI�1,PS	MultiTakeSintSIntegerSI2-PSManipulationModeSenumSSI|2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI�2-PSPivotsVisibilitySenumSSI735PSRotationLimitsVisibilitySboolSSI3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI43PSRotationAxisVisibilitySboolSSI?41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI�46PSGeometricCenterVisibilitySboolSSI58PSReferentialSizeSdoubleSNumberSD(@S55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI�5%PSPickableSboolSSI�5*PS
TransformableSboolSSI56(PSCullingModeSenumSSIp6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI�6CPSLimbLength 1SNumberSSAUD�?DDY@7ShadingCY77CullingS
CullingOff�?1ModelL��*:SRightHandIndex1ModelSLimbNode�7VersionI�z?Properties708HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��H8+PSRotationActiveSboolSSI~8(PSInheritTypeSenumSSI�8GPS
ScalingMaxSVector3DSVectorSDDD98PSDefaultAttributeIndexSintSIntegerSIv9OPSLcl TranslationSLcl TranslationSSA+D�e��D�yҿ�D��y@�9IPSLcl RotationSLcl RotationSSA+D(.@D`�,�D �@5@ :EPSVisibility InheritanceSVisibility InheritanceSSIZ:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI�:UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD5;/PSSetPreferedAngleSActionSSIp;-PSPivotsVisibilitySenumSSI�;5PSRotationLimitsVisibilitySboolSSI�;:PSLocalTranslationRefVisibilitySboolSSI;<2PSRotationRefVisibilitySboolSSI|<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI=9PSHierarchicalCenterVisibilitySboolSSIF=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@�=5PSDefaultKeyingGroupSintSIntegerSI>3PSDefaultKeyingGroupEnumSenumSSIC>%PSPickableSboolSSI{>*PS
TransformableSboolSSI�>(PSCullingModeSenumSSI�>-PSShowTrajectoriesSboolSSI?"PSliwSBoolSSAUIm?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY�?CullingS
CullingOff<H1ModelL��*:SRightHandIndex2ModelSLimbNode@VersionI��GProperties70�@HPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\��@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSIOAGPS
ScalingMaxSVector3DSVectorSDDD�A8PSDefaultAttributeIndexSintSIntegerSI�AOPSLcl TranslationSLcl TranslationSSA+D���
�D���?D�!C�?IBIPSLcl RotationSLcl RotationSSA+D��@D� ��?D@݀)@�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSIC-PSManipulationModeSenumSSItCUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI/D5PSRotationLimitsVisibilitySboolSSIwD:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSI�D3PSRotationAxisVisibilitySboolSSI7E1PSScalingRefVisibilitySboolSSI~E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSIF8PSReferentialSizeSdoubleSNumberSD(@KF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSI�F*PS
TransformableSboolSSI-G(PSCullingModeSenumSSIhG-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY/HCullingS
CullingOffbP1ModelL��*:SRightHandIndex3ModelSLimbNode�HVersionI�PProperties70�H+PSRotationActiveSboolSSI I(PSInheritTypeSenumSSIuIGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSIJOPSLcl TranslationSLcl TranslationSSA+D�.�D��߿D@���?oJIPSLcl RotationSLcl RotationSSA+D �@D�Ʃ?D��50@�JEPSVisibility InheritanceSVisibility InheritanceSSI�J,PS	MultiTakeSintSIntegerSI7K-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�K/PSSetPreferedAngleSActionSSIL-PSPivotsVisibilitySenumSSIUL5PSRotationLimitsVisibilitySboolSSI�L:PSLocalTranslationRefVisibilitySboolSSI�L2PSRotationRefVisibilitySboolSSIM3PSRotationAxisVisibilitySboolSSI]M1PSScalingRefVisibilitySboolSSI�M9PSHierarchicalCenterVisibilitySboolSSI�M6PSGeometricCenterVisibilitySboolSSI.N8PSReferentialSizeSdoubleSNumberSD(@qN5PSDefaultKeyingGroupSintSIntegerSI�N3PSDefaultKeyingGroupEnumSenumSSI�N%PSPickableSboolSSIO*PS
TransformableSboolSSISO(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI�O"PSliwSBoolSSAUIPCPSLimbLength 1SNumberSSAUD�?DDY@2PShadingCYUPCullingS
CullingOff�X1ModelL��*:SRightHandThumb1ModelSLimbNode�PVersionI��XProperties70-QHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D��*�fQ+PSRotationActiveSboolSSI�Q(PSInheritTypeSenumSSI�QGPS
ScalingMaxSVector3DSVectorSDDD7R8PSDefaultAttributeIndexSintSIntegerSI�ROPSLcl TranslationSLcl TranslationSSA+D�~��D����D���@�RIPSLcl RotationSLcl RotationSSA+D �$�D M�@D�&V @>SEPSVisibility InheritanceSVisibility InheritanceSSIxS,PS	MultiTakeSintSIntegerSI�S-PSManipulationModeSenumSSITUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDST/PSSetPreferedAngleSActionSSI�T-PSPivotsVisibilitySenumSSI�T5PSRotationLimitsVisibilitySboolSSIU:PSLocalTranslationRefVisibilitySboolSSIYU2PSRotationRefVisibilitySboolSSI�U3PSRotationAxisVisibilitySboolSSI�U1PSScalingRefVisibilitySboolSSI V9PSHierarchicalCenterVisibilitySboolSSIdV6PSGeometricCenterVisibilitySboolSSI�V8PSReferentialSizeSdoubleSNumberSD(@�V5PSDefaultKeyingGroupSintSIntegerSI.W3PSDefaultKeyingGroupEnumSenumSSIaW%PSPickableSboolSSI�W*PS
TransformableSboolSSI�W(PSCullingModeSenumSSI
X-PSShowTrajectoriesSboolSSI:X"PSliwSBoolSSAUI�XCPSLimbLength 1SNumberSSAUD�?DDY@�XShadingCY�XCullingS
CullingOffa1ModelLhȳ:SRightHandThumb2ModelSLimbNode:YVersionI��`Properties70�Y+PSRotationActiveSboolSSI�Y(PSInheritTypeSenumSSIZGPS
ScalingMaxSVector3DSVectorSDDD]Z8PSDefaultAttributeIndexSintSIntegerSI�ZOPSLcl TranslationSLcl TranslationSSA+D`�2��D`���D��@[IPSLcl RotationSLcl RotationSSA+D9��?D`�U,�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�i1ModelLpͳ:SRightHandThumb3ModelSLimbNode`aVersionI�:iProperties70�aHPSPreRotationSVector3DSVectorSD$�rOϸ>DDb+PSRotationActiveSboolSSI>b(PSInheritTypeSenumSSI�bGPS
ScalingMaxSVector3DSVectorSDDD�b8PSDefaultAttributeIndexSintSIntegerSI6cOPSLcl TranslationSLcl TranslationSSA+D@5^�D �r�D@��@�cIPSLcl RotationSLcl RotationSSA+D`Q+@D�h0�D ����cEPSVisibility InheritanceSVisibility InheritanceSSId,PS	MultiTakeSintSIntegerSIUd-PSManipulationModeSenumSSI�dUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�d/PSSetPreferedAngleSActionSSI0e-PSPivotsVisibilitySenumSSIse5PSRotationLimitsVisibilitySboolSSI�e:PSLocalTranslationRefVisibilitySboolSSI�e2PSRotationRefVisibilitySboolSSI<f3PSRotationAxisVisibilitySboolSSI{f1PSScalingRefVisibilitySboolSSI�f9PSHierarchicalCenterVisibilitySboolSSIg6PSGeometricCenterVisibilitySboolSSILg8PSReferentialSizeSdoubleSNumberSD(@�g5PSDefaultKeyingGroupSintSIntegerSI�g3PSDefaultKeyingGroupEnumSenumSSIh%PSPickableSboolSSI;h*PS
TransformableSboolSSIqh(PSCullingModeSenumSSI�h-PSShowTrajectoriesSboolSSI�h"PSliwSBoolSSAUI-iCPSLimbLength 1SNumberSSAUD�?DDY@PiShadingCYsiCullingS
CullingOff�q.ModelLxҳ:SLeftShoulderModelSLimbNode�iVersionI��qProperties70HjHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9��j+PSRotationActiveSboolSSI�j(PSInheritTypeSenumSSIkGPS
ScalingMaxSVector3DSVectorSDDDRk8PSDefaultAttributeIndexSintSIntegerSI�kOPSLcl TranslationSLcl TranslationSSA+D��@D@�)6@D@
M��lIPSLcl RotationSLcl RotationSSA+D�?Q&@D �$"@D���ؿYlEPSVisibility InheritanceSVisibility InheritanceSSI�l,PS	MultiTakeSintSIntegerSI�l-PSManipulationModeSenumSSI1mUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDnm/PSSetPreferedAngleSActionSSI�m-PSPivotsVisibilitySenumSSI�m5PSRotationLimitsVisibilitySboolSSI4n:PSLocalTranslationRefVisibilitySboolSSItn2PSRotationRefVisibilitySboolSSI�n3PSRotationAxisVisibilitySboolSSI�n1PSScalingRefVisibilitySboolSSI;o9PSHierarchicalCenterVisibilitySboolSSIo6PSGeometricCenterVisibilitySboolSSI�o8PSReferentialSizeSdoubleSNumberSD(@p5PSDefaultKeyingGroupSintSIntegerSIIp3PSDefaultKeyingGroupEnumSenumSSI|p%PSPickableSboolSSI�p*PS
TransformableSboolSSI�p(PSCullingModeSenumSSI%q-PSShowTrajectoriesSboolSSIUq"PSliwSBoolSSAUI�qCPSLimbLength 1SNumberSSAUD�?DDY@�qShadingCY�qCullingS
CullingOffmz)ModelL�׳:SLeftArmModelSLimbNodeMrVersionI�'zProperties70�rHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@�r+PSRotationActiveSboolSSI+s(PSInheritTypeSenumSSI�sGPS
ScalingMaxSVector3DSVectorSDDD�s8PSDefaultAttributeIndexSintSIntegerSI#tOPSLcl TranslationSLcl TranslationSSA+D��$@D�3~>DhqT�ztIPSLcl RotationSLcl RotationSSA+D�XK@D��4@D`ZG��tEPSVisibility InheritanceSVisibility InheritanceSSIu,PS	MultiTakeSintSIntegerSIBu-PSManipulationModeSenumSSI�uUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�u/PSSetPreferedAngleSActionSSIv-PSPivotsVisibilitySenumSSI`v5PSRotationLimitsVisibilitySboolSSI�v:PSLocalTranslationRefVisibilitySboolSSI�v2PSRotationRefVisibilitySboolSSI)w3PSRotationAxisVisibilitySboolSSIhw1PSScalingRefVisibilitySboolSSI�w9PSHierarchicalCenterVisibilitySboolSSI�w6PSGeometricCenterVisibilitySboolSSI9x8PSReferentialSizeSdoubleSNumberSD(@|x5PSDefaultKeyingGroupSintSIntegerSI�x3PSDefaultKeyingGroupEnumSenumSSI�x%PSPickableSboolSSI(y*PS
TransformableSboolSSI^y(PSCullingModeSenumSSI�y-PSShowTrajectoriesSboolSSI�y"PSliwSBoolSSAUIzCPSLimbLength 1SNumberSSAUD�?DDY@=zShadingCY`zCullingS
CullingOff�-ModelL�ܳ:SLeftForeArmModelSLimbNode�zVersionI���Properties704{HPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?m{+PSRotationActiveSboolSSI�{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDD>|8PSDefaultAttributeIndexSintSIntegerSI�|OPSLcl TranslationSLcl TranslationSSA+D��g9@DеF�DhqG>�|IPSLcl RotationSLcl RotationSSA+D ߁<�D U�Q�D`��M@E}EPSVisibility InheritanceSVisibility InheritanceSSI},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDZ~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI :PSLocalTranslationRefVisibilitySboolSSI`2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI'�9PSHierarchicalCenterVisibilitySboolSSIk�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI5�3PSDefaultKeyingGroupEnumSenumSSIh�%PSPickableSboolSSI��*PS
TransformableSboolSSIց(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIA�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY؂CullingS
CullingOff�*ModelL��:SLeftHandModelSLimbNode:�VersionI���Properties70��+PSRotationActiveSboolSSIƒ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD]�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���8@D@I�D 	>�IPSLcl RotationSLcl RotationSSA+D��5&�D�cB+@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�0ModelL��:SLeftHandPinky1ModelSLimbNode_�VersionI�9�Properties70΋HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@Db�Z~Q���+PSRotationActiveSboolSSI=�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD،8PSDefaultAttributeIndexSintSIntegerSI5�OPSLcl TranslationSLcl TranslationSSA+D �C@D�S
�D@�	���IPSLcl RotationSLcl RotationSSA+D`Y�1�D`:�&@D��N�ߍEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIT�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI/�-PSPivotsVisibilitySenumSSIr�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI;�3PSRotationAxisVisibilitySboolSSIz�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIK�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIϑ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI:�*PS
TransformableSboolSSIp�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIے"PSliwSBoolSSAUI,�CPSLimbLength 1SNumberSSAUD�?DDY@O�ShadingCYr�CullingS
CullingOff��0ModelL��:SLeftHandPinky2ModelSLimbNodeړVersionI���Properties70I�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI
�GPS
ScalingMaxSVector3DSVectorSDDDS�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���@D@�Ji�D`�¿�IPSLcl RotationSLcl RotationSSA+D���#@D��	@D�DP�Z�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIϖ-PSManipulationModeSenumSSI2�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDo�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI5�:PSLocalTranslationRefVisibilitySboolSSIu�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI<�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIƙ8PSReferentialSizeSdoubleSNumberSD(@	�5PSDefaultKeyingGroupSintSIntegerSIJ�3PSDefaultKeyingGroupEnumSenumSSI}�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI&�-PSShowTrajectoriesSboolSSIV�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ʛShadingCY�CullingS
CullingOff�0ModelL��:SLeftHandPinky3ModelSLimbNodeU�VersionI�٣Properties70��+PSRotationActiveSboolSSIݜ(PSInheritTypeSenumSSI2�GPS
ScalingMaxSVector3DSVectorSDDDx�8PSDefaultAttributeIndexSintSIntegerSI՝OPSLcl TranslationSLcl TranslationSSA+D@�s@D���D�D�x�>,�IPSLcl RotationSLcl RotationSSA+D���"@D�t�@D�MM��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIW�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIϟ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIZ�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI۠3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIa�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@.�5PSDefaultKeyingGroupSintSIntegerSIo�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIڢ*PS
TransformableSboolSSI�(PSCullingModeSenumSSIK�-PSShowTrajectoriesSboolSSI{�"PSliwSBoolSSAUỊCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff��/ModelL���:SLeftHandRing1ModelSLimbNodey�VersionI�S�Properties70�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c�!�+PSRotationActiveSboolSSIW�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIO�OPSLcl TranslationSLcl TranslationSSA+D��@D�P�׿D EB򿦦IPSLcl RotationSLcl RotationSSA+D���D`h� @D`K�N���EPSVisibility InheritanceSVisibility InheritanceSSI3�,PS	MultiTakeSintSIntegerSIn�-PSManipulationModeSenumSSIѧUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSII�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIԨ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIU�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI۩9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIe�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIT�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIū-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIF�CPSLimbLength 1SNumberSSAUD�?DDY@i�ShadingCY��CullingS
CullingOff�/ModelL���:SLeftHandRing2ModelSLimbNode�VersionI�ʹProperties70b�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{���+PSRotationActiveSboolSSIѭ(PSInheritTypeSenumSSI&�GPS
ScalingMaxSVector3DSVectorSDDDl�8PSDefaultAttributeIndexSintSIntegerSIɮOPSLcl TranslationSLcl TranslationSSA+D A@D�Ua�D`;�̿ �IPSLcl RotationSLcl RotationSSA+D��	
@D��@D` �P�s�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIK�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIð-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIN�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIϱ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIU�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI߲8PSReferentialSizeSdoubleSNumberSD(@"�5PSDefaultKeyingGroupSintSIntegerSIc�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIγ*PS
TransformableSboolSSI�(PSCullingModeSenumSSI?�-PSShowTrajectoriesSboolSSIo�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff7�/ModelL���:SLeftHandRing3ModelSLimbNodem�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIJ�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D��@D�P>D�����D�IPSLcl RotationSLcl RotationSSA+D��R@D���?D`!�D���EPSVisibility InheritanceSVisibility InheritanceSSIѷ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIo�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI*�5PSRotationLimitsVisibilitySboolSSIr�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI2�1PSScalingRefVisibilitySboolSSIy�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@F�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI(�(PSCullingModeSenumSSIc�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY*�CullingS
CullingOff��1ModelL ,^:SLeftHandMiddle1ModelSLimbNode��VersionI�m�Properties70�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--�;�+PSRotationActiveSboolSSIq�(PSInheritTypeSenumSSIƾGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIi�OPSLcl TranslationSLcl TranslationSSA+D�h@D`5!ȿD�9�?��IPSLcl RotationSLcl RotationSSA+D`gƿD@`&@D�j�O��EPSVisibility InheritanceSVisibility InheritanceSSIM�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD(�/PSSetPreferedAngleSActionSSIc�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI.�2PSRotationRefVisibilitySboolSSIo�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI9�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI6�%PSPickableSboolSSIn�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI`�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff/�1ModelL(1^:SLeftHandMiddle2ModelSLimbNode�VersionI���Properties70~�HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIB�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D Q�@D@+s??D��ǥ�<�IPSLcl RotationSLcl RotationSSA+D`r�D��N�D@
�F���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIg�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI"�5PSRotationLimitsVisibilitySboolSSIj�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI*�1PSScalingRefVisibilitySboolSSIq�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@>�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI �(PSCullingModeSenumSSI[�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY"�CullingS
CullingOffU�1ModelL06^:SLeftHandMiddle3ModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIh�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D �+@D �p��D�u-�>b�IPSLcl RotationSLcl RotationSSA+D�M�D`��޿D@qE���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI*�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIH�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIP�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI!�8PSReferentialSizeSdoubleSNumberSD(@d�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIF�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@%�ShadingCYH�CullingS
CullingOff��0ModelL8;^:SLeftHandIndex1ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD)�t�c�D���PNk"�Dʴ	A��X�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD)�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��@D���D�B
@��IPSLcl RotationSLcl RotationSSA+D@��@D�ba1@D�^H�0�EPSVisibility InheritanceSVisibility InheritanceSSIj�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDE�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIK�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIV�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI �3PSDefaultKeyingGroupEnumSenumSSIS�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI,�"PSliwSBoolSSAUI}�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffK�0ModelL@@^:SLeftHandIndex2ModelSLimbNode+�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI	�(PSInheritTypeSenumSSI^�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D�{�@D`�ft?D`�Z�?X�IPSLcl RotationSLcl RotationSSA+D��<�D�m��D�`5A���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI �-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI>�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIF�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@Z�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI<�(PSCullingModeSenumSSIw�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY>�CullingS
CullingOffp�0ModelLHE^:SLeftHandIndex3ModelSLimbNode��VersionI�*�Properties70��+PSRotationActiveSboolSSI.�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI&�OPSLcl TranslationSLcl TranslationSSA+D��_@D 
���D@Ԓվ}�IPSLcl RotationSLcl RotationSSA+D�{��D��n�D@��B���EPSVisibility InheritanceSVisibility InheritanceSSI
�,PS	MultiTakeSintSIntegerSIE�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI �-PSPivotsVisibilitySenumSSIc�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI,�3PSRotationAxisVisibilitySboolSSIk�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI<�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI+�*PS
TransformableSboolSSIa�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@@�ShadingCYc�CullingS
CullingOff��0ModelLPJ^:SLeftHandThumb1ModelSLimbNode��VersionI���Properties70:�HPSPreRotationSVector3DSVectorSDD��t[��?D2��*�s�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDD�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D���?D���D��l@��IPSLcl RotationSLcl RotationSSA+D�
�ϿD e�$@D�9I5�K�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI#�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD`�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI&�:PSLocalTranslationRefVisibilitySboolSSIf�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI-�9PSHierarchicalCenterVisibilitySboolSSIq�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI;�3PSDefaultKeyingGroupEnumSenumSSIn�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIG�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff0ModelLXO^:SLeftHandThumb2ModelSLimbNodeF�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI#�GPS
ScalingMaxSVector3DSVectorSDDDi�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D`�2�?D`���D`
�@�IPSLcl RotationSLcl RotationSSA+D9��?D�U,@D`���?p�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIH�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIK�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIR�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI`�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI<�-PSShowTrajectoriesSboolSSIl�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYCullingS
CullingOff�0ModelL`T^:SLeftHandThumb3ModelSLimbNodekVersionI�EProperties70�HPSPreRotationSVector3DSVectorSD��cܥ�>DD+PSRotationActiveSboolSSII(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIAOPSLcl TranslationSLcl TranslationSSA+D@5^@D �r�D@��@�IPSLcl RotationSLcl RotationSSA+D Q+@D��h0@D��@�EPSVisibility InheritanceSVisibility InheritanceSSI%,PS	MultiTakeSintSIntegerSI`-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSI;-PSPivotsVisibilitySenumSSI~5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSIG3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIW8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSIF*PS
TransformableSboolSSI|(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI8CPSLimbLength 1SNumberSSAUD�?DDY@[ShadingCY~CullingS
CullingOff�,ModelLhY^:SRightUpLegModelSLimbNode�VersionI�fProperties704	+PSRotationActiveSboolSSIj	(PSInheritTypeSenumSSI�	GPS
ScalingMaxSVector3DSVectorSDDD
8PSDefaultAttributeIndexSintSIntegerSIb
OPSLcl TranslationSLcl TranslationSSA+D@.�D �C�D�
IPSLcl RotationSLcl RotationSSA+D`4+@D��
,�D�b�@EPSVisibility InheritanceSVisibility InheritanceSSIF,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD!/PSSetPreferedAngleSActionSSI\-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI'
2PSRotationRefVisibilitySboolSSIh
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI26PSGeometricCenterVisibilitySboolSSIx8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI/%PSPickableSboolSSIg*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIYCPSLimbLength 1SNumberSSAUD�?DDY@|ShadingCY�CullingS
CullingOff�*ModelLp^^:SRightLegModelSLimbNodeVersionI��Properties70S+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD$8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D`�p�D@�tD�D@�e���IPSLcl RotationSLcl RotationSSA+DQ�;@DѿD��s#�+EPSVisibility InheritanceSVisibility InheritanceSSIe,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD@/PSSetPreferedAngleSActionSSI{-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIF2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI
9PSHierarchicalCenterVisibilitySboolSSIQ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIN%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI'"PSliwSBoolSSAUIxCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff� +ModelLxc^:SRightFootModelSLimbNode!VersionI�� Properties70s+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDD8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D`V}�D@e(E�D |��IPSLcl RotationSLcl RotationSSA+D@L%@D�:@D��6�?KEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI#UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD`/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI&:PSLocalTranslationRefVisibilitySboolSSIf2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI-9PSHierarchicalCenterVisibilitySboolSSIq6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI;3PSDefaultKeyingGroupEnumSenumSSIn%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI -PSShowTrajectoriesSboolSSIG "PSliwSBoolSSAUI� CPSLimbLength 1SNumberSSAUD�?DDY@� ShadingCY� CullingS
CullingOff)+ModelLx�:SRightToesModelSLimbNodeA!VersionI��(Properties70�!+PSRotationActiveSboolSSI�!(PSInheritTypeSenumSSI"GPS
ScalingMaxSVector3DSVectorSDDDd"8PSDefaultAttributeIndexSintSIntegerSI�"OPSLcl TranslationSLcl TranslationSSA+D�Y��D�TD�D`�-@#IPSLcl RotationSLcl RotationSSA+D���@D���D����k#EPSVisibility InheritanceSVisibility InheritanceSSI�#,PS	MultiTakeSintSIntegerSI�#-PSManipulationModeSenumSSIC$UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�$/PSSetPreferedAngleSActionSSI�$-PSPivotsVisibilitySenumSSI�$5PSRotationLimitsVisibilitySboolSSIF%:PSLocalTranslationRefVisibilitySboolSSI�%2PSRotationRefVisibilitySboolSSI�%3PSRotationAxisVisibilitySboolSSI&1PSScalingRefVisibilitySboolSSIM&9PSHierarchicalCenterVisibilitySboolSSI�&6PSGeometricCenterVisibilitySboolSSI�&8PSReferentialSizeSdoubleSNumberSD(@'5PSDefaultKeyingGroupSintSIntegerSI['3PSDefaultKeyingGroupEnumSenumSSI�'%PSPickableSboolSSI�'*PS
TransformableSboolSSI�'(PSCullingModeSenumSSI7(-PSShowTrajectoriesSboolSSIg("PSliwSBoolSSAUI�(CPSLimbLength 1SNumberSSAUD�?DDY@�(ShadingCY�(CullingS
CullingOff+1+ModelL�$�:SLeftUpLegModelSLimbNodea)VersionI��0Properties70�)+PSRotationActiveSboolSSI�)(PSInheritTypeSenumSSI>*GPS
ScalingMaxSVector3DSVectorSDDD�*8PSDefaultAttributeIndexSintSIntegerSI�*OPSLcl TranslationSLcl TranslationSSA+D`.@D��C�D@=8+IPSLcl RotationSLcl RotationSSA+D��I�D�I��D��:@�+EPSVisibility InheritanceSVisibility InheritanceSSI�+,PS	MultiTakeSintSIntegerSI,-PSManipulationModeSenumSSIc,UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�,/PSSetPreferedAngleSActionSSI�,-PSPivotsVisibilitySenumSSI-5PSRotationLimitsVisibilitySboolSSIf-:PSLocalTranslationRefVisibilitySboolSSI�-2PSRotationRefVisibilitySboolSSI�-3PSRotationAxisVisibilitySboolSSI&.1PSScalingRefVisibilitySboolSSIm.9PSHierarchicalCenterVisibilitySboolSSI�.6PSGeometricCenterVisibilitySboolSSI�.8PSReferentialSizeSdoubleSNumberSD(@:/5PSDefaultKeyingGroupSintSIntegerSI{/3PSDefaultKeyingGroupEnumSenumSSI�/%PSPickableSboolSSI�/*PS
TransformableSboolSSI0(PSCullingModeSenumSSIW0-PSShowTrajectoriesSboolSSI�0"PSliwSBoolSSAUI�0CPSLimbLength 1SNumberSSAUD�?DDY@�0ShadingCY1CullingS
CullingOffI9)ModelL�)�:SLeftLegModelSLimbNode1VersionI�9Properties70�1+PSRotationActiveSboolSSI2(PSInheritTypeSenumSSI\2GPS
ScalingMaxSVector3DSVectorSDDD�28PSDefaultAttributeIndexSintSIntegerSI�2OPSLcl TranslationSLcl TranslationSSA+D�p@D �tD�D@�e��V3IPSLcl RotationSLcl RotationSSA+D��3;@D T�@D�Ed
��3EPSVisibility InheritanceSVisibility InheritanceSSI�3,PS	MultiTakeSintSIntegerSI4-PSManipulationModeSenumSSI�4UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�4/PSSetPreferedAngleSActionSSI�4-PSPivotsVisibilitySenumSSI<55PSRotationLimitsVisibilitySboolSSI�5:PSLocalTranslationRefVisibilitySboolSSI�52PSRotationRefVisibilitySboolSSI63PSRotationAxisVisibilitySboolSSID61PSScalingRefVisibilitySboolSSI�69PSHierarchicalCenterVisibilitySboolSSI�66PSGeometricCenterVisibilitySboolSSI78PSReferentialSizeSdoubleSNumberSD(@X75PSDefaultKeyingGroupSintSIntegerSI�73PSDefaultKeyingGroupEnumSenumSSI�7%PSPickableSboolSSI8*PS
TransformableSboolSSI:8(PSCullingModeSenumSSIu8-PSShowTrajectoriesSboolSSI�8"PSliwSBoolSSAUI�8CPSLimbLength 1SNumberSSAUD�?DDY@9ShadingCY<9CullingS
CullingOffhA*ModelL�.�:SLeftFootModelSLimbNode�9VersionI�"AProperties70�9+PSRotationActiveSboolSSI&:(PSInheritTypeSenumSSI{:GPS
ScalingMaxSVector3DSVectorSDDD�:8PSDefaultAttributeIndexSintSIntegerSI;OPSLcl TranslationSLcl TranslationSSA+D`V}�?D@e(E�D |�u;IPSLcl RotationSLcl RotationSSA+D���)�Dd�@D�Q8@�;EPSVisibility InheritanceSVisibility InheritanceSSI<,PS	MultiTakeSintSIntegerSI=<-PSManipulationModeSenumSSI�<UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�</PSSetPreferedAngleSActionSSI=-PSPivotsVisibilitySenumSSI[=5PSRotationLimitsVisibilitySboolSSI�=:PSLocalTranslationRefVisibilitySboolSSI�=2PSRotationRefVisibilitySboolSSI$>3PSRotationAxisVisibilitySboolSSIc>1PSScalingRefVisibilitySboolSSI�>9PSHierarchicalCenterVisibilitySboolSSI�>6PSGeometricCenterVisibilitySboolSSI4?8PSReferentialSizeSdoubleSNumberSD(@w?5PSDefaultKeyingGroupSintSIntegerSI�?3PSDefaultKeyingGroupEnumSenumSSI�?%PSPickableSboolSSI#@*PS
TransformableSboolSSIY@(PSCullingModeSenumSSI�@-PSShowTrajectoriesSboolSSI�@"PSliwSBoolSSAUIACPSLimbLength 1SNumberSSAUD�?DDY@8AShadingCY[ACullingS
CullingOff�I*ModelL�3�:SLeftToesModelSLimbNode�AVersionI�AIProperties70B+PSRotationActiveSboolSSIEB(PSInheritTypeSenumSSI�BGPS
ScalingMaxSVector3DSVectorSDDD�B8PSDefaultAttributeIndexSintSIntegerSI=COPSLcl TranslationSLcl TranslationSSA+D�Y��?D�TD�D��-@�CIPSLcl RotationSLcl RotationSSA+D`�(�D@#���D��?��CEPSVisibility InheritanceSVisibility InheritanceSSI!D,PS	MultiTakeSintSIntegerSI\D-PSManipulationModeSenumSSI�DUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�D/PSSetPreferedAngleSActionSSI7E-PSPivotsVisibilitySenumSSIzE5PSRotationLimitsVisibilitySboolSSI�E:PSLocalTranslationRefVisibilitySboolSSIF2PSRotationRefVisibilitySboolSSICF3PSRotationAxisVisibilitySboolSSI�F1PSScalingRefVisibilitySboolSSI�F9PSHierarchicalCenterVisibilitySboolSSI
G6PSGeometricCenterVisibilitySboolSSISG8PSReferentialSizeSdoubleSNumberSD(@�G5PSDefaultKeyingGroupSintSIntegerSI�G3PSDefaultKeyingGroupEnumSenumSSI
H%PSPickableSboolSSIBH*PS
TransformableSboolSSIxH(PSCullingModeSenumSSI�H-PSShowTrajectoriesSboolSSI�H"PSliwSBoolSSAUI4ICPSLimbLength 1SNumberSSAUD�?DDY@WIShadingCYzICullingS
CullingOffKJAnimationStackL��:S7_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1AnimStackSKProperties70CJ0PS
LocalStartSKTimeSTimeSL�NY^Q�J/PS	LocalStopSKTimeSTimeSL�T��q�J4PSReferenceStartSKTimeSTimeSL�NY^QK3PS
ReferenceStopSKTimeSTimeSL�T��qL,AnimationStackL�:SAvatar_TStanceAnimStackSLProperties70�K/PS	LocalStopSKTimeSTimeSLp6��5�K3PS
ReferenceStopSKTimeSTimeSLp6��5�NXAnimationLayerL`��9SE_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1:BaseAnimationAnimLayerS�NProperties70�LAPSColorSColorRGBSColorSD�������?DD�������?3M5PSBlendModeBypassS	ULongLongSSLmM,PS	MultiTakeSintSIntegerSI�M+PSmLayerIDSintSIntegerSI�M)PSMutedForSoloSboolSSIN*PS
MutedByParentSboolSSINN+PSLockedByParentSboolSSI�N5PSParentCollapseVisibilitySboolSSI�N"PSEmptySboolSSI�QUAnimationLayerL`?�9SB_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1:AnimLayer1AnimLayerS�QProperties70�OAPSColorSColorRGBSColorSD�������?DD�������?�O5PSBlendModeBypassS	ULongLongSSL0P,PS	MultiTakeSintSIntegerSIiP+PSmLayerIDSintSIntegerSI�P)PSMutedForSoloSboolSSI�P*PS
MutedByParentSboolSSIQ+PSLockedByParentSboolSSITQ5PSParentCollapseVisibilitySboolSSI�Q"PSEmptySboolSSICT7AnimationLayerL���9S$Avatar_TStance:AnimLayer1AnimLayerS6TProperties70XRAPSColorSColorRGBSColorSD�������?DD�������?�R5PSBlendModeBypassS	ULongLongSSL�R,PS	MultiTakeSintSIntegerSIS+PSmLayerIDSintSIntegerSIES)PSMutedForSoloSboolSSI}S*PS
MutedByParentSboolSSI�S+PSLockedByParentSboolSSI�S5PSParentCollapseVisibilitySboolSSI)T"PSEmptySboolSSI�V:AnimationLayerL�}�9S'Avatar_TStance:BaseAnimationAnimLayerS�VProperties70UAPSColorSColorRGBSColorSD�������?DD�������?CU5PSBlendModeBypassS	ULongLongSSL}U,PS	MultiTakeSintSIntegerSI�U+PSmLayerIDSintSIntegerSI�U)PSMutedForSoloSboolSSI%V*PS
MutedByParentSboolSSI^V+PSLockedByParentSboolSSI�V5PSParentCollapseVisibilitySboolSSI�V"PSEmptySboolSSI*X#AnimationCurveNodeL8��:STAnimCurveNodeSXProperties70qWPSdSCompoundSS�W'PSd|XSNumberSSAD�W'PSd|YSNumberSSADX'PSd|ZSNumberSSADiY#AnimationCurveNodeL`��:SRAnimCurveNodeS\YProperties70�XPSdSCompoundSS�X'PSd|XSNumberSSADY'PSd|YSNumberSSAD�OY'PSd|ZSNumberSSAD�Z#AnimationCurveNodeL�h�:STAnimCurveNodeS�ZProperties70�YPSdSCompoundSS$Z'PSd|XSNumberSSAD�
�<�YZ'PSd|YSNumberSSAD�lW@�Z'PSd|ZSNumberSSAD`����[#AnimationCurveNodeL�:SRAnimCurveNodeS�[Properties70.[PSdSCompoundSSc['PSd|XSNumberSSAD`�&@�['PSd|YSNumberSSAD`��?�['PSd|ZSNumberSSAD�V�&]#AnimationCurveNodeL���:STAnimCurveNodeS]Properties70m\PSdSCompoundSS�\'PSd|XSNumberSSAD��\'PSd|YSNumberSSAD�s"@]'PSd|ZSNumberSSAD�;�?e^#AnimationCurveNodeL��:SRAnimCurveNodeSX^Properties70�]PSdSCompoundSS�]'PSd|XSNumberSSAD�n�*@^'PSd|YSNumberSSAD��o@K^'PSd|ZSNumberSSAD@��@�_#AnimationCurveNodeL�:STAnimCurveNodeS�_Properties70�^PSdSCompoundSS _'PSd|XSNumberSSADU_'PSd|YSNumberSSADA0@�_'PSd|ZSNumberSSAD�2ſ�`#AnimationCurveNodeL�ʅ:SRAnimCurveNodeS�`Properties70*`PSdSCompoundSS_`'PSd|XSNumberSSAD��Q@�`'PSd|YSNumberSSAD�*/@�`'PSd|ZSNumberSSAD��=�"b#AnimationCurveNodeL81�:STAnimCurveNodeSbProperties70iaPSdSCompoundSS�a'PSd|XSNumberSSAD4��a'PSd|YSNumberSSAD`��9@b'PSd|ZSNumberSSAD <�	�ac#AnimationCurveNodeLp��:SRAnimCurveNodeSTcProperties70�bPSdSCompoundSS�b'PSd|XSNumberSSAD`O��c'PSd|YSNumberSSAD`���Gc'PSd|ZSNumberSSAD��w@�d#AnimationCurveNodeL���:STAnimCurveNodeS�dProperties70�cPSdSCompoundSSd'PSd|XSNumberSSAD�Qd'PSd|YSNumberSSAD 4� @�d'PSd|ZSNumberSSAD s�?�e#AnimationCurveNodeL0`�:SRAnimCurveNodeS�eProperties70&ePSdSCompoundSS[e'PSd|XSNumberSSAD����e'PSd|YSNumberSSAD ���?�e'PSd|ZSNumberSSAD���g#AnimationCurveNodeLX��:STAnimCurveNodeSgProperties70efPSdSCompoundSS�f'PSd|XSNumberSSAD෭@�f'PSd|YSNumberSSAD`#� @g'PSd|ZSNumberSSAD��+@]h#AnimationCurveNodeLhR�:SRAnimCurveNodeSPhProperties70�gPSdSCompoundSS�g'PSd|XSNumberSSADh'PSd|YSNumberSSAD�Ch'PSd|ZSNumberSSAD�i#AnimationCurveNodeL �:STAnimCurveNodeS�iProperties70�hPSdSCompoundSSi'PSd|XSNumberSSAD���Mi'PSd|YSNumberSSAD %� @�i'PSd|ZSNumberSSAD�+@�j#AnimationCurveNodeL���:SRAnimCurveNodeS�jProperties70"jPSdSCompoundSSWj'PSd|XSNumberSSAD�j'PSd|YSNumberSSAD��j'PSd|ZSNumberSSADl#AnimationCurveNodeL��:STAnimCurveNodeS
lProperties70akPSdSCompoundSS�k'PSd|XSNumberSSAD@��k'PSd|YSNumberSSAD@���?l'PSd|ZSNumberSSAD`)��?Ym#AnimationCurveNodeL @�:SRAnimCurveNodeSLmProperties70�lPSdSCompoundSS�l'PSd|XSNumberSSAD
m'PSd|YSNumberSSAD�?m'PSd|ZSNumberSSAD�n#AnimationCurveNodeLh�:STAnimCurveNodeS�nProperties70�mPSdSCompoundSSn'PSd|XSNumberSSAD@<In'PSd|YSNumberSSAD��K�~n'PSd|ZSNumberSSAD`'�?�o#AnimationCurveNodeL��:SRAnimCurveNodeS�oProperties70oPSdSCompoundSSSo'PSd|XSNumberSSAD�o'PSd|YSNumberSSAD��o'PSd|ZSNumberSSADq#AnimationCurveNodeL ��:STAnimCurveNodeS	qProperties70]pPSdSCompoundSS�p'PSd|XSNumberSSAD@<�p'PSd|YSNumberSSAD@����p'PSd|ZSNumberSSAD�}�@Ur#AnimationCurveNodeL��:SRAnimCurveNodeSHrProperties70�qPSdSCompoundSS�q'PSd|XSNumberSSADr'PSd|YSNumberSSAD�;r'PSd|ZSNumberSSAD�s#AnimationCurveNodeLX �:STAnimCurveNodeS�sProperties70�rPSdSCompoundSSs'PSd|XSNumberSSAD�"��?Es'PSd|YSNumberSSAD��Y�zs'PSd|ZSNumberSSAD��r @�t#AnimationCurveNodeL�<�:SRAnimCurveNodeS�tProperties70tPSdSCompoundSSOt'PSd|XSNumberSSAD�t'PSd|YSNumberSSAD��t'PSd|ZSNumberSSADv#AnimationCurveNodeL`��:STAnimCurveNodeSvProperties70YuPSdSCompoundSS�u'PSd|XSNumberSSAD@<�u'PSd|YSNumberSSAD��P��u'PSd|ZSNumberSSAD���@Qw#AnimationCurveNodeL�y�:SRAnimCurveNodeSDwProperties70�vPSdSCompoundSS�v'PSd|XSNumberSSADw'PSd|YSNumberSSAD�7w'PSd|ZSNumberSSAD�x#AnimationCurveNodeL��:STAnimCurveNodeS�xProperties70�wPSdSCompoundSSx'PSd|XSNumberSSAD�"���Ax'PSd|YSNumberSSAD��Y�vx'PSd|ZSNumberSSAD@�r @�y#AnimationCurveNodeL���:SRAnimCurveNodeS�yProperties70yPSdSCompoundSSKy'PSd|XSNumberSSAD�y'PSd|YSNumberSSAD��y'PSd|ZSNumberSSAD{#AnimationCurveNodeL0i�:STAnimCurveNodeS{Properties70UzPSdSCompoundSS�z'PSd|XSNumberSSAD��E
��z'PSd|YSNumberSSAD�����z'PSd|ZSNumberSSAD@�r@M|#AnimationCurveNodeL0��:SRAnimCurveNodeS@|Properties70�{PSdSCompoundSS�{'PSd|XSNumberSSAD�{'PSd|YSNumberSSAD�3|'PSd|ZSNumberSSAD�}#AnimationCurveNodeL(�:STAnimCurveNodeS}Properties70�|PSdSCompoundSS}'PSd|XSNumberSSAD�LF
@=}'PSd|YSNumberSSAD����r}'PSd|ZSNumberSSAD`�r@�~#AnimationCurveNodeL(G�:SRAnimCurveNodeS�~Properties70~PSdSCompoundSSG~'PSd|XSNumberSSAD|~'PSd|YSNumberSSAD��~'PSd|ZSNumberSSAD
�#AnimationCurveNodeL���:STAnimCurveNodeS�Properties70QPSdSCompoundSS�'PSd|XSNumberSSAD�3�?�'PSd|YSNumberSSAD��[��'PSd|ZSNumberSSAD |�"@I�#AnimationCurveNodeL���:SRAnimCurveNodeS<�Properties70��PSdSCompoundSSŀ'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�/�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�M�:STAnimCurveNodeS{�Properties70ρPSdSCompoundSS�'PSd|XSNumberSSADף�?9�'PSd|YSNumberSSAD�@n�'PSd|ZSNumberSSAD@i,"@ǃ#AnimationCurveNodeL|�:SRAnimCurveNodeS��Properties70�PSdSCompoundSSC�'PSd|XSNumberSSADx�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeL���:STAnimCurveNodeS��Properties70M�PSdSCompoundSS��'PSd|XSNumberSSAD���@��'PSd|YSNumberSSAD�(�
@�'PSd|ZSNumberSSAD`��@E�#AnimationCurveNodeL���:SRAnimCurveNodeS8�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�+�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�6�:STAnimCurveNodeSw�Properties70ˆPSdSCompoundSS�'PSd|XSNumberSSAD@�~@5�'PSd|YSNumberSSAD�@j�'PSd|ZSNumberSSAD p~@È#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70
�PSdSCompoundSS?�'PSd|XSNumberSSAD�t�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeL�A�:STAnimCurveNodeS��Properties70I�PSdSCompoundSS~�'PSd|XSNumberSSAD`��@��'PSd|YSNumberSSAD#$@�'PSd|ZSNumberSSAD�
 @A�#AnimationCurveNodeL��:SRAnimCurveNodeS4�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'�'PSd|ZSNumberSSAD��#AnimationCurveNodeL0{�:STAnimCurveNodeSs�Properties70NjPSdSCompoundSS��'PSd|XSNumberSSAD��L�?1�'PSd|YSNumberSSAD ��'@f�'PSd|ZSNumberSSAD`��"@��#AnimationCurveNodeL@��:SRAnimCurveNodeS��Properties70�PSdSCompoundSS;�'PSd|XSNumberSSADp�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��#AnimationCurveNodeL���:STAnimCurveNodeS�Properties70E�PSdSCompoundSSz�'PSd|XSNumberSSAD@@��'PSd|YSNumberSSAD �&@�'PSd|ZSNumberSSAD��@=�#AnimationCurveNodeL���:SRAnimCurveNodeS0�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�#�'PSd|ZSNumberSSAD|�#AnimationCurveNodeL���:STAnimCurveNodeSo�Properties70ÐPSdSCompoundSS��'PSd|XSNumberSSAD��L�-�'PSd|YSNumberSSAD ��'@b�'PSd|ZSNumberSSAD`��"@��#AnimationCurveNodeL�%�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS7�'PSd|XSNumberSSADl�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70A�PSdSCompoundSSv�'PSd|XSNumberSSAD����'PSd|YSNumberSSAD���&@��'PSd|ZSNumberSSAD��@9�#AnimationCurveNodeLPa�:SRAnimCurveNodeS,�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD��'PSd|ZSNumberSSADx�#AnimationCurveNodeL��:STAnimCurveNodeSk�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD+��)�'PSd|YSNumberSSAD�`$@^�'PSd|ZSNumberSSAD`�
 @��#AnimationCurveNodeLP�:SRAnimCurveNodeS��Properties70��PSdSCompoundSS3�'PSd|XSNumberSSADh�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��#AnimationCurveNodeL`��:STAnimCurveNodeS�Properties70=�PSdSCompoundSSr�'PSd|XSNumberSSAD��~���'PSd|YSNumberSSAD u@ܘ'PSd|ZSNumberSSAD��~@5�#AnimationCurveNodeLx�:SRAnimCurveNodeS(�Properties70|�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSADt�#AnimationCurveNodeL(>�:STAnimCurveNodeSg�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD-��%�'PSd|YSNumberSSAD�V�
@Z�'PSd|ZSNumberSSAD�]�@��#AnimationCurveNodeLh%�:SRAnimCurveNodeS��Properties70��PSdSCompoundSS/�'PSd|XSNumberSSADd�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeL��:STAnimCurveNodeS�Properties709�PSdSCompoundSSn�'PSd|XSNumberSSADף����'PSd|YSNumberSSAD`@؝'PSd|ZSNumberSSAD`�,"@1�#AnimationCurveNodeLж�:SRAnimCurveNodeS$�Properties70x�PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD��'PSd|ZSNumberSSADp�#AnimationCurveNodeLh��:STAnimCurveNodeSc�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�3��!�'PSd|YSNumberSSAD��W�V�'PSd|ZSNumberSSAD@i�"@��#AnimationCurveNodeL���:SRAnimCurveNodeS��Properties70��PSdSCompoundSS+�'PSd|XSNumberSSAD`�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeL(��:STAnimCurveNodeS�Properties705�PSdSCompoundSSj�'PSd|XSNumberSSAD������'PSd|YSNumberSSAD`�)6@Ԣ'PSd|ZSNumberSSAD@
M��-�#AnimationCurveNodeL@�:SRAnimCurveNodeS �Properties70t�PSdSCompoundSS��'PSd|XSNumberSSAD�l9'�ޣ'PSd|YSNumberSSAD@��)��'PSd|ZSNumberSSAD ݶ �l�#AnimationCurveNodeL8�:STAnimCurveNodeS_�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD��$@�'PSd|YSNumberSSAD �\0�R�'PSd|ZSNumberSSAD`��վ��#AnimationCurveNodeLP��:SRAnimCurveNodeS��Properties70�PSdSCompoundSS'�'PSd|XSNumberSSAD`M#@@\�'PSd|YSNumberSSAD�D7@��'PSd|ZSNumberSSADJ�J@�#AnimationCurveNodeLpY�:STAnimCurveNodeSݧProperties701�PSdSCompoundSSf�'PSd|XSNumberSSAD`�W9���'PSd|YSNumberSSAD �<�?Ч'PSd|ZSNumberSSAD`,���)�#AnimationCurveNodeL�ͅ:SRAnimCurveNodeS�Properties70p�PSdSCompoundSS��'PSd|XSNumberSSAD��]]�ڨ'PSd|YSNumberSSAD࣮R@�'PSd|ZSNumberSSAD ��`�h�#AnimationCurveNodeLp>�:STAnimCurveNodeS[�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD ��8��'PSd|YSNumberSSAD <P@N�'PSd|ZSNumberSSAD����?��#AnimationCurveNodeL ��:SRAnimCurveNodeS��Properties70�PSdSCompoundSS#�'PSd|XSNumberSSAD@V�X�'PSd|YSNumberSSAD�m7���'PSd|ZSNumberSSAD��0��#AnimationCurveNodeLx��:STAnimCurveNodeS٬Properties70-�PSdSCompoundSSb�'PSd|XSNumberSSAD������'PSd|YSNumberSSAD�K�ɿ̬'PSd|ZSNumberSSAD�ۚ�%�#AnimationCurveNodeLP4�:SRAnimCurveNodeS�Properties70l�PSdSCompoundSS��'PSd|XSNumberSSAD�e�?�֭'PSd|YSNumberSSAD`���'PSd|ZSNumberSSAD`��E@d�#AnimationCurveNodeL0��:STAnimCurveNodeSW�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD����'PSd|YSNumberSSAD�(���J�'PSd|ZSNumberSSAD`����#AnimationCurveNodeL���:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�!�!�T�'PSd|YSNumberSSAD��=@��'PSd|ZSNumberSSAD�*�J@�#AnimationCurveNodeL�:STAnimCurveNodeSձProperties70)�PSdSCompoundSS^�'PSd|XSNumberSSAD�8$���'PSd|YSNumberSSAD�V��ȱ'PSd|ZSNumberSSAD �@�!�#AnimationCurveNodeL�:SRAnimCurveNodeS�Properties70h�PSdSCompoundSS��'PSd|XSNumberSSAD@�� �Ҳ'PSd|YSNumberSSAD`I[@�'PSd|ZSNumberSSAD@��H@`�#AnimationCurveNodeL�:STAnimCurveNodeSS�Properties70��PSdSCompoundSSܳ'PSd|XSNumberSSAD�H=��'PSd|YSNumberSSAD js�?F�'PSd|ZSNumberSSAD �m���#AnimationCurveNodeL�
:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD "��P�'PSd|YSNumberSSAD@�{���'PSd|ZSNumberSSAD��H@޶#AnimationCurveNodeLX:STAnimCurveNodeSѶProperties70%�PSdSCompoundSSZ�'PSd|XSNumberSSAD�'���'PSd|YSNumberSSAD ښ��Ķ'PSd|ZSNumberSSAD`K�߿�#AnimationCurveNodeL�	:SRAnimCurveNodeS�Properties70d�PSdSCompoundSS��'PSd|XSNumberSSAD%�
�η'PSd|YSNumberSSAD���?�'PSd|ZSNumberSSAD@�K@\�#AnimationCurveNodeL:STAnimCurveNodeSO�Properties70��PSdSCompoundSSظ'PSd|XSNumberSSAD@���
�'PSd|YSNumberSSAD�
��B�'PSd|ZSNumberSSAD��ݿ��#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD@�.�L�'PSd|YSNumberSSAD����?��'PSd|ZSNumberSSAD�%6@@ڻ#AnimationCurveNodeL�:STAnimCurveNodeSͻProperties70!�PSdSCompoundSSV�'PSd|XSNumberSSAD�QB���'PSd|YSNumberSSAD<��?��'PSd|ZSNumberSSAD@��?�#AnimationCurveNodeL��:SRAnimCurveNodeS�Properties70`�PSdSCompoundSS��'PSd|XSNumberSSAD`g3@ʼ'PSd|YSNumberSSAD���%���'PSd|ZSNumberSSAD`@SG@X�#AnimationCurveNodeL��:STAnimCurveNodeSK�Properties70��PSdSCompoundSSԽ'PSd|XSNumberSSAD`��	�'PSd|YSNumberSSAD���?>�'PSd|ZSNumberSSAD@��?��#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties70޾PSdSCompoundSS�'PSd|XSNumberSSAD`Ռ�?H�'PSd|YSNumberSSAD ���}�'PSd|ZSNumberSSAD��<@��#AnimationCurveNodeLX�:STAnimCurveNodeS��Properties70�PSdSCompoundSSR�'PSd|XSNumberSSAD >u
���'PSd|YSNumberSSAD@�&迼�'PSd|ZSNumberSSAD�I��?�#AnimationCurveNodeL��:SRAnimCurveNodeS�Properties70\�PSdSCompoundSS��'PSd|XSNumberSSAD �W�?��'PSd|YSNumberSSAD� S����'PSd|ZSNumberSSAD`�;@T�#AnimationCurveNodeL��:STAnimCurveNodeSG�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�e���'PSd|YSNumberSSAD�yҿ�:�'PSd|ZSNumberSSAD��y@��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD(.@D�'PSd|YSNumberSSAD`�,�y�'PSd|ZSNumberSSAD �@5@��#AnimationCurveNodeL �:STAnimCurveNodeS��Properties70�PSdSCompoundSSN�'PSd|XSNumberSSAD���
���'PSd|YSNumberSSAD���?��'PSd|ZSNumberSSAD�!C�?�#AnimationCurveNodeL��:SRAnimCurveNodeS�Properties70X�PSdSCompoundSS��'PSd|XSNumberSSAD��@��'PSd|YSNumberSSAD� ��?��'PSd|ZSNumberSSAD@݀)@P�#AnimationCurveNodeL�:STAnimCurveNodeSC�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�.��'PSd|YSNumberSSAD��߿6�'PSd|ZSNumberSSAD@���?��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD �@@�'PSd|YSNumberSSAD�Ʃ?u�'PSd|ZSNumberSSAD��50@��#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70�PSdSCompoundSSJ�'PSd|XSNumberSSAD�~���'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD���@
�#AnimationCurveNodeL�:SRAnimCurveNodeS�Properties70T�PSdSCompoundSS��'PSd|XSNumberSSAD �$���'PSd|YSNumberSSAD M�@��'PSd|ZSNumberSSAD�&V @L�#AnimationCurveNodeL��:STAnimCurveNodeS?�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`�2����'PSd|YSNumberSSAD`���2�'PSd|ZSNumberSSAD��@��#AnimationCurveNodeL��:SRAnimCurveNodeS~�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD9��?<�'PSd|YSNumberSSAD`�U,�q�'PSd|ZSNumberSSAD@��տ��#AnimationCurveNodeLp�:STAnimCurveNodeS��Properties70�PSdSCompoundSSF�'PSd|XSNumberSSAD@5^�{�'PSd|YSNumberSSAD �r述�'PSd|ZSNumberSSAD@��@	�#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70P�PSdSCompoundSS��'PSd|XSNumberSSAD`Q+@��'PSd|YSNumberSSAD�h0���'PSd|ZSNumberSSAD ���H�#AnimationCurveNodeL8�:STAnimCurveNodeS;�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��@��'PSd|YSNumberSSAD@�)6@.�'PSd|ZSNumberSSAD@
M����#AnimationCurveNodeL�:SRAnimCurveNodeSz�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?Q&@8�'PSd|YSNumberSSAD �$"@m�'PSd|ZSNumberSSAD���ؿ��#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70
�PSdSCompoundSSB�'PSd|XSNumberSSAD��$@w�'PSd|YSNumberSSAD�3~>��'PSd|ZSNumberSSADhqT��#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties70L�PSdSCompoundSS��'PSd|XSNumberSSAD�XK@��'PSd|YSNumberSSAD��4@��'PSd|ZSNumberSSAD`ZG�D�#AnimationCurveNodeL��:STAnimCurveNodeS7�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��g9@��'PSd|YSNumberSSADеF�*�'PSd|ZSNumberSSADhqG>��#AnimationCurveNodeL��:SRAnimCurveNodeSv�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ߁<�4�'PSd|YSNumberSSAD U�Q�i�'PSd|ZSNumberSSAD`��M@��#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70	�PSdSCompoundSS>�'PSd|XSNumberSSAD���8@s�'PSd|YSNumberSSAD@I���'PSd|ZSNumberSSAD 	>�#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties70H�PSdSCompoundSS}�'PSd|XSNumberSSAD��5&���'PSd|YSNumberSSAD�cB+@��'PSd|ZSNumberSSAD`��@@�#AnimationCurveNodeL`�:STAnimCurveNodeS3�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD �C@��'PSd|YSNumberSSAD�S
�&�'PSd|ZSNumberSSAD@�	��#AnimationCurveNodeLh�:SRAnimCurveNodeSr�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`Y�1�0�'PSd|YSNumberSSAD`:�&@e�'PSd|ZSNumberSSAD��N���#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70�PSdSCompoundSS:�'PSd|XSNumberSSAD���@o�'PSd|YSNumberSSAD@�Ji���'PSd|ZSNumberSSAD`�¿��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70D�PSdSCompoundSSy�'PSd|XSNumberSSAD���#@��'PSd|YSNumberSSAD��	@��'PSd|ZSNumberSSAD�DP�<�#AnimationCurveNodeL��:STAnimCurveNodeS/�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD@�s@��'PSd|YSNumberSSAD���D�"�'PSd|ZSNumberSSAD�x�>{�#AnimationCurveNodeL@�:SRAnimCurveNodeSn�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD���"@,�'PSd|YSNumberSSAD�t�@a�'PSd|ZSNumberSSAD�MM���#AnimationCurveNodeL�:STAnimCurveNodeS��Properties70�PSdSCompoundSS6�'PSd|XSNumberSSAD��@k�'PSd|YSNumberSSAD�P�׿��'PSd|ZSNumberSSAD EB���#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70@�PSdSCompoundSSu�'PSd|XSNumberSSAD�����'PSd|YSNumberSSAD`h� @��'PSd|ZSNumberSSAD`K�N�8�#AnimationCurveNodeLX�:STAnimCurveNodeS+�Properties70�PSdSCompoundSS��'PSd|XSNumberSSAD A@��'PSd|YSNumberSSAD�Ua��'PSd|ZSNumberSSAD`;�̿w�#AnimationCurveNodeL�:SRAnimCurveNodeSj�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��	
@(�'PSd|YSNumberSSAD��@]�'PSd|ZSNumberSSAD` �P���#AnimationCurveNodeL8�:STAnimCurveNodeS��Properties70��PSdSCompoundSS2�'PSd|XSNumberSSAD��@g�'PSd|YSNumberSSAD�P>��'PSd|ZSNumberSSAD�������#AnimationCurveNodeL:SRAnimCurveNodeS��Properties70<�PSdSCompoundSSq�'PSd|XSNumberSSAD��R@��'PSd|YSNumberSSAD���?��'PSd|ZSNumberSSAD`!�D�4�#AnimationCurveNodeL��:STAnimCurveNodeS'�Properties70{�PSdSCompoundSS��'PSd|XSNumberSSAD�h@��'PSd|YSNumberSSAD`5!ȿ�'PSd|ZSNumberSSAD�9�?s�#AnimationCurveNodeL �:SRAnimCurveNodeSf�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`gƿ$�'PSd|YSNumberSSAD@`&@Y�'PSd|ZSNumberSSAD�j�O���#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70��PSdSCompoundSS.�'PSd|XSNumberSSAD Q�@c�'PSd|YSNumberSSAD@+s??��'PSd|ZSNumberSSAD��ǥ���#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties708�PSdSCompoundSSm�'PSd|XSNumberSSAD`r¬�'PSd|YSNumberSSAD��N���'PSd|ZSNumberSSAD@
�F�0�#AnimationCurveNodeL�:STAnimCurveNodeS#�Properties70w�PSdSCompoundSS��'PSd|XSNumberSSAD �+@��'PSd|YSNumberSSAD �p���'PSd|ZSNumberSSAD�u-�>o�#AnimationCurveNodeLP�:SRAnimCurveNodeSb�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�M� �'PSd|YSNumberSSAD`��޿U�'PSd|ZSNumberSSAD@qE���#AnimationCurveNodeL�:STAnimCurveNodeS��Properties70��PSdSCompoundSS*�'PSd|XSNumberSSAD��@_�'PSd|YSNumberSSAD��鿔�'PSd|ZSNumberSSAD�B
@��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties704�PSdSCompoundSSi�'PSd|XSNumberSSAD@��@��'PSd|YSNumberSSAD�ba1@��'PSd|ZSNumberSSAD�^H�,�#AnimationCurveNodeLX�:STAnimCurveNodeS�Properties70s�PSdSCompoundSS��'PSd|XSNumberSSAD�{�@��'PSd|YSNumberSSAD`�ft?�'PSd|ZSNumberSSAD`�Z�?k�#AnimationCurveNodeL(�:SRAnimCurveNodeS^�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��<��'PSd|YSNumberSSAD�m��Q�'PSd|ZSNumberSSAD�`5A���#AnimationCurveNodeL�:STAnimCurveNodeS��Properties70��PSdSCompoundSS&�'PSd|XSNumberSSAD��_@[�'PSd|YSNumberSSAD 
�����'PSd|ZSNumberSSAD@Ԓվ��#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties700�PSdSCompoundSSe�'PSd|XSNumberSSAD�{����'PSd|YSNumberSSAD��n���'PSd|ZSNumberSSAD@��B�(�#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70o�PSdSCompoundSS��'PSd|XSNumberSSAD���?��'PSd|YSNumberSSAD����'PSd|ZSNumberSSAD��l@g�#AnimationCurveNodeL��:SRAnimCurveNodeSZ�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�
�Ͽ�'PSd|YSNumberSSAD e�$@M�'PSd|ZSNumberSSAD�9I5���#AnimationCurveNodeL �:STAnimCurveNodeS��Properties70��PSdSCompoundSS"�'PSd|XSNumberSSAD`�2�?W�'PSd|YSNumberSSAD`��࿌�'PSd|ZSNumberSSAD`
�@��#AnimationCurveNodeLH�:SRAnimCurveNodeS��Properties70,�PSdSCompoundSSa�'PSd|XSNumberSSAD9��?��'PSd|YSNumberSSAD�U,@��'PSd|ZSNumberSSAD`���?$�#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70k�PSdSCompoundSS��'PSd|XSNumberSSAD@5^@��'PSd|YSNumberSSAD �r�
�'PSd|ZSNumberSSAD@��@c#AnimationCurveNodeL��:SRAnimCurveNodeSVProperties70��PSdSCompoundSS��'PSd|XSNumberSSAD Q+@'PSd|YSNumberSSAD��h0@I'PSd|ZSNumberSSAD��@�#AnimationCurveNodeL�:STAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSAD@.�S'PSd|YSNumberSSAD �C��'PSd|ZSNumberSSAD�#AnimationCurveNodeL��:SRAnimCurveNodeS�Properties70(PSdSCompoundSS]'PSd|XSNumberSSAD`4+@�'PSd|YSNumberSSAD��
,��'PSd|ZSNumberSSAD�b�@ #AnimationCurveNodeL�:STAnimCurveNodeSProperties70gPSdSCompoundSS�'PSd|XSNumberSSAD`�p��'PSd|YSNumberSSAD@�tD�'PSd|ZSNumberSSAD@�e��_#AnimationCurveNodeL��:SRAnimCurveNodeSRProperties70�PSdSCompoundSS�'PSd|XSNumberSSADQ�;@'PSd|YSNumberSSADѿE'PSd|ZSNumberSSAD��s#��#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSAD`V}�O'PSd|YSNumberSSAD@e(E��'PSd|ZSNumberSSAD |��#AnimationCurveNodeL�{:SRAnimCurveNodeS�Properties70$PSdSCompoundSSY'PSd|XSNumberSSAD@L%@�'PSd|YSNumberSSAD�:@�'PSd|ZSNumberSSAD��6�?	#AnimationCurveNodeLP}:STAnimCurveNodeS	Properties70cPSdSCompoundSS�'PSd|XSNumberSSAD�Y���'PSd|YSNumberSSAD�TD�	'PSd|ZSNumberSSAD`�-@[
#AnimationCurveNodeL�z:SRAnimCurveNodeSN
Properties70�	PSdSCompoundSS�	'PSd|XSNumberSSAD���@
'PSd|YSNumberSSAD���A
'PSd|ZSNumberSSAD�����#AnimationCurveNodeLH:STAnimCurveNodeS�Properties70�
PSdSCompoundSS'PSd|XSNumberSSAD`.@K'PSd|YSNumberSSAD��C��'PSd|ZSNumberSSAD@=�#AnimationCurveNodeL:SRAnimCurveNodeS�Properties70 PSdSCompoundSSU'PSd|XSNumberSSAD��I��'PSd|YSNumberSSAD�I���'PSd|ZSNumberSSAD��:@#AnimationCurveNodeL`�:STAnimCurveNodeSProperties70_
PSdSCompoundSS�
'PSd|XSNumberSSAD�p@�
'PSd|YSNumberSSAD �tD��
'PSd|ZSNumberSSAD@�e��W#AnimationCurveNodeL��:SRAnimCurveNodeSJProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD��3;@'PSd|YSNumberSSAD T�@='PSd|ZSNumberSSAD�Ed
��#AnimationCurveNodeL n:STAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSAD`V}�?G'PSd|YSNumberSSAD@e(E�|'PSd|ZSNumberSSAD |��#AnimationCurveNodeLHm:SRAnimCurveNodeS�Properties70PSdSCompoundSSQ'PSd|XSNumberSSAD���)��'PSd|YSNumberSSADd�@�'PSd|ZSNumberSSAD�Q8@#AnimationCurveNodeL�l:STAnimCurveNodeSProperties70[PSdSCompoundSS�'PSd|XSNumberSSAD�Y��?�'PSd|YSNumberSSAD�TD��'PSd|ZSNumberSSAD��-@S#AnimationCurveNodeL�k:SRAnimCurveNodeSFProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD`�(�'PSd|YSNumberSSAD@#���9'PSd|ZSNumberSSAD��?��#AnimationCurveNodeLxj:STAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSADC'PSd|YSNumberSSADx'PSd|ZSNumberSSAD�#AnimationCurveNodeL�i:SRAnimCurveNodeS�Properties70PSdSCompoundSSM'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD#AnimationCurveNodeL��:STAnimCurveNodeSProperties70WPSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSAD HX@�'PSd|ZSNumberSSADO#AnimationCurveNodeL�:SRAnimCurveNodeSBProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD'PSd|YSNumberSSAD5'PSd|ZSNumberSSAD�#AnimationCurveNodeL�d:STAnimCurveNodeS�Properties70�PSdSCompoundSS
'PSd|XSNumberSSAD@�?'PSd|YSNumberSSAD�s"@t'PSd|ZSNumberSSAD�;�?�#AnimationCurveNodeLd:SRAnimCurveNodeS�Properties70PSdSCompoundSSI'PSd|XSNumberSSAD~'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70SPSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSADA0@�'PSd|ZSNumberSSAD�2ſK#AnimationCurveNodeLPY:SRAnimCurveNodeS>Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSAD1'PSd|ZSNumberSSAD�#AnimationCurveNodeL8V:STAnimCurveNodeS}Properties70�PSdSCompoundSS'PSd|XSNumberSSAD;'PSd|YSNumberSSAD`��9@p'PSd|ZSNumberSSAD <�	�� #AnimationCurveNodeL S:SRAnimCurveNodeS� Properties70 PSdSCompoundSSE 'PSd|XSNumberSSADz 'PSd|YSNumberSSAD� 'PSd|ZSNumberSSAD"#AnimationCurveNodeLP:STAnimCurveNodeS�!Properties70O!PSdSCompoundSS�!'PSd|XSNumberSSAD@;�!'PSd|YSNumberSSAD 4� @�!'PSd|ZSNumberSSAD s�?G##AnimationCurveNodeL�L:SRAnimCurveNodeS:#Properties70�"PSdSCompoundSS�"'PSd|XSNumberSSAD�"'PSd|YSNumberSSAD-#'PSd|ZSNumberSSAD�$#AnimationCurveNodeL�I:STAnimCurveNodeSy$Properties70�#PSdSCompoundSS$'PSd|XSNumberSSAD෭@7$'PSd|YSNumberSSAD`#� @l$'PSd|ZSNumberSSAD��+@�%#AnimationCurveNodeL�F:SRAnimCurveNodeS�%Properties70%PSdSCompoundSSA%'PSd|XSNumberSSADv%'PSd|YSNumberSSAD�%'PSd|ZSNumberSSAD'#AnimationCurveNodeL�C:STAnimCurveNodeS�&Properties70K&PSdSCompoundSS�&'PSd|XSNumberSSAD����&'PSd|YSNumberSSAD %� @�&'PSd|ZSNumberSSAD�+@C(#AnimationCurveNodeL<:SRAnimCurveNodeS6(Properties70�'PSdSCompoundSS�''PSd|XSNumberSSAD�''PSd|YSNumberSSAD)('PSd|ZSNumberSSAD�)#AnimationCurveNodeL�8:STAnimCurveNodeSu)Properties70�(PSdSCompoundSS�('PSd|XSNumberSSAD@�3)'PSd|YSNumberSSAD@���?h)'PSd|ZSNumberSSAD`)��?�*#AnimationCurveNodeL�5:SRAnimCurveNodeS�*Properties70*PSdSCompoundSS=*'PSd|XSNumberSSADr*'PSd|YSNumberSSAD�Y	�<�*'PSd|ZSNumberSSAD����<,#AnimationCurveNodeL�2:STAnimCurveNodeS�+Properties70G+PSdSCompoundSS|+'PSd|XSNumberSSAD@<�+'PSd|YSNumberSSAD��K��+'PSd|ZSNumberSSAD`'�??-#AnimationCurveNodeL�/:SRAnimCurveNodeS2-Properties70�,PSdSCompoundSS�,'PSd|XSNumberSSAD�,'PSd|YSNumberSSAD%-'PSd|ZSNumberSSAD~.#AnimationCurveNodeL�A:STAnimCurveNodeSq.Properties70�-PSdSCompoundSS�-'PSd|XSNumberSSAD@</.'PSd|YSNumberSSAD@���d.'PSd|ZSNumberSSAD�}�@�/#AnimationCurveNodeL.:SRAnimCurveNodeS�/Properties70/PSdSCompoundSS9/'PSd|XSNumberSSADn/'PSd|YSNumberSSAD�/'PSd|ZSNumberSSAD�0#AnimationCurveNodeL0+:STAnimCurveNodeS�0Properties70C0PSdSCompoundSSx0'PSd|XSNumberSSAD�"��?�0'PSd|YSNumberSSAD��Y��0'PSd|ZSNumberSSAD��r @;2#AnimationCurveNodeL�':SRAnimCurveNodeS.2Properties70�1PSdSCompoundSS�1'PSd|XSNumberSSAD�1'PSd|YSNumberSSAD!2'PSd|ZSNumberSSADz3#AnimationCurveNodeL�$:STAnimCurveNodeSm3Properties70�2PSdSCompoundSS�2'PSd|XSNumberSSAD@<+3'PSd|YSNumberSSAD��P�`3'PSd|ZSNumberSSAD���@�4#AnimationCurveNodeL�]:SRAnimCurveNodeS�4Properties704PSdSCompoundSS54'PSd|XSNumberSSADj4'PSd|YSNumberSSAD�4'PSd|ZSNumberSSAD�5#AnimationCurveNodeL[:STAnimCurveNodeS�5Properties70?5PSdSCompoundSSt5'PSd|XSNumberSSAD�"����5'PSd|YSNumberSSAD��Y��5'PSd|ZSNumberSSAD@�r @77#AnimationCurveNodeL�_:SRAnimCurveNodeS*7Properties70~6PSdSCompoundSS�6'PSd|XSNumberSSAD�6'PSd|YSNumberSSAD7'PSd|ZSNumberSSADv8#AnimationCurveNodeLh�:STAnimCurveNodeSi8Properties70�7PSdSCompoundSS�7'PSd|XSNumberSSAD��E
�'8'PSd|YSNumberSSAD����\8'PSd|ZSNumberSSAD@�r@�9#AnimationCurveNodeL:SRAnimCurveNodeS�9Properties70�8PSdSCompoundSS19'PSd|XSNumberSSADf9'PSd|YSNumberSSAD�9'PSd|ZSNumberSSAD�:#AnimationCurveNodeL�:STAnimCurveNodeS�:Properties70;:PSdSCompoundSSp:'PSd|XSNumberSSAD�LF
@�:'PSd|YSNumberSSAD�����:'PSd|ZSNumberSSAD`�r@3<#AnimationCurveNodeL�:SRAnimCurveNodeS&<Properties70z;PSdSCompoundSS�;'PSd|XSNumberSSAD�;'PSd|YSNumberSSAD<'PSd|ZSNumberSSADr=#AnimationCurveNodeL��:STAnimCurveNodeSe=Properties70�<PSdSCompoundSS�<'PSd|XSNumberSSAD�3�?#='PSd|YSNumberSSAD��[�X='PSd|ZSNumberSSAD |�"@�>#AnimationCurveNodeL0�:SRAnimCurveNodeS�>Properties70�=PSdSCompoundSS->'PSd|XSNumberSSADb>'PSd|YSNumberSSAD�>'PSd|ZSNumberSSAD�?#AnimationCurveNodeL�:STAnimCurveNodeS�?Properties707?PSdSCompoundSSl?'PSd|XSNumberSSADף�?�?'PSd|YSNumberSSAD�@�?'PSd|ZSNumberSSAD@i,"@/A#AnimationCurveNodeL�!�9SRAnimCurveNodeS"AProperties70v@PSdSCompoundSS�@'PSd|XSNumberSSAD�@'PSd|YSNumberSSADA'PSd|ZSNumberSSADnB#AnimationCurveNodeL�$�9STAnimCurveNodeSaBProperties70�APSdSCompoundSS�A'PSd|XSNumberSSAD���@B'PSd|YSNumberSSAD�(�
@TB'PSd|ZSNumberSSAD`��@�C#AnimationCurveNodeL�'�9SRAnimCurveNodeS�CProperties70�BPSdSCompoundSS)C'PSd|XSNumberSSAD^C'PSd|YSNumberSSAD�C'PSd|ZSNumberSSAD�D#AnimationCurveNodeL�*�9STAnimCurveNodeS�DProperties703DPSdSCompoundSShD'PSd|XSNumberSSAD@�~@�D'PSd|YSNumberSSAD�@�D'PSd|ZSNumberSSAD p~@+F#AnimationCurveNodeL.�9SRAnimCurveNodeSFProperties70rEPSdSCompoundSS�E'PSd|XSNumberSSAD��E'PSd|YSNumberSSADF'PSd|ZSNumberSSADjG#AnimationCurveNodeL 1�9STAnimCurveNodeS]GProperties70�FPSdSCompoundSS�F'PSd|XSNumberSSAD`��@G'PSd|YSNumberSSAD#$@PG'PSd|ZSNumberSSAD�
 @�H#AnimationCurveNodeL84�9SRAnimCurveNodeS�HProperties70�GPSdSCompoundSS%H'PSd|XSNumberSSADZH'PSd|YSNumberSSAD�H'PSd|ZSNumberSSAD�I#AnimationCurveNodeLP7�9STAnimCurveNodeS�IProperties70/IPSdSCompoundSSdI'PSd|XSNumberSSAD��L�?�I'PSd|YSNumberSSAD ��'@�I'PSd|ZSNumberSSAD`��"@'K#AnimationCurveNodeLh:�9SRAnimCurveNodeSKProperties70nJPSdSCompoundSS�J'PSd|XSNumberSSAD�J'PSd|YSNumberSSAD
K'PSd|ZSNumberSSADfL#AnimationCurveNodeL�=�9STAnimCurveNodeSYLProperties70�KPSdSCompoundSS�K'PSd|XSNumberSSAD@@L'PSd|YSNumberSSAD �&@LL'PSd|ZSNumberSSAD��@�M#AnimationCurveNodeL��9SRAnimCurveNodeS�MProperties70�LPSdSCompoundSS!M'PSd|XSNumberSSADVM'PSd|YSNumberSSAD�M'PSd|ZSNumberSSAD�N#AnimationCurveNodeL(��9STAnimCurveNodeS�NProperties70+NPSdSCompoundSS`N'PSd|XSNumberSSAD��L�N'PSd|YSNumberSSAD ��'@�N'PSd|ZSNumberSSAD`��"@#P#AnimationCurveNodeL@��9SRAnimCurveNodeSPProperties70jOPSdSCompoundSS�O'PSd|XSNumberSSAD�O'PSd|YSNumberSSAD	P'PSd|ZSNumberSSADbQ#AnimationCurveNodeLX��9STAnimCurveNodeSUQProperties70�PPSdSCompoundSS�P'PSd|XSNumberSSAD��Q'PSd|YSNumberSSAD���&@HQ'PSd|ZSNumberSSAD��@�R#AnimationCurveNodeLp��9SRAnimCurveNodeS�RProperties70�QPSdSCompoundSSR'PSd|XSNumberSSADRR'PSd|YSNumberSSAD�R'PSd|ZSNumberSSAD�S#AnimationCurveNodeL���9STAnimCurveNodeS�SProperties70'SPSdSCompoundSS\S'PSd|XSNumberSSAD+���S'PSd|YSNumberSSAD�`$@�S'PSd|ZSNumberSSAD`�
 @U#AnimationCurveNodeL���9SRAnimCurveNodeSUProperties70fTPSdSCompoundSS�T'PSd|XSNumberSSAD�T'PSd|YSNumberSSADU'PSd|ZSNumberSSAD^V#AnimationCurveNodeL���9STAnimCurveNodeSQVProperties70�UPSdSCompoundSS�U'PSd|XSNumberSSAD��~�V'PSd|YSNumberSSAD u@DV'PSd|ZSNumberSSAD��~@�W#AnimationCurveNodeL���9SRAnimCurveNodeS�WProperties70�VPSdSCompoundSSW'PSd|XSNumberSSAD�NW'PSd|YSNumberSSAD�W'PSd|ZSNumberSSAD�X#AnimationCurveNodeL���9STAnimCurveNodeS�XProperties70#XPSdSCompoundSSXX'PSd|XSNumberSSAD-���X'PSd|YSNumberSSAD�V�
@�X'PSd|ZSNumberSSAD�]�@Z#AnimationCurveNodeL��9SRAnimCurveNodeSZProperties70bYPSdSCompoundSS�Y'PSd|XSNumberSSAD�Y'PSd|YSNumberSSADZ'PSd|ZSNumberSSADZ[#AnimationCurveNodeL��9STAnimCurveNodeSM[Properties70�ZPSdSCompoundSS�Z'PSd|XSNumberSSADף��['PSd|YSNumberSSAD`@@['PSd|ZSNumberSSAD`�,"@�\#AnimationCurveNodeL0��9SRAnimCurveNodeS�\Properties70�[PSdSCompoundSS\'PSd|XSNumberSSADJ\'PSd|YSNumberSSAD\'PSd|ZSNumberSSAD�]#AnimationCurveNodeLH��9STAnimCurveNodeS�]Properties70]PSdSCompoundSST]'PSd|XSNumberSSAD�3���]'PSd|YSNumberSSAD��W࿾]'PSd|ZSNumberSSAD@i�"@_#AnimationCurveNodeL`��9SRAnimCurveNodeS
_Properties70^^PSdSCompoundSS�^'PSd|XSNumberSSAD�^'PSd|YSNumberSSAD�^'PSd|ZSNumberSSADV`#AnimationCurveNodeLx��9STAnimCurveNodeSI`Properties70�_PSdSCompoundSS�_'PSd|XSNumberSSAD����`'PSd|YSNumberSSAD`�)6@<`'PSd|ZSNumberSSAD@
M���a#AnimationCurveNodeL���9SRAnimCurveNodeS�aProperties70�`PSdSCompoundSSa'PSd|XSNumberSSADFa'PSd|YSNumberSSAD ܥ�{a'PSd|ZSNumberSSAD e|�<�b#AnimationCurveNodeL���9STAnimCurveNodeS�bProperties70bPSdSCompoundSSPb'PSd|XSNumberSSAD��$@�b'PSd|YSNumberSSAD��a0��b'PSd|ZSNumberSSAD@�վd#AnimationCurveNodeL��9SRAnimCurveNodeSdProperties70ZcPSdSCompoundSS�c'PSd|XSNumberSSAD@���c'PSd|YSNumberSSAD�c'PSd|ZSNumberSSAD 	��<Re#AnimationCurveNodeL��9STAnimCurveNodeSEeProperties70�dPSdSCompoundSS�d'PSd|XSNumberSSAD`�W9�e'PSd|YSNumberSSAD �<�?8e'PSd|ZSNumberSSAD`,����f#AnimationCurveNodeL��9SRAnimCurveNodeS�fProperties70�ePSdSCompoundSS
f'PSd|XSNumberSSAD e|��Bf'PSd|YSNumberSSAD ܥܼwf'PSd|ZSNumberSSAD 2���g#AnimationCurveNodeL��9STAnimCurveNodeS�gProperties70gPSdSCompoundSSLg'PSd|XSNumberSSAD ��8��g'PSd|YSNumberSSAD <P@�g'PSd|ZSNumberSSAD����?i#AnimationCurveNodeL�9SRAnimCurveNodeSiProperties70VhPSdSCompoundSS�h'PSd|XSNumberSSAD� �<�h'PSd|YSNumberSSAD ܥ���h'PSd|ZSNumberSSAD�
��<Nj#AnimationCurveNodeL�9STAnimCurveNodeSAjProperties70�iPSdSCompoundSS�i'PSd|XSNumberSSAD�����i'PSd|YSNumberSSAD�K�ɿ4j'PSd|ZSNumberSSAD�ۚ��k#AnimationCurveNodeL0�9SRAnimCurveNodeS�kProperties70�jPSdSCompoundSS	k'PSd|XSNumberSSAD�K��>k'PSd|YSNumberSSAD ܥ�<sk'PSd|ZSNumberSSAD����<�l#AnimationCurveNodeLH �9STAnimCurveNodeS�lProperties70lPSdSCompoundSSHl'PSd|XSNumberSSAD���}l'PSd|YSNumberSSAD�(����l'PSd|ZSNumberSSAD`��n#AnimationCurveNodeL`#�9SRAnimCurveNodeS�mProperties70RmPSdSCompoundSS�m'PSd|XSNumberSSAD�D3�<�m'PSd|YSNumberSSAD��	=�m'PSd|ZSNumberSSAD��
ռJo#AnimationCurveNodeLx&�9STAnimCurveNodeS=oProperties70�nPSdSCompoundSS�n'PSd|XSNumberSSAD�8$��n'PSd|YSNumberSSAD��V��0o'PSd|ZSNumberSSAD �@��p#AnimationCurveNodeL�)�9SRAnimCurveNodeS|pProperties70�oPSdSCompoundSSp'PSd|XSNumberSSAD:p'PSd|YSNumberSSAD ܥ�<op'PSd|ZSNumberSSAD ܥ\��q#AnimationCurveNodeL�,�9STAnimCurveNodeS�qProperties70qPSdSCompoundSSDq'PSd|XSNumberSSAD�H=�yq'PSd|YSNumberSSAD�is�?�q'PSd|ZSNumberSSAD �m�s#AnimationCurveNodeL�/�9SRAnimCurveNodeS�rProperties70NrPSdSCompoundSS�r'PSd|XSNumberSSAD e|u<�r'PSd|YSNumberSSAD����<�r'PSd|ZSNumberSSAD��o��Ft#AnimationCurveNodeL�2�9STAnimCurveNodeS9tProperties70�sPSdSCompoundSS�s'PSd|XSNumberSSAD�'��s'PSd|YSNumberSSAD ښ��,t'PSd|ZSNumberSSAD@K�߿�u#AnimationCurveNodeL�5�9SRAnimCurveNodeSxuProperties70�tPSdSCompoundSSu'PSd|XSNumberSSAD e|�6u'PSd|YSNumberSSAD e|�<ku'PSd|ZSNumberSSAD�ja�<�v#AnimationCurveNodeL9�9STAnimCurveNodeS�vProperties70vPSdSCompoundSS@v'PSd|XSNumberSSAD@���uv'PSd|YSNumberSSAD�
�迪v'PSd|ZSNumberSSAD��ݿx#AnimationCurveNodeL <�9SRAnimCurveNodeS�wProperties70JwPSdSCompoundSSw'PSd|XSNumberSSAD ܥ���w'PSd|YSNumberSSAD ܥܼ�w'PSd|ZSNumberSSAD�hU��By#AnimationCurveNodeL8?�9STAnimCurveNodeS5yProperties70�xPSdSCompoundSS�x'PSd|XSNumberSSAD�QB��x'PSd|YSNumberSSAD<��?(y'PSd|ZSNumberSSAD@��?�z#AnimationCurveNodeLPB�9SRAnimCurveNodeStzProperties70�yPSdSCompoundSS�y'PSd|XSNumberSSAD@�Q�<2z'PSd|YSNumberSSAD ܥܼgz'PSd|ZSNumberSSAD���<�{#AnimationCurveNodeLhE�9STAnimCurveNodeS�{Properties70{PSdSCompoundSS<{'PSd|XSNumberSSAD`��q{'PSd|YSNumberSSAD���?�{'PSd|ZSNumberSSAD@��?�|#AnimationCurveNodeL�H�9SRAnimCurveNodeS�|Properties70F|PSdSCompoundSS{|'PSd|XSNumberSSAD`~�ʼ�|'PSd|YSNumberSSAD���=�|'PSd|ZSNumberSSAD@�>~#AnimationCurveNodeL�K�9STAnimCurveNodeS1~Properties70�}PSdSCompoundSS�}'PSd|XSNumberSSAD >u
��}'PSd|YSNumberSSAD@�&�$~'PSd|ZSNumberSSAD�I��?}#AnimationCurveNodeL�N�9SRAnimCurveNodeSpProperties70�~PSdSCompoundSS�~'PSd|XSNumberSSAD ܥ��.'PSd|YSNumberSSAD ܥ�<c'PSd|ZSNumberSSAD��h����#AnimationCurveNodeL���9STAnimCurveNodeS��Properties70�PSdSCompoundSS8�'PSd|XSNumberSSAD�e��m�'PSd|YSNumberSSAD�yҿ���'PSd|ZSNumberSSAD��y@��#AnimationCurveNodeL�9SRAnimCurveNodeS�Properties70B�PSdSCompoundSSw�'PSd|XSNumberSSAD`~۪���'PSd|YSNumberSSAD e|��'PSd|ZSNumberSSAD`��ݼ:�#AnimationCurveNodeL(�9STAnimCurveNodeS-�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD���
��'PSd|YSNumberSSAD���? �'PSd|ZSNumberSSAD�!C�?y�#AnimationCurveNodeL@	�9SRAnimCurveNodeSl�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`���<*�'PSd|YSNumberSSAD��	�_�'PSd|ZSNumberSSAD���<��#AnimationCurveNodeLX�9STAnimCurveNodeS��Properties70��PSdSCompoundSS4�'PSd|XSNumberSSAD�.�i�'PSd|YSNumberSSAD��߿��'PSd|ZSNumberSSAD@���?��#AnimationCurveNodeLp�9SRAnimCurveNodeS�Properties70>�PSdSCompoundSSs�'PSd|XSNumberSSAD e|ռ��'PSd|YSNumberSSAD ܥ��݆'PSd|ZSNumberSSAD`���6�#AnimationCurveNodeL��9STAnimCurveNodeS)�Properties70}�PSdSCompoundSS��'PSd|XSNumberSSAD�~���'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD༯@u�#AnimationCurveNodeL��9SRAnimCurveNodeSh�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD@�B��&�'PSd|YSNumberSSAD ܥ��[�'PSd|ZSNumberSSAD�>����#AnimationCurveNodeL��9STAnimCurveNodeS��Properties70��PSdSCompoundSS0�'PSd|XSNumberSSAD`�2��e�'PSd|YSNumberSSAD`��࿚�'PSd|ZSNumberSSAD��@�#AnimationCurveNodeL��9SRAnimCurveNodeS�Properties70:�PSdSCompoundSSo�'PSd|XSNumberSSAD��'PSd|YSNumberSSADً'PSd|ZSNumberSSAD ���92�#AnimationCurveNodeL��9STAnimCurveNodeS%�Properties70y�PSdSCompoundSS��'PSd|XSNumberSSAD@5^��'PSd|YSNumberSSAD �r��'PSd|ZSNumberSSAD@��@q�#AnimationCurveNodeL"�9SRAnimCurveNodeSd�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD e|��"�'PSd|YSNumberSSAD@��R8W�'PSd|ZSNumberSSAD ���9��#AnimationCurveNodeL%�9STAnimCurveNodeS��Properties70��PSdSCompoundSS,�'PSd|XSNumberSSAD��@a�'PSd|YSNumberSSAD@�)6@��'PSd|ZSNumberSSAD@
M���#AnimationCurveNodeL0(�9SRAnimCurveNodeS�Properties706�PSdSCompoundSSk�'PSd|XSNumberSSAD e|张�'PSd|YSNumberSSAD����Ր'PSd|ZSNumberSSAD`�s=.�#AnimationCurveNodeLH+�9STAnimCurveNodeS!�Properties70u�PSdSCompoundSS��'PSd|XSNumberSSAD��$@ߑ'PSd|YSNumberSSAD0=�'PSd|ZSNumberSSAD�<m�#AnimationCurveNodeL`.�9SRAnimCurveNodeS`�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD���ռ�'PSd|YSNumberSSAD ܥ�<S�'PSd|ZSNumberSSAD`*4!���#AnimationCurveNodeLx1�9STAnimCurveNodeS��Properties70�PSdSCompoundSS(�'PSd|XSNumberSSAD��g9@]�'PSd|YSNumberSSAD0=��'PSd|ZSNumberSSAD�<�#AnimationCurveNodeL�4�9SRAnimCurveNodeSޕProperties702�PSdSCompoundSSg�'PSd|XSNumberSSAD��硼��'PSd|YSNumberSSAD����ѕ'PSd|ZSNumberSSAD�s��*�#AnimationCurveNodeL�7�9STAnimCurveNodeS�Properties70q�PSdSCompoundSS��'PSd|XSNumberSSAD���8@ۖ'PSd|YSNumberSSAD�'PSd|ZSNumberSSAD��i�#AnimationCurveNodeL�:�9SRAnimCurveNodeS\�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD ܥl��'PSd|YSNumberSSAD ܥ��O�'PSd|ZSNumberSSAD )�<��#AnimationCurveNodeL�=�9STAnimCurveNodeS��Properties70�PSdSCompoundSS$�'PSd|XSNumberSSAD �C@Y�'PSd|YSNumberSSAD�S
鿎�'PSd|ZSNumberSSAD@�	��#AnimationCurveNodeL�}:SRAnimCurveNodeSښProperties70.�PSdSCompoundSSc�'PSd|XSNumberSSAD��F�<��'PSd|YSNumberSSAD ܥ�<͚'PSd|ZSNumberSSAD���&�#AnimationCurveNodeL0�}:STAnimCurveNodeS�Properties70m�PSdSCompoundSS��'PSd|XSNumberSSAD���@כ'PSd|YSNumberSSAD�Ji��'PSd|ZSNumberSSAD��¿e�#AnimationCurveNodeLH�}:SRAnimCurveNodeSX�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�����'PSd|YSNumberSSAD ܥ=K�'PSd|ZSNumberSSAD���<��#AnimationCurveNodeL`�}:STAnimCurveNodeS��Properties70�PSdSCompoundSS �'PSd|XSNumberSSAD@�s@U�'PSd|YSNumberSSAD���D���'PSd|ZSNumberSSAD@���>�#AnimationCurveNodeLx�}:SRAnimCurveNodeS֟Properties70*�PSdSCompoundSS_�'PSd|XSNumberSSAD e|�<��'PSd|YSNumberSSADɟ'PSd|ZSNumberSSAD���"�#AnimationCurveNodeL��}:STAnimCurveNodeS�Properties70i�PSdSCompoundSS��'PSd|XSNumberSSAD��@Ӡ'PSd|YSNumberSSAD�P�׿�'PSd|ZSNumberSSAD EB�a�#AnimationCurveNodeL��}:SRAnimCurveNodeST�Properties70��PSdSCompoundSSݡ'PSd|XSNumberSSAD� �<�'PSd|YSNumberSSAD ܥ̼G�'PSd|ZSNumberSSAD�#ڼ��#AnimationCurveNodeL��}:STAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD A@Q�'PSd|YSNumberSSAD`Va���'PSd|ZSNumberSSAD�;�̿ߤ#AnimationCurveNodeL��}:SRAnimCurveNodeSҤProperties70&�PSdSCompoundSS[�'PSd|XSNumberSSAD e|�<��'PSd|YSNumberSSAD ܥ�<Ť'PSd|ZSNumberSSAD`�x�<�#AnimationCurveNodeL��}:STAnimCurveNodeS�Properties70e�PSdSCompoundSS��'PSd|XSNumberSSAD��@ϥ'PSd|YSNumberSSADЎ@>�'PSd|ZSNumberSSAD@Ϋ��]�#AnimationCurveNodeL�}:SRAnimCurveNodeSP�Properties70��PSdSCompoundSS٦'PSd|XSNumberSSAD ܥ�<�'PSd|YSNumberSSAD����C�'PSd|ZSNumberSSAD�����#AnimationCurveNodeL �}:STAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�h@M�'PSd|YSNumberSSAD`5!ȿ��'PSd|ZSNumberSSAD�9�?۩#AnimationCurveNodeL8�}:SRAnimCurveNodeSΩProperties70"�PSdSCompoundSSW�'PSd|XSNumberSSAD`~ۚ���'PSd|YSNumberSSAD������'PSd|ZSNumberSSAD�n�<�#AnimationCurveNodeLP~:STAnimCurveNodeS
�Properties70a�PSdSCompoundSS��'PSd|XSNumberSSAD Q�@˪'PSd|YSNumberSSAD�,s??�'PSd|ZSNumberSSAD�ǥ�Y�#AnimationCurveNodeLh~:SRAnimCurveNodeSL�Properties70��PSdSCompoundSSի'PSd|XSNumberSSAD e|��
�'PSd|YSNumberSSAD ܥ�<?�'PSd|ZSNumberSSAD��Q����#AnimationCurveNodeL�~:STAnimCurveNodeS��Properties70߬PSdSCompoundSS�'PSd|XSNumberSSAD �+@I�'PSd|YSNumberSSAD��v��~�'PSd|ZSNumberSSAD��5�>׮#AnimationCurveNodeL�
~:SRAnimCurveNodeSʮProperties70�PSdSCompoundSSS�'PSd|XSNumberSSAD� �<��'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD@�����#AnimationCurveNodeL�
~:STAnimCurveNodeS	�Properties70]�PSdSCompoundSS��'PSd|XSNumberSSAD��@ǯ'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD�B
@U�#AnimationCurveNodeL�~:SRAnimCurveNodeSH�Properties70��PSdSCompoundSSѰ'PSd|XSNumberSSAD�K���'PSd|YSNumberSSAD;�'PSd|ZSNumberSSAD��ּ��#AnimationCurveNodeL�~:STAnimCurveNodeS��Properties70۱PSdSCompoundSS�'PSd|XSNumberSSAD�{�@E�'PSd|YSNumberSSAD@�ft?z�'PSd|ZSNumberSSAD�Z�?ӳ#AnimationCurveNodeL �:SRAnimCurveNodeSƳProperties70�PSdSCompoundSSO�'PSd|XSNumberSSAD ��輄�'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD����#AnimationCurveNodeL8�:STAnimCurveNodeS�Properties70Y�PSdSCompoundSS��'PSd|XSNumberSSAD��_@ô'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD�?�վQ�#AnimationCurveNodeLP�:SRAnimCurveNodeSD�Properties70��PSdSCompoundSS͵'PSd|XSNumberSSAD e|ż�'PSd|YSNumberSSAD ܥ�<7�'PSd|ZSNumberSSAD@6��<��#AnimationCurveNodeLh�:STAnimCurveNodeS��Properties70׶PSdSCompoundSS�'PSd|XSNumberSSAD���?A�'PSd|YSNumberSSAD���v�'PSd|ZSNumberSSAD��l@ϸ#AnimationCurveNodeL��:SRAnimCurveNodeS¸Properties70�PSdSCompoundSSK�'PSd|XSNumberSSAD�e
z<��'PSd|YSNumberSSAD ܥ����'PSd|ZSNumberSSAD�����#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70U�PSdSCompoundSS��'PSd|XSNumberSSAD`�2�?��'PSd|YSNumberSSAD`�����'PSd|ZSNumberSSAD`
�@M�#AnimationCurveNodeL��:SRAnimCurveNodeS@�Properties70��PSdSCompoundSSɺ'PSd|XSNumberSSAD��'PSd|YSNumberSSAD3�'PSd|ZSNumberSSADTn����#AnimationCurveNodeL��:STAnimCurveNodeS�Properties70ӻPSdSCompoundSS�'PSd|XSNumberSSAD@5^@=�'PSd|YSNumberSSAD �r�r�'PSd|ZSNumberSSAD@��@˽#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70�PSdSCompoundSSG�'PSd|XSNumberSSAD��L�>|�'PSd|YSNumberSSADTn���'PSd|ZSNumberSSADTn��
�#AnimationCurveNodeL��:STAnimCurveNodeS��Properties70Q�PSdSCompoundSS��'PSd|XSNumberSSAD@.���'PSd|YSNumberSSAD �C��'PSd|ZSNumberSSADI�#AnimationCurveNodeL!�:SRAnimCurveNodeS<�Properties70��PSdSCompoundSSſ'PSd|XSNumberSSAD��'PSd|YSNumberSSAD/�'PSd|ZSNumberSSAD��#AnimationCurveNodeL($�:STAnimCurveNodeS{�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD`�p�9�'PSd|YSNumberSSAD@�tD�n�'PSd|ZSNumberSSAD@�e����#AnimationCurveNodeL@'�:SRAnimCurveNodeS��Properties70�PSdSCompoundSSC�'PSd|XSNumberSSADx�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeLX*�:STAnimCurveNodeS��Properties70M�PSdSCompoundSS��'PSd|XSNumberSSAD`V}࿷�'PSd|YSNumberSSAD@e(E���'PSd|ZSNumberSSAD |�E�#AnimationCurveNodeLp-�:SRAnimCurveNodeS8�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD+�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�0�:STAnimCurveNodeSw�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�Y��5�'PSd|YSNumberSSAD�TD�j�'PSd|ZSNumberSSAD`�-@��#AnimationCurveNodeL�3�:SRAnimCurveNodeS��Properties70
�PSdSCompoundSS?�'PSd|XSNumberSSADt�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL�6�:STAnimCurveNodeS��Properties70I�PSdSCompoundSS~�'PSd|XSNumberSSAD`.@��'PSd|YSNumberSSAD��C���'PSd|ZSNumberSSADA�#AnimationCurveNodeL�9�:SRAnimCurveNodeS4�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD'�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�<�:STAnimCurveNodeSs�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�p@1�'PSd|YSNumberSSAD �tD�f�'PSd|ZSNumberSSAD@�e����#AnimationCurveNodeL@�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS;�'PSd|XSNumberSSADp�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD��#AnimationCurveNodeL(Rt:STAnimCurveNodeS��Properties70E�PSdSCompoundSSz�'PSd|XSNumberSSAD`V}�?��'PSd|YSNumberSSAD@e(E���'PSd|ZSNumberSSAD |�=�#AnimationCurveNodeL@Ut:SRAnimCurveNodeS0�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD#�'PSd|ZSNumberSSAD|�#AnimationCurveNodeLXXt:STAnimCurveNodeSo�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�Y��?-�'PSd|YSNumberSSAD�TD�b�'PSd|ZSNumberSSAD��-@��#AnimationCurveNodeLp[t:SRAnimCurveNodeS��Properties70�PSdSCompoundSS7�'PSd|XSNumberSSADl�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD_�AnimationCurveL��>:SAnimCurveS�	DefaultD�
�<�)�KeyVerI�*��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pW(��Y����i���q���S������%��Væ�?E���ٓ�F,���׃�A�z���n�Ff���b��f���q���}�`���)Ԃ��R|��mo�k�]��iK�t8�R$�%+�p(�������G��9��`:�<aF�?�	@̓/@3�@@KuM@��G@�+'@S�@X�?��t?)�?T0�>���?�f@�/�@¦�@!�AO!A~�'A�j)A�z+A��5A��CA��PA^�]A�riA\�tAB�A�2�A��A@ƖA�؝A'��A���At�A�G�A���AR�A� �A�^�A\��A!�A�%�A���Aj��Ar��AC��A��A��A���A�!�A(��A���A*H�A�=�A�0B
?BBDBC�B��KeyAttrFlagsi%�KeyAttrDataFloatf

R�KeyAttrRefCounti\�AnimationCurveL�>:SAnimCurveS��	DefaultD�lW@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qe�}
KeyValueFloatf\p�r�B`�B�2�BUP�B�ٱB���B#�B?s�B�ԯB�ֱB.�B�ֲB���B�ʯBp�BX��B�B�B�ۥB���B��B�h�BRY�B�M�B�B��B�A~BW�`B��AB-BJ�A��AԲ�A�ndAV�3A��,A�3.A��5A��>A��NAL�dA��A�_�A��AH�B�&BA"5B��GB$YZB��lBޯ�B
��B��B�%�BO"�B�h�B�2�Bw��BuӷB���B��B���B�P�B��BL�B�B�D�Bn��B�]�B��B���B�x�B{*�B�_�B��B7-�B$�B*V�B��B�5�BDŵB�8�B�D�B���B'$�B$��BNʷB!P�B�̯Bh��B�ٰBfݵB�N�B��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveL�>:SAnimCurveSY�	DefaultD`���q�KeyVerI�r��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q	�}
KeyValueFloatf\p�G�(F�ßk�Ñ���~M�Ï
�������������C��t��������ƯÏ$��%��û��ê���׌�̈́�G�y�ѷj�Y\Ý�N�}F@�Mi1���!�Ti�ԟ��X�ªո��c��Tg�x�&—-��G�M�䑱�*A���A��A�cB�7B6�VB�+tB檇B9�Br�Bci�B��B��B4B�B
��B'y�B
lC�WC%�Cw!C��*CT�4C=�>CmHCJRC�[C^reCv�nC�xCgV�C��C���C���Cs��C�v�CMQ�C �Cj��CZ��Ck��C_ �C���C܈�CU��C5I�C:��Ch��C2�C.V�C-�C���Cp��C>�D�D��DE�D3�KeyAttrFlagsim�KeyAttrDataFloatf

��KeyAttrRefCounti\K�AnimationCurveLH�>:SAnimCurveS��	DefaultD`�&@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pK50A�AXEA)}�@@��@';�@˴�@��@���@�]�@e,�@���@��@;W�@���@���@��A�A7$AC�A���@�!�@�&�@/��@ȹ>ʡ��#�Ίj�{�������A���ˆm-���?�I��I»�?®�2�d"���Q
�:�¨���+������Ԥ��FD���u��E�@�IA:�4A��iA���A�*�A�M�A#J�A%`�A]�A"��A;)�A`�A(̣A��A{f�Ap��AӦtAhtA-
|A���A*Z�A�s�A#�A�{A�bVA%FA�R4A:�#A}S(A��;A��LA�mYAQl^A�hPA[@4A�vA'�@l��@�=�@�v�@'a�@-y�@�O�@��KeyAttrFlagsi�KeyAttrDataFloatf

>�KeyAttrRefCounti\��AnimationCurveLx�>:SAnimCurveS��	DefaultD`��?��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qQ�}
KeyValueFloatf\pS�?$?�?�@vU@�Ȁ@u�@I��@c��@��@2�1@��?��?S�8���������	���-�c�	�:�*���l@��A�PA��A��pA	�4A�@�E9@�����빿�o��Y�̿��n�ܸ��]���� �4�;D��?+�A@¥�@��@X�!A�jA'/�A�e�A/cB�EB�&B� B)WB�uB�B�Ad��A�=�A�ݟA*	�A�#dA��;A�;A@?TA�nA3qATi`AlKMA+�5A-;	Af9�@$f@E�G@;|�@��@[u\@�@�?���?|��?��?̣??g���F(�a7O�}
����<��A?��9>��0��3�>NJq?�W�>�/�e�Ӿx���K�{�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveLؐ>:SAnimCurveSE�	DefaultD�V�]�KeyVerI�^��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p��`���u��4�3`�g$
@�w�@�[�@`t@��P@��;@�;@��??Dx�u;����������w�.��oQ��p�����Lj�fܔ�����a����e�d�º�!���*�0r2��.���)���)��C!�. �O��(�$��"��±��L€��Vy �ފ�r���$�����h�$�ᖝ��A�9����������rh���?^�>@�@O)�@�h@G��?���?�o�?:�?%��?Z�[@�g�@	6�@��?b�[�!
�S��?lw0@��?�/)? �z�%5�%�j�څ-��>��f��6ᄄ����%�ή �f��n����?e@���?��=Pǽ�KeyAttrFlagsiY�KeyAttrDataFloatf

��KeyAttrRefCounti\7�AnimationCurveL8�>:SAnimCurveS��	DefaultD�n�*@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pwKVA��_AJ�{A�*�A��A�T�A���Az��A'��A�"�A9T�A�Ac�A;�A~xBx(
B\B4��A���A~��A��B��B��*B�k5B��4B��3B	/B�x)B�%B��B��BjBL�-Be97B\?B�bDB��DB��IB�LB��MBϿSB{�XB�z^B��cBmMcB�[Bl~BB|{"B�t
B0�
Bx�B �
Bs�B
��AVu�A'��A!��AB �AN}�A�[�A�A�ՐAga�A���A�)�A�һA��AxF�Arr�AI�A�B�A���A,?�A�
�A 9�AM��A��AVT�Av��A�T�A	`A�.A�!A��,A�+?A�iA*��A�"�A��A*��A쪊A�
�A��KeyAttrFlagsi��KeyAttrDataFloatf

*�KeyAttrRefCounti\��AnimationCurveLh�>:SAnimCurveS��	DefaultD��o@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q=�}
KeyValueFloatf\p~~{@RS\@9��?w|*?ק�{�
�������)��d�90��@��hsn�s�:�\#�	?ݿyI�=u�@���@a�@�Y�@h�Q@�@�<
@Dk:@x�&@h:�?��d>l��Y;�<m5��o@{�@�5�@��@S|�@���@�@/��@�v�@�É@
�@�K9@�
U?ۜӿ)����0���7����������!����ޝ���f�Ɠѿ�[��˺�? f4@�k�@�|@tYH@XI@��?,.�?��?§X?�(?*ن?�_?�qu�g*Y�g��xx��-̢��8��+��ŅZ���A��Q,�򓙿�m�?H�f@�@��@�c�@�(�@:P@5e�?�;�>Jq��ċ���B��4�����g�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\AnimationCurveL��>:SAnimCurveS1�	DefaultD@��@I�KeyVerI�J�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\pRN>@�;@��?�x���'�����J#��/��P�gK��������BS���r�[��?�l�?@X��G>��������t�����%��QQ��\�Kc?��p�c�����?�gJп�@�'A�UA`jlA�3^A�K/AV�Aj�/AcAAn�NA2XA��XAɇTA�GAt�,A��"A�DAt��@R�@"y�@P�A��A���@ߤ�@�^�@ kb@����;��������ո��N��{Ǔ�R���v���.����1���n��H��A���/��uM�����ƥ�r�W�������?Z��@'4�@���@߯�?��:?���?8�$@�L#@V�?�/�Pט�����+��������_��KeyAttrFlagsiEKeyAttrDataFloatf

rKeyAttrRefCounti\#
AnimationCurveL��>:SAnimCurveS�	DefaultD��Q@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�	}
KeyValueFloatf\pԎ�@��@0�@���@ēH@	)@���?�=�?j�?�C@e=@��@k�?�,�>��?k�?��o?7�?w-J@,zS@Uz@�U�?`��>Sr>��=p��={}(?R��??�+@DT�@�D�@��D@��@��@pA3c-Aι!A�A�vA��A��
A
A���@u�@��?�蹿�{��M=={�>���.8�Hw�!F�RgZ���@����a�f���=�Lm?�?o?&�5?�'�?�A�?:d�?�p@�x(=��������%�;��V�:�og����6?n��?�<�?���>�?�g?��m?�0�?��
@}̄@v՞@b8�@uӼ@
��@��@��?c�	@�2@(}a@��r@�	KeyAttrFlagsi�	KeyAttrDataFloatf


KeyAttrRefCounti\�AnimationCurveLX�>:SAnimCurveSy
	DefaultD�*/@�
KeyVerI��
�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q)}
KeyValueFloatf\pUy�@���@��b@��@m��?�#��&g��Tf��;��Gآ�`��F�����e�62�3_���ҕ?��[@	��@���@��@�[@%��?OҾ�P��j8�
�h]�z&r��b���lm.@Ⱦ�@:�@���@oD�@�O�@�:�@�=�@	�@�-�@eM�@��@��?� 3���L��B��4������Л���U���#��T�?�%�
�?�5�? [0@vj@�=m@�X@g�@@g=$@�@�`�?h��?��?:3�>�qU�Κ��2��U������r�����B��	�l���H�O��n�����?��c@cُ@�̗@z�@JӔ@��@w�8@���?�{ͽD`���]D�gS���%��SKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\kAnimationCurveL��>:SAnimCurveS	DefaultD��=�5KeyVerI�6�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p����g�����k����E�ݿ2���)>���?i��?���?jQ�?�C�?�0_>)~׿hр���������X������;��������-����ֿw;H��m��\��
U��jl���G��������H�膿\�>�����Zg�f:�y�?�()��%ӿ&4i����?��?�'%?�����8��r��m;��|6���~��8&��0v��D���|}�����LK��<&�ҋ9�<J0��)��oL�F)v��1_�2\��]�T>U��=䏫?�B\@�p;@�@�4�?�?�~�?Sw?�ͭ���ڿ�&��%���7���d�yĆ��T����~�`OU�;��@g�>u	G��f�>��?���?�KeyAttrFlagsi1KeyAttrDataFloatf

^KeyAttrRefCounti\AnimationCurveL�>:SAnimCurveS�	DefaultD`O���KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qq}
KeyValueFloatf\p{����������������,�.*��h�q���O$�	�.�h"0?k�|��߹�:�I�4��鮢�.���1���<c��2h�`"��5r���+������w���A��@����W��:A#��A9]�A|ʰA
�A�U�Axf�A	�A�
{A�
'A�r@�έ���X�G���I��h��8^�w�>�l�"�-I(��~�&����$������B��ZT������-��� +��^��Pd������l��JŒ�	���l�z�����������x�_�f��
Y���E���8�S\"�:���AA��Q���^��|6�L�������*+�D8�Ҋ��C����m��5��.@,����DV��x���KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCounti\� AnimationCurveLȑ>:SAnimCurveSe	DefaultD`���}KeyVerI�~�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q }
KeyValueFloatf\p����9Y���>쪍>��h?��?%@�l@�ݨ@���@O?�@L�@�.�@d�@&�@�f�@0G�@;�@2��Q�����-�Ct��H.&����?�I�@�ֿ@���@s��@/O�@mdN@(=��������B?��?���<FD������-5�Ou�������~�������_��#��-(�A�#��M�Z���v���r����������n�_���Z��j�(|
� c��Z������k����T�^����M>?"�
@kS@��@�>�@�G�@C��@ԧ@Z��@D�@���@��{@��[@�c5@dº?ͷ4=g�M��ax� QϾM�V>Q.?t�?��@'�Q@�X�@�T�@/��@? KeyAttrFlagsiy KeyAttrDataFloatf

� KeyAttrRefCounti\W&AnimationCurveL��>:SAnimCurveS	!	DefaultD��w@!!KeyVerI�"$�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�%}
KeyValueFloatf\p]��@���@Hi�@�2A��A�CA���@�·@h@O�@� /@=#@`mG?�SԿ6F��.v�:/����'@6�@��1A�ZgA��A�Ao�A3x�A͗A��A���AF��A�{A
�AK��A�!A��%A�qA6��A�nA�MA�\[AU3�A�јA?�A�?�A��A���A�P�AY؉A�Aȫ�A�hHA��)A��AʈA�
A�:A�-A�E.A�DA'�NA��ZA �nAr6vA�ywA�~A��nA@IZAH=?A#�@A�@���@Y�A��	A�{�@�2�@�%�@�Y@�X>@�.�@lc�@KM�@0�@�@���@}�@��@�@ߗ�@L�A���@��"@��@�%KeyAttrFlagsi&KeyAttrDataFloatf

J&KeyAttrRefCounti\�+AnimationCurveL(�>:SAnimCurveS�&	DefaultD�����&KeyVerI��)�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q]+}
KeyValueFloatf\p5\��Qο`�'���-��Y��� ���'(�\��E��~ő���������k���o8��U��2<��3�����\��2����e�������?���?x�?�{@���@�u�@ï�@»��g�����Qk�q��yU��Y]�Җe�t�^�!�O���;�b58�g7:��&���
�����&b��k!�w�-�3�,����Z����1���j��&H����@�����r��T����$��ib��%��1���1���;��23��I&�[h����ق��
��-��30��=��i+�x�W�&���-�H=�-��۴���>
������!�y�;��2�����!�c�+��*��+KeyAttrFlagsi�+KeyAttrDataFloatf

�+KeyAttrRefCounti\�1AnimationCurveLX�>:SAnimCurveSQ,	DefaultD ���?i,KeyVerI�j/�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q1}
KeyValueFloatf\pᾧ?��?��@;�
@kt:@�P@/dg@!U�@@|�@�I�@�
�@���@���@���@j��@���@KԾ@.q�@7�@E"	@<B7@^*@F�?1��?~-W@/$�@*A�A�YA��AJ϶@c�f@�)@A��?(@Y�:@m�%@ؿ�?��>�r��������/U�>&�	������l�!�����Vg���I��� �����(��.���.��0����*���}ۿo]����սC�2�>/8:?x��?�EO@��r@�7�@ܭ@Vܾ@��@"0�@_#�@���@���@�w�@K��@q��@�(�@��:@��?T;G>fXɽz�	?:�?�"�?�r'@#gW@��@z`�@��@�F�@+1KeyAttrFlagsie1KeyAttrDataFloatf

�1KeyAttrRefCounti\C7AnimationCurveL��>:SAnimCurveS�1	DefaultD���
2KeyVerI�5�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�6}
KeyValueFloatf\p��7�u2E�ms>1�n>���=]+O?j�@6]@@L@w @{��?T"�?$�?�v-@��R@V�@���@�U�@�A�w"A��AGf A=v4A�wHAZA�gAc�gA�^AHNA��?A�nA�r�A�F�AuH�Aׯ�A턟AD�A
��A��A�X�Ac>�A�9�Adr�Az��A���A��zAp�LA-#A^E�@ͤ�@u��@we�@���@CA�6A�As�A�A���@���@�L�@���@�`O@j��?9�=??}
?@.�?
�@�5O@�i@��@�h?�ML?�)?�#>�e?��?R�>��p�+�o��0E�NѶ�}�ȼ��M>�e?�{U?��?+9!@V=4@�M�@�,�@��@�6KeyAttrFlagsi	7KeyAttrDataFloatf

67KeyAttrRefCounti\�<AnimationCurveL�>:SAnimCurveS�7	DefaultD�l9'��7KeyVerI��:�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qI<}
KeyValueFloatf\pf�9�;K@�eGG��1N��xT���U���R��wI��*?�f9��6�@9�5B���O���\��U�w>�3�.�2-�{&-���)��'�9$�;� �ڸ�hF��	�P\���������ܡ��r���ч��&g��_:�!�[��hc��yV�`
G���@��@��@�[�A���;���0�� ��S�B��L/����l�/��@��7@��F5�����b����J���������r!����n�#�7G2�Da<�O#@��o;��})�l(�;�>8�Nz���#��)���6�L�?�T�;���6���0�h)��$��$�	D*��/��3��
8�W�:���A�F�=�� '��!�s<KeyAttrFlagsi�<KeyAttrDataFloatf

�<KeyAttrRefCounti\�BAnimationCurveL��>:SAnimCurveS==	DefaultD@��)�U=KeyVerI�V@�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�A}
KeyValueFloatf\p"�N�W6H��sB��=�&Y8�G6��8�!>�M�A�,(B�UC��A��=�d�4��W)�ͬ(��3�M�?��AE��|H�ťJ�("J��'J���L��M�;Q�3�X��^��Aa���q��	�����Bv�)�L�Zr.����w����>#��i#���#�.�'�h.��*;�H�G��U�Ni�[sr���k��B[�?�F�˄8�m8���A��T��g�:>r���w���~�Db����y�El��'e���^�ĜR�$3G�u�C�>MI�:�U�20_�4_�A^�=�\��9Z���U�)XL�"G��J�q�L��R��&\��c��Ga�P$Z�zV���R�*�L�*�K��H��@L���`�a}f�BKeyAttrFlagsiQBKeyAttrDataFloatf

~BKeyAttrRefCounti\/HAnimationCurveL�>:SAnimCurveS�B	DefaultD ݶ ��BKeyVerI��E�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�G}
KeyValueFloatf\p����
�q��'�l
4��,6��3�U%�
r�(���~��"�����LJ(��(5����(���2�����'�^6��@�t�@�CAF�ZA�wA0|�A#�A��A�BӮB�m
B���A�p�A�aA��@%�?b�>��?Mr�@S9$Ae�aA`ABs#A���@]u�@ؾ�@�N�@d��@|�?h߿+������.����i�����dRQ�"�,���:�lL�RcR���y����������������_Z��*��9��i@��B����h�����f?��������������� U���&��8��e�������
'��W*���	��V�_� ���O��[���GKeyAttrFlagsi�GKeyAttrDataFloatf

"HKeyAttrRefCounti\�MAnimationCurveLH�>:SAnimCurveS�H	DefaultD`M#@@�HKeyVerI��K�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q5M}
KeyValueFloatf\pkB�B�c�A���A���A9�A�A]�Aj �A�P�A4�A��A�:�A|��A���A(kYAy��@�-�̔��
i��I���*���HL����������\��\=��H7���_›���}��rѣ��Ī��B��2�¢^��R�|§x�`�~�	�w�'kf’*[��.Z�.9G�c��q>���b��A�>A=FAEf?A�r
A�`�@t�?ĭ���{�y���iֿF{?���@�SA(��A��A�Y�Ath�A�<�A~��A���A��	BQh"B�m+BÃ+B�j#B��B��B�1�A ��A���A��Am%�A)l�A0��A��B�6B�B<B��AG]�A$3�A��A��Bu�
B_MKeyAttrFlagsi�MKeyAttrDataFloatf

�MKeyAttrRefCounti\wSAnimationCurveLx�>:SAnimCurveS)N	DefaultD�D7@ANKeyVerI�BQ�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�R}
KeyValueFloatf\p% �AE+�A�a�A���AiK�AH.�A�7EA�@�a�����
v���̮?]NAD��AԠ-B[�jB�5�B��B�UdB��CBq�+B�tB��A��A`��A%u�A�܌A��=A]p�@7܁@�E���������Zq"�(��@�HsA�{�A�v�AxʩAq�A�+|A��,A��@0<�@��@�)�@v�@'��@�+IA���AQPB/_4BjGKB�2WBe�]B�.YBkKB��5B�xB�,B�<B���A���Am�AV?�A�ݦA�{�A�A��]�$
��}b��R|�o�g�w�-��۬�P+@��OA�(�A���A�c�A���A$�Ab��A� �A1��A�mnA�
UA4�YA��:A���@]�3�3��SKeyAttrFlagsi=SKeyAttrDataFloatf

jSKeyAttrRefCounti\YAnimationCurveL��>:SAnimCurveS�S	DefaultDJ�J@�SKeyVerI��V�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q}X}
KeyValueFloatf\pP�WB'�WBn�[B��bB7ceB��bBH�RB�>B�,B�j"B��!B��!B�+B3sB���A���A\��A��@@G�����1������?��$���a��{4��-�>@�}�@8�2Aj�FACQEA^mJA��XAg�iAw�xArAX�pA��fA�XA��<A��?AQ�dA�)�A�;�A��Aֆ�A���A�|�AIH�A�k�ACc�AcGA\�(A�.%A�hWA+b�A���A�N�A���A:��A�e�AB��#B��8BsIFB;SB�\Be�\B�QB1�EB�L>B�C:B�:B�l;B�:B�68BI�8BA8BBx�PBH[BoT_B�P_B�^B��[BXw\B�`B��bB`�cB�t]B��OBH�HB�*HB�XKeyAttrFlagsi�XKeyAttrDataFloatf

YKeyAttrRefCounti\�^AnimationCurveLؓ>:SAnimCurveSqY	DefaultD��]]��YKeyVerI��\�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q!^}
KeyValueFloatf\p�'zB|)�B�,Cխ;CQ�<Cc?C�2IC�+QC
eOCʍHC�<CC�?C��<C_':C�R7C��6C�h1CZ�$CQC-�C�	 C�7CP�3C"�;C�.<C�h5C)�9CՍCC��MC@�[C���CY2�C�žC%7�C�T�C�.QCG�AC�CC�m=Cń5C��4CZ�2C��+CЬ#Ct>"C�*C�Z0CLF.CV�*C<)C��(C*�)C]�)Cy&Cj�C|�mB��A�?�A�֚A�&�A���AL�B`KB9d�Bq�C3�,C��6C̽5C��/C$�$Cx�C`pC�C��C��
C��CʁCf�B��\B��3B�j*B��,B�c;B0�KB/��B�I�B��Cb�4C�:C�^9CG5C9�3CK^KeyAttrFlagsi�^KeyAttrDataFloatf

�^KeyAttrRefCounti\cdAnimationCurveL�>:SAnimCurveS_	DefaultD࣮R@-_KeyVerI�.b�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�c}
KeyValueFloatf\p��Bd��BAK�B~`C�C]7C�1C��CI�C�aCj��BeM�B�^�B��B@a�B�H�B��B��B�߿B��B�F�B���B��Bф�B�?CF�CޏCO;C�C���B�1�B��B�e�B�)�B���B���B�_Cn3C=�C'5C�$C7�%C-v$C�"C�t$C�&C��C�C��C��C<�CE�
C��B)�B���B-��B,��B���B���B���B��B���B�B���B8!�BX�B��B���B/��B�!�B�
�B��BXe�B�h�BS��B���B�BM��BW��B��B}6�BQ��B���BWa�B0P�B���B�h�BH��B ��B��B�p�B���B�cKeyAttrFlagsi)dKeyAttrDataFloatf

VdKeyAttrRefCounti\jAnimationCurveL8�>:SAnimCurveS�d	DefaultD ��`��dKeyVerI��g�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qii}
KeyValueFloatf\p\>B��BF�C.�0C�7C��8Cmo9C$�8C��6C��3C�</C�,C�,C�h,C�A+C$�'C:�#C\D C�#C�C8�C�H;C`
8C7�-Cf.C�F2C��5C9C$;=CսGC�+pC~�C��C��C0��C%�RC�k@C�1<C$�:C�:C_;C�|;C��9C��9C^-=CP�>C��;C��9C�[9C�-8C�%6CK�3C_�/C9h&C�CT�FB�s�A��*A`�A@�:AH��A��A`k	B�oBg��B��#CB.C�2C7D,C��Cw�C?3Ce9�B�U�B���B��C|I�B�{�B�4B���A�A���A���ADB�;CBk��B��	C}�'C�0C�.C��'C�	&C�iKeyAttrFlagsi�iKeyAttrDataFloatf

�iKeyAttrRefCounti\�oAnimationCurveLh�>:SAnimCurveS]j	DefaultD@V�ujKeyVerI�vm�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q
o}
KeyValueFloatf\p�����?�������O���������b��",�����w����8���M��_����2���_
��
���α�:G-��y(�
���]�=��zz���
�����A���{#��&��g6��}+��I����<
����M^�V����y���h�L�i��_�.L���?���-�/�o�	�>��Ч����ܢ ��_1��3�)r*����
�����3�F��x�������g����u��P��Ź��A���{��������7r��h���1��������������\����
��
������������/���L��j����b���S�����9�������4��y6�����7oKeyAttrFlagsiqoKeyAttrDataFloatf

�oKeyAttrRefCounti\OuAnimationCurveL��>:SAnimCurveSp	DefaultD�m7�pKeyVerI�s�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�t}
KeyValueFloatf\pl�	��
�LϢ��������� ���t$�Q%,����0��v��
(��gR��=D�e��%Z���������տ��_d��������:��Q,�lA���Է�_��f�!���/�<SB���A�i�C���d�I���S+ɿh.t�i߀�F�������(=���7�!QW�vs\�Y�H�P�5�o�%��9��0�z���ӽ��?N�9?k����cR�������rȿ����	���6�*�>�\��y뮿�S���پ�ϕ�8�1�2NX��G꿫��ކ6���6��d>�O�:���)�4H(���ܿ�-����C�c-�W��������c�"#��I��
(=#~�>���>��?��?�4�?�tKeyAttrFlagsiuKeyAttrDataFloatf

BuKeyAttrRefCounti\�zAnimationCurveLȔ>:SAnimCurveS�u	DefaultD��0��uKeyVerI��x�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qUz}
KeyValueFloatf\po��a
��Ť���£��Ϩ����j�0�T�}�!b:@�H/Aw$@A��@����ih��B������I���1���P�i�a¸�[�el5���&�wN�8�������'��,�jE7�
�J�$�z´(���ʋ��3}�.m�a#e�nBf�W�a�
�]hb�2f�k�_��ocµ4[��H¢'A�A3��W”�$*,�H$1²�/�,�'�؈ ����a������Q���Z���+��酤����
��d���却��q�����is�]$X���Q���f��Lz�)g��������������f����g��c���y����e��`��t]�e�t���������,���0b�A]T�zKeyAttrFlagsi�zKeyAttrDataFloatf

�zKeyAttrRefCounti\��AnimationCurveL��>:SAnimCurveSI{	DefaultD�e�?�a{KeyVerI�b~�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p/[��ͳ���
�����ۗ�O��8w���QP��O˜"¨���T±����L¢�±����w��ҧ��/[��/[��/[��/[��0[��0[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��/[��R���ֳ���q�����Τ�&i���QP�#�KeyAttrFlagsi]�KeyAttrDataFloatf

��KeyAttrRefCounti\;�AnimationCurveL(�>:SAnimCurveS�	DefaultD`���KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pC������R���JF��Ҽ��R��(��V����������x�����g����&���׸��B��>��5�����{���C���C���C���C���B���B���A���C���C���A���C���C���C���C���E���C���C���C���C���E���E���E���E���E���E���E���C���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���C���E���E���E���E������������L��?T��$��'��꺪��������DžKeyAttrFlagsi�KeyAttrDataFloatf

.�KeyAttrRefCounti\ߋAnimationCurveLX�>:SAnimCurveS��	DefaultD`��E@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qA�}
KeyValueFloatf\p�G,B'�-B
`2B6�9B{�BB>LB�YTB��ZB��]Bϼ]B�[Bz�WB��RB�MB;�FB�K@B�":B��4BXD0BtW-B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B�G,B@�-B�1BHs6B�=BZ{DB7LB��SBh�ZB��]Bk�KeyAttrFlagsi��KeyAttrDataFloatf

ҋKeyAttrRefCounti\��AnimationCurveL��>:SAnimCurveS5�	DefaultD�!�!�M�KeyVerI�N��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p
�
�������Sk�09���g~�fW �',!��*!��� �r���������/3������e��<l�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
�
��
��
��
�
�
�
�
�
�
��
��
��
��
��
��
�
�
��
��
��
��
�
�
�
�
�
�
�
�
�
�
�
�
��
��
��
�
�
��
��
��
�
�
��
�
�
��
�
�
�
�
�
�
�
�
��
�
�
��
��
��
��
��
�
�
��
�
�
��
��
��
��
��
��
�
�
�(���P�������d��R���P��Z �%,!��KeyAttrFlagsiI�KeyAttrDataFloatf

v�KeyAttrRefCounti\'�AnimationCurveL��>:SAnimCurveSّ	DefaultD��=@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�@%F�@��@rb�@K�@o!�@�R�@��@�x�@Tp�@���@CJ�@Jn�@���@3L�@/�@���@}N�@S�@m�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�W�@�H�@�_�@I;�@�j�@�e�@��@�!�@�x�@��KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\˜AnimationCurveL�>:SAnimCurveS}�	DefaultD�*�J@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q-�}
KeyValueFloatf\pU�TBn�UBQ�ZB�aB�WjB�5sB`?{Bv��B#+�B;(�B�(�B�~B��yB�AtB�$nB?�gB�bBi�\Br�XB��UBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBT�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TBU�TB��UBpdYB�~^BD�dB�kB�gsB��zB���B#+�BW�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\o�AnimationCurveL�>:SAnimCurveS!�	DefaultD@�� �9�KeyVerI�:��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qѡ}
KeyValueFloatf\p����|	�?C�Rb�ga����O���|�J{�������|���j��:���\��Y
����H�����������������������������������������������������������������h��V	�'�h
����q����n���|���KeyAttrFlagsi5�KeyAttrDataFloatf

b�KeyAttrRefCounti\�AnimationCurveLH�>:SAnimCurveSŢ	DefaultD`I[@ݢKeyVerI�ޥ�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qu�}
KeyValueFloatf\pK�r@��t@ˈ|@r�@�&�@x�@�M�@Lj�@7}�@;w�@1k�@�Ɵ@2��@ty�@I��@���@ȭ�@� �@�%y@̓t@K�r@O�r@K�r@O�r@J�r@J�r@K�r@L�r@J�r@I�r@I�r@J�r@M�r@L�r@T�r@F�r@X�r@Y�r@S�r@V�r@S�r@F�r@C�r@B�r@@�r@>�r@=�r@>�r@<�r@=�r@=�r@;�r@<�r@:�r@;�r@;�r@<�r@?�r@?�r@=�r@;�r@<�r@>�r@=�r@:�r@;�r@:�r@<�r@;�r@<�r@=�r@<�r@=�r@=�r@<�r@=�r@>�r@>�r@;�r@>�r@<�r@=�r@=�r@%�t@��z@`��@E+�@��@委@S›@�u�@5}�@��KeyAttrFlagsi٧KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveLx�>:SAnimCurveSi�	DefaultD@��H@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p2�FB?�GB�PKB�PB@WB�]BX�cB3=hB�zjB�vjB@�hB�JfB޳bB|^B��YB,JUB��PB
�LB�IB��GB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB1�FB2�FB2�FB1�FB1�FB1�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB2�FB��GBokJB�;NB*�RB5KXB1�]BFJcBqEhB�zjBC�KeyAttrFlagsi}�KeyAttrDataFloatf

��KeyAttrRefCounti\[�AnimationCurveL��>:SAnimCurveS
�	DefaultD "��%�KeyVerI�&��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p������A��U���(�����Z����w��b��,`��j���;�����UC���,���Q�������\��}.���������������������������������������������������������������������������������������������������������������������������������������5��uv������������������z��b���KeyAttrFlagsi!�KeyAttrDataFloatf

N�KeyAttrRefCounti\��AnimationCurveLؖ>:SAnimCurveS��	DefaultD@�{�ɳKeyVerI�ʶ�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qa�}
KeyValueFloatf\pb���{6����������L!��ފ������^��ɳ�����!w���/��j��Mn���N��K������=��������L��b���d���b���f���`���b���b���b���b���b���b���d���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���d���d���b���b���b���b���b���	.��Eg��M����������=������_��ɳ����KeyAttrFlagsiŸKeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveLб9SAnimCurveSU�	DefaultD��H@m�KeyVerI�n��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p�EB�8FBKB��RB�u[Bk�dB�(mBnjsB�vBïvB�tB��pBF�kB;�eB�m_B��XBl�RB�TMB��HBJFB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�EB�HFB��IB�OBٷUB'']B��dB̔lBd�sB�vB/�KeyAttrFlagsii�KeyAttrDataFloatf

��KeyAttrRefCounti\G�AnimationCurveL@б9SAnimCurveS��	DefaultD%�
��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p(�n���o�Z9t��vz�����K������of��N<���:������S����)���K�����p��ѯz��,v��dr���o�'�n�'�n�(�n�&�n�)�n�(�n�(�n�(�n�+�n�(�n�5�n�-�n�(�n�%�n�,�n�/�n�%�n�,�n�0�n�/�n�0�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�*�n�*�n�)�n�*�n�*�n�*�n�^p�?$s��w��}�hN������i���i��S<����KeyAttrFlagsi
�KeyAttrDataFloatf

:�KeyAttrRefCounti\��AnimationCurveLpб9SAnimCurveS��	DefaultD���?��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qM�}
KeyValueFloatf\p�@�?�/�?��?���?7"�?��?{J�?��@c`@�Y@�@���?p^�?�G�?.��?�v�?oS�?��?ꚲ?(�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?�@�?I�?�?��?1��?�U�?�~�?"�?P�@i`@w�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveLѱ9SAnimCurveSA�	DefaultD@�K@Y�KeyVerI�Z��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p��XB��YB�^BA
fB��nB��wBc�B�*�B>��BG��BU��B�ՁB��~B�xB&�rB�`lB�RfB)�`B�\B��YB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��XB��YBex]B��bB�3iB�~pB�xB�BH0�B>��B�KeyAttrFlagsiU�KeyAttrDataFloatf

��KeyAttrRefCounti\3�AnimationCurveL�ͱ9SAnimCurveS��	DefaultD@�.���KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pu��
���i���d����۵��Ŀ��п��ٿ�A޿'9޿�Cۿ|�տ��ο9�ſ����� ���D����)9��u��	u��u��u��u��u��
u��u���t���t���t���t��u��u���t��u��6u��7u��2u��2u��u��u��u��u��
u��u��u��u��u��u��u��u��u��u��
u��u��u��u��u��u��u��u���t��u��u��u���t��u��u��u��
u��u��
u��
u��u��u��u��u��u��u��u���t���t������6y���,���ά�h~��VeĿ��ϿG�ٿ�A޿��KeyAttrFlagsi��KeyAttrDataFloatf

&�KeyAttrRefCounti\��AnimationCurveL�ͱ9SAnimCurveS��	DefaultD����?��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q9�}
KeyValueFloatf\p��n?�kp?
�v?C�?�8�?��?���?E��?�:�?�3�?`ߠ?ɜ?݆�?c��?���?}�?�"�?2z?�t?5p?��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?��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?F�p?0u?��|?�q�?%��?�ϐ?�^�?�ɟ?�:�?c�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\{�AnimationCurveLα9SAnimCurveS-�	DefaultD�%6@@E�KeyVerI�F��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p/�B×B)B>�B�4BZ�B�B�#B	&B�&B1$B�!B�B��B�B$_B'�Bh�B\�BxxB/�B/�B/�B/�B/�B/�B/�B/�B/�B/�B/�B0�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:BrBp B��B��#B 	&B�KeyAttrFlagsiA�KeyAttrDataFloatf

n�KeyAttrRefCounti\�AnimationCurveL0α9SAnimCurveS��	DefaultD`g3@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p;��@ró@�=�@G�@
�@_�@�]�@&�@*sA�nAN��@���@X/�@��@{��@���@S��@J0�@���@�x�@;��@:��@;��@=��@8��@;��@9��@;��@;��@;��@;��@;��@;��@;��@9��@:��@9��@9��@9��@9��@9��@9��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@:��@�߳@��@�A�@�|�@J��@�n�@Ex�@�7�@,sA��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL`˱9SAnimCurveSu�	DefaultD���%���KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q%�}
KeyValueFloatf\pv�,�q�.�0�6���B��
Q��-`��n�Ҕx���}���}��Kz��t���k���a�ÃW�9�L��C�N@:�GB3��.�v�,�v�,�v�,�w�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�v�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,�w�,���.��4��=��G���S�c�`�Vm��x���}�O�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\g�AnimationCurveLP��9SAnimCurveS�	DefaultD`@SG@1�KeyVerI�2��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�:B	<Bg�ABg�JB�TUB�B`B�%jB�qB�MuB�FuBg�rB'jnB��hB��aB�ZB�]RB`KB��DB@W?BG�;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<�FB��NBUWB^�`B}xiB��qB�MuB��KeyAttrFlagsi-�KeyAttrDataFloatf

Z�KeyAttrRefCounti\�AnimationCurveL ��9SAnimCurveS��	DefaultD`Ռ�?��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qm�}
KeyValueFloatf\p�f4?:7? 0A?�lP?��a?H�r?x��?��?CS�?�N�?���?��?�?��t?�Mi?�]?F�P?��E?X�<?�6?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?}f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?�f4?@#7?��>?ߌI?��V?~e?Hs? ;�?b�?S�?��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveL�ɱ9SAnimCurveSa�	DefaultD ���y�KeyVerI�z��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\pq�Ƚ}OνA[�Z
�K,�vIW�_��ᐕ�娟�ޔ��Ԙ�q ��3�|�s�\���=�j�!����9��a۽7�ͽw�Ƚ��Ƚ��Ƚ`�Ƚ��Ƚ��Ƚ��Ƚ��Ƚ}�Ƚc�Ƚ��Ƚ��Ƚ��Ƚg�Ƚ/�Ƚ��Ƚ��Ƚ�Ƚ��Ƚ�Ƚ
�Ƚ_�Ƚ>�Ƚ=�ȽM�Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚt�Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚ��Ƚv�Ƚ��Ƚ��Ƚ��Ƚ��Ƚ�ν�߽�����~�3�'QX������������;�KeyAttrFlagsiu�KeyAttrDataFloatf

��KeyAttrRefCounti\SAnimationCurveL�ɱ9SAnimCurveS�	DefaultD��<@�KeyVerI��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p4��A"��AC!�A�4BiQBt�B�&)B��1B!�5B��5Bz3Bm.B�D'BmMB�B��
Bg�B�S�A}k�A��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��A4��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��Ai��A��B��	B4�B�Bs`(B1�1B!�5B�KeyAttrFlagsiKeyAttrDataFloatf

FKeyAttrRefCounti\�AnimationCurveLʱ9SAnimCurveS�	DefaultD �W�?�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qY}
KeyValueFloatf\p��*?{-?�@6?.D?��S?��c?i9q?{?+�?9�?ˊ|?+�v?�o?^{e?��Z?��O?m�D?_�:?�L2?G�,?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?~�*?Z�*?��*?��*?��*?c�*?��*?l�*?`�*?j�*?i�*?��*?w�*?x�*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?��*?4-?��3?Y�=?��I?��V?�d?�Qp?o{? �?�KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\�
AnimationCurveLȱ9SAnimCurveSM	DefaultD� S��eKeyVerI�f�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p������HVý��JM�B5�3�Z���z�۳��^�������l�h!T�1�9�7��S��5뽲ν���I}������/���y�������x���d���y���4���e�������ܙ��a���˘�� ���險�p���ޙ��ڙ��ۙ������������\���_�������'���]���֚��E���Қ��5�������0���a���t���1���0�������M���N�����������#���k���0���V���q���V���U���t���4���9���������[���6���J���0���嚪�����f���<���6����\���ʽ��׽�����]��5��X��z����'
KeyAttrFlagsia
KeyAttrDataFloatf

�
KeyAttrRefCounti\?AnimationCurveL0ȱ9SAnimCurveS�
	DefaultD`�;@	KeyVerI�
�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p���Ad��A��A��A��Bc�Bz B<�$B�(Bĕ(B�&B�!BtoB�HBʊBv�B0a�A�AW_�A�B�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�t�A*i�A��By�	B�4BbnB1�$B�(B�KeyAttrFlagsiKeyAttrDataFloatf

2KeyAttrRefCounti\�AnimationCurveL`ȱ9SAnimCurveS�	DefaultD(.@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qE}
KeyValueFloatf\p�@qAw�rA��yA���Ah]�AK��A�X�Az��A
#�A��A�b�A�L�A�7�A�}�At�A8n�A仂A�O}A#�vA%�rA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA�@qA9sA%&xA��AJ�Aɭ�A�ȐA��A���A#�AoKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveLPƱ9SAnimCurveS9	DefaultD`�,�QKeyVerI�R�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p�d���f��po��3�ظ��g��ꈥ�Ϙ��XN��"C��ls���ī�R2��ε���4���m�������s��}k��`f��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���f��m��w��a�����@V����������WN��KeyAttrFlagsiMKeyAttrDataFloatf

zKeyAttrRefCounti\+$AnimationCurveL�Ʊ9SAnimCurveS�	DefaultD �@5@�KeyVerI��!�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�#}
KeyValueFloatf\p��A�*�AaZ�A�s�A���A�BB��B �B�VB�OB��B�,B��B�B���AI[�A�R�A���A�c�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�`�Al:�A���Aev�A*��A�Bo�B?�B�VB�#KeyAttrFlagsi�#KeyAttrDataFloatf

$KeyAttrRefCounti\�)AnimationCurveL�Ʊ9SAnimCurveS�$	DefaultD��@�$KeyVerI��'�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q1)}
KeyValueFloatf\p=�@�d�@#�@��@@�@`��@�fA\
A��
A��
A�IA��A.�A}o�@��@Z�@���@�t�@�&�@��@=�@=�@=�@A�@<�@=�@=�@=�@>�@?�@>�@>�@>�@=�@=�@=�@=�@=�@>�@>�@@�@@�@A�@C�@C�@E�@F�@G�@G�@G�@G�@F�@G�@G�@G�@G�@G�@G�@G�@G�@F�@G�@G�@G�@F�@G�@G�@G�@G�@G�@G�@G�@G�@G�@G�@G�@H�@G�@G�@G�@G�@H�@H�@;��@H��@Ao�@���@���@�%�@�A� 
A��
A[)KeyAttrFlagsi�)KeyAttrDataFloatf

�)KeyAttrRefCounti\s/AnimationCurveL�ı9SAnimCurveS%*	DefaultD� ��?=*KeyVerI�>-�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�.}
KeyValueFloatf\p�/>�34>��2>D�=ѱO�V>���)��y��c��88��m�����U����3T��_�>�;M��=Pm'>,!7>��3>�/>��/>��/>��/>�/>�/>�/>�/>
�/>.�/>�/>�/>��/>��/>͸/>�/>ڸ/>Ǹ/>׸/>ɸ/>ĸ/>��/>��/>��/>��/>��/>��/>x�/>|�/>}�/>w�/>��/>��/>��/>��/>��/>��/>��/>��/>}�/>��/>��/>u�/>}�/>��/>��/>��/>��/>��/>��/>t�/>��/>��/>z�/>x�/>{�/>e�/>o�/>��/>d�/>s�/>u�/>n�/>�`4>�6>j�>��=�m��	���"���y��c���.KeyAttrFlagsi9/KeyAttrDataFloatf

f/KeyAttrRefCounti\5AnimationCurveL�ı9SAnimCurveS�/	DefaultD@݀)@�/KeyVerI��2�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qy4}
KeyValueFloatf\p�LA�LTAPuA�ǓA��AE�A�K�A�LBۍB��B�B�w�Ai��At��A�M�As��A|��A@�A��fA(-SA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA�LA��TAD�lA�F�A��A��Az��A�]�A`B܍B�4KeyAttrFlagsi�4KeyAttrDataFloatf


5KeyAttrRefCounti\�:AnimationCurveLű9SAnimCurveSm5	DefaultD �@�5KeyVerI��8�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q:}
KeyValueFloatf\p9��@�X�@^��@��@e^A1
A�8A�A=�!A��!AH�A2lA�ASsA�vA4�@���@D�@���@Y��@9��@9��@:��@;��@7��@9��@8��@9��@9��@9��@8��@8��@9��@:��@6��@8��@8��@9��@9��@9��@9��@?��@A��@B��@C��@J��@J��@K��@L��@K��@L��@J��@K��@K��@K��@K��@K��@K��@K��@K��@K��@J��@K��@K��@K��@K��@K��@K��@K��@K��@K��@L��@K��@K��@K��@K��@K��@K��@J��@L��@K��@K��@K��@N��@hS�@{��@3��@�A�Z
A��A׍A=�!AG:KeyAttrFlagsi�:KeyAttrDataFloatf

�:KeyAttrRefCounti\_@AnimationCurveL�˱9SAnimCurveS;	DefaultD�Ʃ?);KeyVerI�*>�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�?}
KeyValueFloatf\p�7N=�oD=L�<'㟽Ll��;����v�Ʀ��+���or��)��$В�_�e�N�#�U�Ͼ`�]�J���SP"��=�4F=�7N=�7N=57N=�7N=�7N=�7N=�7N=�7N=�7N=8N=Z7N=]7N=�7N=�7N=�5N=Q7N=�6N=#6N=T6N=�5N=�5N=�4N=�4N=�4N=�4N=�3N=e3N=i3N=)3N=3N=#3N=�2N=R3N=83N=3N=g3N=I3N=�2N='3N=3N=3N=�2N=3N=3N=�3N=z3N=�3N=&3N=13N=3N=�2N=f3N=h3N=F3N=�2N=3N=�2N=�2N=�3N=h2N=�2N=�2N=�2N=`�C=���<W˼�R��Ъ�����o�����5����?KeyAttrFlagsi%@KeyAttrDataFloatf

R@KeyAttrRefCounti\FAnimationCurveL�˱9SAnimCurveS�@	DefaultD��50@�@KeyVerI��C�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qeE}
KeyValueFloatf\p嬁A侅A�ߕA���A0e�Aj�AeB��
B}B|B��BDb	B�B���A��Al�A젯A2v�A��Aw1�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㬁A5�A���A`d�A�Z�A��A̸�A>rB��
B}B�EKeyAttrFlagsi�EKeyAttrDataFloatf

�EKeyAttrRefCounti\�KAnimationCurveL�˱9SAnimCurveSYF	DefaultD �$�qFKeyVerI�rI�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q	K}
KeyValueFloatf\p�0&���"���-����ℙ�)sU��Q���ٿ?qڿ_	��N-�S�d��e���8������~��y��w�*9#��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&��0&�͔"�G����	�������a��8�[�'����ٿ3KKeyAttrFlagsimKKeyAttrDataFloatf

�KKeyAttrRefCounti\KQAnimationCurveL ̱9SAnimCurveS�K	DefaultD M�@LKeyVerI�O�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�P}
KeyValueFloatf\piZg@�h@<�k@7<k@��b@�Q@�9@�!@��@�@*�@sc,@E�=@`N@p\\@�f@&k@fl@H�j@�`h@iZg@iZg@iZg@iZg@hZg@kZg@iZg@iZg@iZg@iZg@iZg@iZg@iZg@iZg@iZg@iZg@gZg@gZg@gZg@gZg@gZg@gZg@eZg@eZg@eZg@gZg@hZg@eZg@eZg@eZg@gZg@gZg@eZg@gZg@gZg@gZg@gZg@gZg@eZg@gZg@eZg@gZg@eZg@gZg@hZg@gZg@gZg@eZg@eZg@eZg@gZg@gZg@eZg@gZg@gZg@eZg@eZg@eZg@hZg@eZg@gZg@eZg@eZg@3�h@�k@�$l@:i@CI`@!�P@��:@O�!@��@�PKeyAttrFlagsiQKeyAttrDataFloatf

>QKeyAttrRefCounti\�VAnimationCurveL�9SAnimCurveS�Q	DefaultD�&V @�QKeyVerI��T�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qQV}
KeyValueFloatf\p6�A�A@C An�DA��oA��Aۼ�A���A۷AͷA7��A�;�A�t�AD��AfP�A��cA��EA(Z+A�	A��A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A6�A7�A7�A7�A7�A7�A6�A6�A6�A7�A6�A6�A6�A6�A7�A7�A6�A7�A7�A7�A7�A7�A6�A7�A6�A7�A6�A7�A6�A6�A7�A6�A6�A6�A7�A7�A6�A7�A7�A6�A6�A6�A6�A6�A7�A6�A6�A��Av1A4A7TA�wA�f�Alc�A���A۷A{VKeyAttrFlagsi�VKeyAttrDataFloatf

�VKeyAttrRefCounti\�\AnimationCurveL���9SAnimCurveSEW	DefaultD9��?]WKeyVerI�^Z�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�[}
KeyValueFloatf\p�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�?�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�?�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�?\KeyAttrFlagsiY\KeyAttrDataFloatf

�\KeyAttrRefCounti\7bAnimationCurveL���9SAnimCurveS�\	DefaultD`�U,�]KeyVerI�`�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�a}
KeyValueFloatf\p��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��aKeyAttrFlagsi�aKeyAttrDataFloatf

*bKeyAttrRefCounti\�gAnimationCurveL@��9SAnimCurveS�b	DefaultD@��տ�bKeyVerI��e�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q=g}
KeyValueFloatf\pjV��`V��aV��]V��\V��QV��UV��2V��FV��JV��@V��LV��UV��ZV��TV��SV��eV��iV��mV��eV��hV��aV��UV��vV��EV��RV��UV��iV��lV��fV��eV��hV��jV��lV��^V��TV��`V��cV��cV��_V��_V��UV��UV��UV��XV��MV��DV��QV��KV��HV��FV��HV��HV��NV��FV��HV��QV��BV��JV��DV��PV��KV��KV��KV��RV��MV��EV��MV��LV��DV��PV��GV��LV��PV��CV��GV��CV��<V��NV��2V��=V��EV��8V��>V��>V��KV��NV��\V��fV��gV��`V��oV��ggKeyAttrFlagsi�gKeyAttrDataFloatf

�gKeyAttrRefCounti\mAnimationCurveLp��9SAnimCurveS1h	DefaultD`Q+@IhKeyVerI�Jk�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�l}
KeyValueFloatf\p��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XAmKeyAttrFlagsiEmKeyAttrDataFloatf

rmKeyAttrRefCounti\#sAnimationCurveL���9SAnimCurveS�m	DefaultD�h0��mKeyVerI��p�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�r}
KeyValueFloatf\ppE��pE��pE��qE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��rE��qE��qE��qE��qE��qE��pE��pE��qE��qE��pE��pE��pE��pE��qE��qE��pE��pE��pE��rE��rE��rE��rE��rE��rE��rE��qE��qE��pE��pE��oE��oE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��oE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��pE��oE��pE��pE��pE��pE��pE��oE��qE��pE��qE��qE��qE��qE��qE���rKeyAttrFlagsi�rKeyAttrDataFloatf

sKeyAttrRefCounti\�xAnimationCurveL���9SAnimCurveSys	DefaultD ����sKeyVerI��v�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q)x}
KeyValueFloatf\pq}�q}�q}�o}�m}�k}�k}�h}�h}�h}�h}�k}�l}�k}�k}�m}�p}�o}�o}�r}�q}�o}�p}�x}�n}�q}�o}�q}�q}�m}�o}�o}�q}�q}�n}�k}�l}�n}�m}�m}�n}�j}�l}�h}�g}�g}�i}�i}�g}�g}�g}�g}�g}�i}�h}�g}�i}�f}�g}�g}�h}�g}�g}�d}�j}�i}�g}�g}�g}�d}�g}�g}�i}�i}�g}�g}�g}�g}�i}�d}�i}�g}�g}�d}�i}�l}�m}�q}�q}�p}�p}�q}�SxKeyAttrFlagsi�xKeyAttrDataFloatf

�xKeyAttrRefCounti\k~AnimationCurveL���9SAnimCurveSy	DefaultD�?Q&@5yKeyVerI�6|�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}}
KeyValueFloatf\p��2A�F8Ar-BA.DQA~eA	�jAZxbA��YA<OAQ�EA��FA/�MADTYAtjgA}cmA�gAvO\AETPA}aJA��EAk=BA�@AA��;A�5An�3A&�=A=�CA.�GA��GA3A�-Au8
A���@��AϤA�&As�AvpA��)A�l6A��?A��FA�`IA*EA#�<AP�8A�+>A�-JA�vVA1b\AOFZA��NA��DA�=A4Ai�+A��%A$A̪$A��%A�'(A��-Af�6A�jBA�|MAAQTAcoTAVyFAjC6A�/A�:-A}�+A�/-AZ4A�=Aћ?A�JAA��BA��7AG�*Aww*A��*Aa�(A��,A�>4A!2;A��JA�ZA�YNA&�?A�=A�u=A�}KeyAttrFlagsi1~KeyAttrDataFloatf

^~KeyAttrRefCounti\�AnimationCurveL�9SAnimCurveS�~	DefaultD �$"@�~KeyVerI�ځ�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qq�}
KeyValueFloatf\pa'A��Ay9A��An��@I��@���@���@+��@��AƒA
��@��@���@���@��@���@b��@���@f~�@��@#��@�2�@���@�X�@#D�@���@c��@a��@F�
A��3A-�<A�QA�DA�q9A�<A�F3A�q.A�"A{;A��A#�A}��@���@�%�@td�@G��@X{�@�p�@8C�@��@A+�@���@���@�*A��A:m	A(MA��A�A-�A9�A�sA�As��@��@��@�fA��A��A�!A��AhA�@A��
AŀA�1AOMAr�A'A
l#A�� A�N$A!�"AҴA4A"�A+�@u�A�^AX@A��A��KeyAttrFlagsiՃKeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL@��9SAnimCurveSe�	DefaultD���ؿ}�KeyVerI�~��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\pEľ>6�P��	K��5-�k4��� �4f
�����A`v�L�f��=�����k��w��r8�D����.o��L�ӝF��`�>��?]�?>�@���@"�@h�@QTr@K�?J�����:?�_?C�Y?+�%?�� ���!�տ��G�"����D�������x��b}��n�.��K�$CX��ؤ�����8���	�v���W{�����
C�Ps>b��?���?���?0�?}o�K�9��]����������	
��}��X���ѕ�8�t�-�]��N�~[V�f~��b��������������R��X֍���W�u�S�$��${�1�����B]����������E���f��?�KeyAttrFlagsiy�KeyAttrDataFloatf

��KeyAttrRefCounti\W�AnimationCurveLp��9SAnimCurveS	�	DefaultD�XK@!�KeyVerI�"��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p��XB�HABq3"B�B��A�N�A�ؒA3rA��=��;�� K?A�ѢAK��A��B��B!}B�?�A��A1<�@����}���G����	��ŒP�o�����,p'@�O�A���A}��A�2Aʿ^A�C>A>�
@���?S��??9�����I�1@�N�@�OA�6�A���A�B�5Bzg�A��A�R�A[BUBh�+B�a5B@AB�WB٬jBD�tB�oB��]B�QBB5$Bt�BtU�A��A8��A~I�A��A��A��{A��~A�&�A�!�Aֳ�AU!�ANJ
B+�B{%B�I"B�B0Bp:BG�;BW7B�T+B>�B�BdHB��A;��AEţA��An��A�KeyAttrFlagsi�KeyAttrDataFloatf

J�KeyAttrRefCounti\��AnimationCurveL���9SAnimCurveS��	DefaultD��4@ŏKeyVerI�ƒ�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q]�}
KeyValueFloatf\p��A���Aiu�@@f�����������<�#��#���!�j�#�l\*��t0¬S2�\�-„u�c���6����&���p������ʈ���L¢;S���B�z=(�HA¯���f
��nؐ��ȿ?KgA���AL��Aت�A%�Aż�Aɜ�A�A��?a��r<��_���j���-O��7���%���}�}��������0���L���Q�����<��j?��+AU�A
ǙA�ÕA�?�Ao@JA�r�@=����>uJ�-���iZ�����Oz���d��5m��ԇ��bN������މ���uP�M��sA�9�A���A���A�A���A~̑A�20A`�@������J���1��B����KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL0��9SAnimCurveSQ�	DefaultD`ZG�i�KeyVerI�j��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p��:�B�7�r�/���)�j������<��^�n�'�J��1��,U��p�E��}�����O����w��֟���*�������B���5����z��.v���"���t�Z3��Ⱥ��-�ī/Ÿ�4�wZ!�G��'�	�,�U�.��e-��O'¹������„Tš�(�@�Z°!U��l�m‰�a���Q�R�B¿�=�K�)�E��f��c�����[%�*�0¯�8�i�Cš�F‚�A�`%8�l�*�G�� |�����5U��
���r.���c��;����?Š'�\c7�E�<�X�;›8½�2��\2���1¦X/�wQ-�~q'�'�†$�$����~������As��+�KeyAttrFlagsie�KeyAttrDataFloatf

��KeyAttrRefCounti\C�AnimationCurveL���9SAnimCurveS��	DefaultD ߁<�
�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p���ޢ��`(?TJQAz�zA=%A�x�?�zw��g��2�h-T����Pf@�AP�A/t�A���A�/B��B&y'B�Y=B�GB��	B���A��A�TA��MA��FA�$xA�T�A�B���As��A��Ajk
���*��v&´t2�E�J°=S¢@h�vs�`��>��.�i������V��-���V�I�
���U$������=I>���> �L������S��
�NX�������b���:C��$'�FY;��oy������������P	��Ý����4��B���ȷ�����v��2tC��1�ŒH��j��{[��OY���P%��ј�g��;�����鵦�3^��ϟKeyAttrFlagsi	�KeyAttrDataFloatf

6�KeyAttrRefCounti\�AnimationCurveL�9SAnimCurveS��	DefaultD U�Q���KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qI�}
KeyValueFloatf\p�*���f��Bۈ��Rd�F�B¼*B��e���龜�t��Zf��>���ֆ��PX������7��LŠ(]��c�=�N¢������ś�����k��&�����TH���d�Q��T���%�J�2������k ���a��x)�k@����@�T@����<Q������6i��a�$��Œ����T�������4�G��}���+h����������B������=r���s��&���ā�g�y�zw�>���+����Ҩ�zК�뢈�f�|�iF{´=�Š���⩜�C�¹Y�‡ߙ��K��Xu�����Ý�y&������➣�E��
���sߌƒ��¯¦�拥�s�KeyAttrFlagsi��KeyAttrDataFloatf

ڥKeyAttrRefCounti\��AnimationCurveL���9SAnimCurveS=�	DefaultD`��M@U�KeyVerI�V��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p��mB8CB퇶Af�@�h3@nv\@�C�@��bA}B��B9��B�5`B8�A��&A9�	@���n^������"�wq�$��G����G��7w���v�P.P�ѫ?��+�`�5�e���E�8��Z�����a��M��x��������|�-5a�[H���.���"�\,��c[���(U��P����F��~'���/�51����뿤b��وAV��AºIB�fBF�`B�;B�~B�z�A�g�@�1b@��?���?B�@��`Aļ�B�lCkCR	C�Ci�C�C��Bb�2Bޝ�A�B��aB��Be��B4��B�i�BHp�B$%OB���A��(A�h(Aj�A�_�B�8�B�KeyAttrFlagsiQ�KeyAttrDataFloatf

~�KeyAttrRefCounti\/�AnimationCurveL��9SAnimCurveS�	DefaultD��5&���KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p��1��1�_�0��C�8]��t�'�}����=Մ������
��ó�����1��q0i���b��^q�����o���]{�m�A�V�����@��A;EA���Az��AN�AwF�A���Aׂ�A(�@��i�f�R�Zԭ�
i��l���M���;���C��Hz��6��������go��
+��^���{�iޓ�b
��6��Dh��23���hz�8�|��}�]�v���{��Q���f��׉��2���ډ�`Ƈ�i���/�~�i���9���~��xp���f�w{j��.l��4l���n��r�
V{�����j���ӝ��ǡ��k��d��ߧ��������Mh��L;��(��Wj������5���À���KeyAttrFlagsi��KeyAttrDataFloatf

"�KeyAttrRefCounti\ӶAnimationCurveL@��9SAnimCurveS��	DefaultD�cB+@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q5�}
KeyValueFloatf\pZA�BmAwˀAݚhA�BAoEA�t�@�<�@��/A��PAS�DA��A��@m�?�jU��̿��?pw@~	�@��@�=�@���@ě����a��I@�h��@[:�A�׷A�hB��B���AMI�AsZ�A�+A-,A���@�F�@	+�@H@!@q{@
D�@B�A܈�@��>�$??��@�A��,AuA}d�@���@Y�.@��VA�=�A=o�A�.�A8L�AP�A�A�q�A�6�A���A�a�A�4~A^$fA�(bA���AR�AyʺAZ�A��AH�A��A@�AL��A�.�AFa�A}�A��A��AķA���A�G�A��A[�A$T�ACl�A�/�Ax��A��Ay��A_�KeyAttrFlagsi��KeyAttrDataFloatf

ƶKeyAttrRefCounti\w�AnimationCurveLp��9SAnimCurveS)�	DefaultD`��@A�KeyVerI�B��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qٻ}
KeyValueFloatf\pC'�@��,A���AbB��)B��#B�1B[jB��B��B�B���A@��A��(A��?��������ݧ�H۞��؇���"��xe>���@��A	^9A,�wA��A&
&B~��B�v�B� �Br��B�:�B�ѐBi#B�(B�m1B�S2B�ABYE<B�/B�}'B��B���A�ިAf��Ad�mB��bBll<B��(B~AB8pB�n�A�4�A�˫A�DA��#A�e9Ab\wA{g�A˅�Ao��A��B�cB:zB:�BQB��BT�"BJ�$BI�Bn�BT�
B�bB#�A�>�A���An�A�d�A���A��A�!�A���A���A`t�A���A��	B�aB{B�J!B�#B��!B�KeyAttrFlagsi=�KeyAttrDataFloatf

j�KeyAttrRefCounti\�AnimationCurveL���9SAnimCurveSͼ	DefaultD`Y�1��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q}�}
KeyValueFloatf\p�b��p��{����ې����[O���h���Z������������������������������������H����������z��jA���������i����i�ұ�����������k���:��������������������������ѱ���i��i�������������������������������������������������������������E��5F���j�� ��[���B���6e���b������4v��-���S���8��]����?��1���M������KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveLе�9SAnimCurveSq�	DefaultD`:�&@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q!�}
KeyValueFloatf\p�15A�32AM�.A�-+A�x'Ab�#A� A��A�HA�A;A;A;A;A;A;A;A;A;A�oA_A$�AZA
i
A-<A�b
A/�A�4�@��p@}@}@}@�)>@d�Kh:>��?}@}@}@}@}@}@��p@�4�@/�A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
A�b
Aa8AUA:�A��A�M'A�.A�3A�15AX�4A��2A��/A<+Ai&AEt A�AȹA�:A�b
AK�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\c�AnimationCurveL��9SAnimCurveS�	DefaultD��N�-�KeyVerI�.��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p.Pu�up�{(j�&�c�\w]��CW�ʋQ¢�L�=�H�S(F¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E¢>E�u3F�~�H…L°�O��S�6�U��vV��:�b���g߇��9)��9)��9)�)ޫ�n#˜M�̸���9)��9)��9)��9)��9)��9)�g߇�b����:��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV��vV�W�"[�+�_¬pe»k�ep�7�s�.PuŽ	u±�s��!q�F�m�z+j™f‚�a¡�]���Y��vV���KeyAttrFlagsi)�KeyAttrDataFloatf

V�KeyAttrRefCounti\�AnimationCurveLp��9SAnimCurveS��	DefaultD���#@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qi�}
KeyValueFloatf\pίA]�AldAa�A��A�A��A��AG~
A��AL(AL(AL(AL(Ax(AL(AK(AL(AL(A�A��A?AH�A(A��A�hAѓAY�$A#� A�IA�IA�IA<!A~UA�gAC�A�IA�IA�IA�IA�IA�IA%� AZ�$AГA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA&�A�jA�nA��AS�A��A�`AίA��A�[AQ�AcEȦA�A��A/�A�$A�hA��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveL@��9SAnimCurveS]�	DefaultD��	@u�KeyVerI�v��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q
�}
KeyValueFloatf\p�L�@�c�@���@�H�@dذ@w��@j�@���@�j�@��@�א@�א@�א@�א@�א@�א@�א@�א@�א@��@Y��@O��@p�@�F�@���@c��@�w�@]@�۾Y^ϿY^ϿY^ϿP̿����\������U^ϿR^ϿR^ϿS^ϿS^ϿV^Ͽ�۾]@�w�@b��@b��@a��@a��@a��@a��@a��@a��@b��@b��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@a��@b��@���@��@���@�@�@&��@[�@3��@�L�@x�@���@���@lH�@�/�@/��@=�@#��@�o�@b��@7�KeyAttrFlagsiq�KeyAttrDataFloatf

��KeyAttrRefCounti\O�AnimationCurveL��9SAnimCurveS�	DefaultD�DP��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�$��u�$?y�ks�^�l��fœ�`��[�|!X���U‹�T‹�T‹�T‹�TŠ�T‹�T‹�T‹�T‹�T�JNV�[oZ˜`>f���k��
p��q¹yV�x���G���[���[���[��2c��e���F ���B���[���[���[���[���[���[���G��x�ºyV��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�Alr�Hxt�A`w�>�z�&~�Ӎ���� $��l��؞����j����}�
{��x��
v�ʲs��q���KeyAttrFlagsi�KeyAttrDataFloatf

B�KeyAttrRefCounti\��AnimationCurveL`��9SAnimCurveS��	DefaultD���"@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qU�}
KeyValueFloatf\p�mA��A��A��A"�
Ab�A�	AnA��A�A�A�A�A�AؙA�A�A�A�A��A�=Av�At�A>+AОA��Af;A�A��A�A�A�A�A�pA>�AHA�A�A�A�A�A�A��A�Ag;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��Ag]	A6�
A��A�:AK}A�nA��A�mA�SA��A�A�A1$A�|A��
A��A�K
A��A�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveL0��9SAnimCurveSI�	DefaultD�t�@a�KeyVerI�b��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�۬@a��@5v�@ܖ�@.��@
א@`��@A�@�>�@�݀@^�@^�@^�@_�@�@^�@a�@_�@^�@�f�@�f�@>Ă@�?�@���@]��@���@SEU@j�?cY������u-?�A�>9�{�
�
�
����RY�r�?WEU@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@z��@��@^�@fÙ@z��@C��@��@�۬@���@cΪ@%�@��@���@R��@�R�@4%�@?F�@���@#�KeyAttrFlagsi]�KeyAttrDataFloatf

��KeyAttrRefCounti\;�AnimationCurveL���9SAnimCurveS��	DefaultD�MM��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�mj�_�f��/bˆ�]��X�:T���O�HWL¼vI�̔G��F��F��F��F�
�F��F��F��F��F�";G�xH6I��uJ��K†qL«�L�l?5…�º9���Z��Z��Z��Z��:��?��������Z��Z��Z��Z��Z��Z��9�����l?5«�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�N��AQ¡�U��6[��`^e��h mj�*j¶�h��mf�\c���_œ�[«�W�G�S–P«�L���KeyAttrFlagsi�KeyAttrDataFloatf

.�KeyAttrRefCounti\��AnimationCurveL���9SAnimCurveS��	DefaultD�����KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qA�}
KeyValueFloatf\p?���r���e���艃��|��^���%��̆��J��
�����������������������������������¸��8����T���Ƣ�Yw��	���c�������
�����៺?��9@��9@��9@���@`p@�,R@��@@��9@��9@��9@��9@��9@��9@⟺?��ῑ
�����������������������������������������������������������������������������������������:���ק�������������?��V��@���\r���5���p��C����������c���m���������k�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveLP̱9SAnimCurveS5�	DefaultD`h� @M�KeyVerI�N��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pC+A�A�A�iAѻAiAjAȰ�@��@�+�@���@���@���@���@���@���@���@���@���@��@���@P=�@G��@�ݨ@:��@���@�Ɵ@���@#ı@�ڭ@�ڭ@�ڭ@��N@�:@�r@���@�ڭ@�ڭ@�ڭ@�ڭ@�ڭ@�ڭ@$ı@���@�Ɵ@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@F�@�@d�@x�@(H�@��@�cAC+A��Ak4A6��@���@N�@#��@q��@]�@���@���@�KeyAttrFlagsiI�KeyAttrDataFloatf

v�KeyAttrRefCounti\'AnimationCurveL`α9SAnimCurveS��	DefaultD`K�N���KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p[zv��q�.k���d�]�]�U�W��Q��L��H—�E���D���D���D���D���D���D���D���D���D�!WD�ԤB�%U@�J�=�ˆ;�Y�9��79�ݿ$��1������3W��3W��3W��������]�������3W��3W��3W��3W��3W��3W�����1��ݿ$��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79��79�T�;�!gB�2�K���V•b��k�@9s�[zv�u�gs�v%n���g¨J`�^&X‚�O�C�G�U�?��79³�KeyAttrFlagsi��KeyAttrDataFloatf

KeyAttrRefCounti\�AnimationCurveLp��9SAnimCurveS}	DefaultD��	
@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q-}
KeyValueFloatf\p�Lh@��e@�c@_*`@H)]@�;Z@u�W@�)U@~MS@�R@ŤQ@ŤQ@ŤQ@ĤQ@��Q@ʤQ@ĤQ@ŤQ@ƤQ@�R@gU@�5X@��[@S^^@H_`@� a@��m@�~@K�}@��w@��w@��w@�bv@Վq@Ρu@��y@��w@��w@��w@��w@��w@��w@I�}@�~@��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@�ta@Pb@�~c@
�d@{f@	/g@��g@�Lh@�=h@��g@�kg@��f@5�e@��d@��c@�b@�a@� a@WKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\oAnimationCurveL�б9SAnimCurveS!	DefaultD��@9KeyVerI�:	�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�
}
KeyValueFloatf\p$�E@.@@Ea9@KA2@)�*@��#@�e@��@A@S@�E@�E@�E@�E@�E@�E@�E@�E@�E@�&@��@ts@Ui#@9�)@�7.@$�/@.�@B�?��3>Um��Um��Wm��ʞ��e30���G��4��[m��gm��_m��`m��em��km����3>=�?/�@&�/@%�/@%�/@%�/@%�/@%�/@%�/@%�/@&�/@&�/@%�/@%�/@%�/@%�/@&�/@%�/@&�/@%�/@%�/@%�/@%�/@$�/@%�/@%�/@$�/@%�/@%�/@%�/@%�/@��0@�^3@[�6@��:@U�>@�HB@��D@$�E@��E@��D@�
C@��@@^/>@H;@�A8@B5@xp2@%�/@�
KeyAttrFlagsi5KeyAttrDataFloatf

bKeyAttrRefCounti\AnimationCurveL�б9SAnimCurveS�	DefaultD` �P��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qu}
KeyValueFloatf\p��¦�� ~�J�w”+q���j°e�
`™#\��Y�R�X�R�X�R�X�R�X�R�X�R�X�R�X�R�X�R�X�FZ§�^�Id�g�j�T_pŠ�t˜>v�+�[�m"����H���H���H������B¬��߾��H���H���H���H���H���H������m"�+�[˜>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²	w"y‚|��‚���
	�°(�����V���< ��6`���c��Z;����dQ}�Ҿz�=Xx˜>vŸKeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCounti\�AnimationCurveL�ϱ9SAnimCurveSi	DefaultD��R@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q}
KeyValueFloatf\p>��@P߀@��}@�y@�u@~fq@��m@qOj@ضg@Tf@ge@ge@ge@ge@ge@�fe@	ge@	ge@ge@ٽe@�f@,�g@Vi@�?j@�k@mk@]n@\�k@�>\@<Q@<Q@<Q@<Q@+yi@��h@��]@<Q@<Q@<Q@<Q@<Q@<Q@�>\@]�k@]n@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@mk@�l@��o@J�s@��x@@$}@��@0��@>��@|{�@��@���@�r@�n|@�y@�~u@��q@{n@mk@CKeyAttrFlagsi}KeyAttrDataFloatf

�KeyAttrRefCounti\[AnimationCurveL�ϱ9SAnimCurveS
	DefaultD���?%KeyVerI�&�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p���?/Y�?�ԍ?�΅?�H{?jhk?K�\?tP?��E?;k??j=?k=?l=?l=?r=?P=?j=?c=?f=?CG>?mhA?��E?UJ?�N?ѴQ?��R?���>l����访
�߿�߿�߿�߿����6������
�߿�߿�߿�߿�߿�߿�访�������>��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?��R?Y5W?�b?q�r?�f�?��?���?�g�?���?Ҏ�?�;�?�W�?�2�?3�?p�?)�x?1k?E^?��R?�KeyAttrFlagsi!KeyAttrDataFloatf

NKeyAttrRefCounti\�!AnimationCurveL�ϱ9SAnimCurveS�	DefaultD`!�D��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qa!}
KeyValueFloatf\pQ%…Z!´��s˜H����wD
�ޅ���Ŧ�����������������������������Ož7t�����
£�…L��J��UC{�֎O�*@*@*@*@���͒������+@*@+@+@*@*@֎O�UC{��J���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�,����5��{���`�!4 �A�#�Q%��%¨�#�eF!��+�0����Kn��a°�
…L‹!KeyAttrFlagsi�!KeyAttrDataFloatf

�!KeyAttrRefCounti\�'AnimationCurveLPϱ9SAnimCurveSU"	DefaultD`gƿm"KeyVerI�n%�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q'}
KeyValueFloatf\p83�rl��
ξ���Ӻ(�ӣH� �e��C�����H��LZ��LZ��LZ��LZ��LZ��HZ��DZ��HZ��NZ���᣿�ѿWv�>')��H�T�^�8zg�|!������@��V@��V@�V@�9^@r�K?��?�� @��V@��V@��V@��V@��V@��V@�@����z!�8zg�8zg�8zg�8zg�8zg�8zg�8zg�8zg�8zg�7zg�8zg�8zg�8zg�7zg�8zg�8zg�8zg�8zg�8zg�8zg�8zg�8zg�8zg�9zg�8zg�6zg�7zg�7zg�7zg��h^�#nF�iW$�����1ݩ�WE��޷�'83�\S����`N%�Ȥ���`�����~���3�8xO�7zg�/'KeyAttrFlagsii'KeyAttrDataFloatf

�'KeyAttrRefCounti\G-AnimationCurveL ϱ9SAnimCurveS�'	DefaultD@`&@(KeyVerI�+�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�,}
KeyValueFloatf\p�0A�+A��$A�uA��AgAmvAQAKDA�:�@'T�@'T�@'T�@'T�@'T�@'T�@'T�@'T�@'T�@���@-��@��@��@C�@y�@H��@�	�@Ԁ�@���@���@���@���@'m�@f��@���@)��@���@���@���@���@���@���@���@ր�@
�@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��@��@��@6A�2
A^A�%Ae-A�0A��/Ab�,As�'AL| A}AB�A��A���@���@H��@�,KeyAttrFlagsi
-KeyAttrDataFloatf

:-KeyAttrRefCounti\�2AnimationCurveL�α9SAnimCurveS�-	DefaultD�j�O��-KeyVerI��0�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qM2}
KeyValueFloatf\pTkœ�x���p�Ãh†`���W�zP“�I�y�D”�A��S@��S@��S@��S@��S@��S@��S@��S@��S@��@��9?Œ$>���<�F�;�F;��:��_(�Ҕ��NL���W���W���W����"a¸���Գ��W���W���W���W���W���W��NL��Ҕ���_(��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:¹�=£E±�O�b
\�h�ǟs���{�Tkº�~�Z�{¥v›�n�*�fžu]�7T���J��DB��:�w2KeyAttrFlagsi�2KeyAttrDataFloatf

�2KeyAttrRefCounti\�8AnimationCurveL�α9SAnimCurveSA3	DefaultD`r�Y3KeyVerI�Z6�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�7}
KeyValueFloatf\p�x�0�o�Gf�4*\���Q�Q�G��{>��b6��/���+��L*��L*��L*��L*��L*��L*��L*��L*��L*��,�VE2�p�9��B�7ZI�H�N���P��~O���H�%�;�D�3�I�3�K�3�{�3�lY0���1�u�4�1�3�)�3�+�3�.�3�0�3�3�3��;���H��~O���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��ER��V�U]��Id�Cgk�>�q�yv��x��w���u���r��o��Lj��e��_�/8Z�+U���P�8KeyAttrFlagsiU8KeyAttrDataFloatf

�8KeyAttrRefCounti\3>AnimationCurveL�α9SAnimCurveS�8	DefaultD��N��8KeyVerI��;�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�=}
KeyValueFloatf\p�t
����	�G�߾u/̾0���j����b�������6���6���6���6���6���6���6���6���6���Ȅ�4��^�������ܳ�g������������1�$&ݼ�'#=�'#=�'#=LQ=oB�gu�:�h�<)#=8)#=8)#=�(#=�(#=g(#=,%ݼ�1�������������������������������������������������������������������������������������������������������������������������(�þ�!;��ھ��龴G��Ra��G��t
��
�'#�Y���������̪�]�߾�iԾ��ɾ�����=KeyAttrFlagsi�=KeyAttrDataFloatf

&>KeyAttrRefCounti\�CAnimationCurveLpͱ9SAnimCurveS�>	DefaultD@
�F��>KeyVerI��A�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q9C}
KeyValueFloatf\pj�5�(�.�L]&����D��P��9��8(��)H��~*��p���p���p���q���q���p���p���p���q���ق�����'��?"���»��%5��<���X��
��
��
�!������C���Le��
��
��
��
��
��
��X��<��%5»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»�»��#N������¾�%�u[+��~0�B4�j�5�˧5�-&4�̢1��T.¸s*�}6&�q�!�Є��~»��cCKeyAttrFlagsi�CKeyAttrDataFloatf

�CKeyAttrRefCounti\{IAnimationCurveL@ͱ9SAnimCurveS-D	DefaultD�M�EDKeyVerI�FG�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�H}
KeyValueFloatf\p~hj�٘b�o�Y�SKP���F��B=�֏4�9-�*'�Y"#��!��!��!��!�<�!���!���!���!��!�ʏ"�IJ$���'�7�*�8�-���/��0�ƅ1�[1���,�ƭ)�̭)�ѭ)�ͭ)���)�í)���)���)���)���)���)���)���)�q�,�<1���1���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0���0�}�0�~�0�~�0�}�0���0�|�0�}�0��0�,3��9��GC�y�M�}9X��+a�ĕg�~hj���i��eg�� c�jn]�	�V�<
O�GG���>��U7���0�IKeyAttrFlagsiAIKeyAttrDataFloatf

nIKeyAttrRefCounti\OAnimationCurveLͱ9SAnimCurveS�I	DefaultD`��޿�IKeyVerI��L�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�N}
KeyValueFloatf\p����k�0�־�~ƾx����U���3��2��Tr}���o�|k�sk�sk�zk��k��k�Xk�~k��k�5m���r�9�z�kp��YB���� ��]�`��5����DM=�CM=�CM=DM=EM=�DM=]EM=�EM=�EM=�EM=qEM=EM=�DM=�U���5�V�`�1 ��A ��U ��P ��U ��_ ��a ��\ ��` ��U ��^ ��_ ��^ ��Y ��Z ��W ��S ��X ��Y ��c ��[ ��a ��O ��L ��N ��7 ��A ��< ��6 ��u���|֙��ાJ����Ѿ�t�����#��K*��b۾K�ξ|������f���H�� ���NKeyAttrFlagsi�NKeyAttrDataFloatf

OKeyAttrRefCounti\�TAnimationCurveL�̱9SAnimCurveSuO	DefaultD@qE��OKeyVerI��R�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q%T}
KeyValueFloatf\p��(´	"�۟’��o�
���χ��U���Y��;�������������������������������������2(��׾������f	��!;��Q�������.�T��T��T��T��T��T��T��T��T��T��T��T��"T����.����Q��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��!;��JY���;��W�>�9¤- ��&Š�(�+(��%���!���3���A�zx	¡�£!��!;��OTKeyAttrFlagsi�TKeyAttrDataFloatf

�TKeyAttrRefCounti\gZAnimationCurveL�̱9SAnimCurveSU	DefaultD@��@1UKeyVerI�2X�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�Y}
KeyValueFloatf\p2�}@�s�@ˍ�@x$�@"�@�:�@^�@%L�@5l�@��@k5�@k5�@k5�@k5�@k5�@l5�@k5�@l5�@j5�@�@��@���@��@�A�@���@�Ȉ@a[�@�2�@��@�p�@�p�@�p�@�p�@�p�@�p�@�p�@�p�@�p�@�p�@�p�@�p�@�p�@��@�2�@`[�@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@�Ȉ@Ɉ@�Ȉ@�Ȉ@�Ȉ@՞�@��@>�@�k�@�g�@�L�@�&@3�}@��}@�A@�ʀ@�8�@���@h6�@��@���@RL�@�Ȉ@�YKeyAttrFlagsi-ZKeyAttrDataFloatf

ZZKeyAttrRefCounti\`AnimationCurveL�̱9SAnimCurveS�Z	DefaultD�ba1@�ZKeyVerI��]�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qm_}
KeyValueFloatf\p�AR �A��}AlrA�qgAfb^Ax(WA��QAKNA��KABKABKABKABKABKABKABKABKABKAB�IA�!FAJAA�U;A�
6Am$2An�0A�w2A�E5Af6A#c6A#c6A#c6A#c6A#c6A$c6A%c6A$c6A$c6A$c6A$c6A$c6A$c6A�f6A�E5A�w2An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0An�0A�5A}�@A�RQA��cAvA�A���A�A���A�d�A䡄Am<A�BsA��eA��WAc�IA9x<An�0A�_KeyAttrFlagsi�_KeyAttrDataFloatf

�_KeyAttrRefCounti\�eAnimationCurveL���9SAnimCurveSa`	DefaultD�^H�y`KeyVerI�zc�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qe}
KeyValueFloatf\p�B�r(:µ�/—�$��l�†\�h�����p'��A���A���A���A���A���A���A���A���A����L���<����������Hl������g$��iH��:d��<���<���<���<���<���=���=���=���=���=���=���=���=���:d��iH��g$���������������������������������݊�WU
†�RN"���-��8�s�?���B�xdB�q[?��N:�Ͳ3���+�͘#�y�™��!�
��;eKeyAttrFlagsiueKeyAttrDataFloatf

�eKeyAttrRefCounti\SkAnimationCurveL±9SAnimCurveSf	DefaultD��<�fKeyVerI�i�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�j}
KeyValueFloatf\p���6#z��
]�o�=��6����8Kſz���QmX���$��b��b��b��b��b��b�b��b��b�Fz%���V�K������`ӿ��3�����ڿ�]���=H��b��b��b��b��b��b��b��b��b��b��b��b��b��=H��]����ڿ3���1���2���1���3���5���5���4���7���5���2���4���5���4���3���3���3���4���3���4���3���5���4���6���7���5���3���3���5����i�g��UG+�
G�Úb�"�z�������^A���ʅ����N�p��T^��,J�F5�� �zJ�4����jKeyAttrFlagsikKeyAttrDataFloatf

FkKeyAttrRefCounti\�pAnimationCurveL0˱9SAnimCurveS�k	DefaultD�m���kKeyVerI��n�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qYp}
KeyValueFloatf\pl;�1���e��ݿ���*>���n��C6��B
��ھ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�?߾]��"<��Gl�+<���d����d����4T��p��/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�/ƾ�p��4T�e���쨢�����諸�����������������먢�쨢�쨢�������񨢿諸�諸�諸��������OW����*�ӿ����fh��L�k;�Ƒ�H
��8@
�����?���ݿ�cȿ�Q��訢��pKeyAttrFlagsi�pKeyAttrDataFloatf

�pKeyAttrRefCounti\�vAnimationCurveL˱9SAnimCurveSMq	DefaultD�`5A�eqKeyVerI�ft�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�u}
KeyValueFloatf\p�	ˆ��I�����������`/��$\���3���jq�n�_��mY��mY��mY��mY��mY��mY��mY��mY��mY�hnY�{oY��pY��rY�tY�uY�}uY�QtY��qY�*oY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY��mY�*oY��qY�QtY�}uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�~uY�}uY�}uY�}uY�|uY�}uY�}uY�}uY�}uY�Qg�G�������u���*������,J��	­��W�2�������r���Y�������	���$~�}uY�'vKeyAttrFlagsiavKeyAttrDataFloatf

�vKeyAttrRefCounti\?|AnimationCurveL�ʱ9SAnimCurveS�v	DefaultD�{��	wKeyVerI�
z�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�{}
KeyValueFloatf\p�Ä�E+q��U�j8�����B��J�¿F�����\�e�+��c��c��c��c��c��c�bc��c��c�
�$�I1?��bc�2_���e��n���Ĩ��E��$w��f7��c��c��c��c��c��c��c��c��c��c��c��c��c��f7�,w�E��ƨ��è��Ĩ��Ĩ��Ũ��ƨ��Ǩ��Ǩ��ɨ��Ǩ��ƨ��ƨ��Ũ��Ĩ��ƨ��Ǩ��ƨ��ƨ��ƨ��Ǩ��ƨ��Ũ��Ũ��Ĩ��Ĩ��Ĩ��¨��¨��è���
���ῙU
��-�Q�N��Xk�4���Ä�E�������q��I_��I�>�1����<A��Oҿè���{KeyAttrFlagsi|KeyAttrDataFloatf

2|KeyAttrRefCounti\�AnimationCurveL�ʱ9SAnimCurveS�|	DefaultD��n��|KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qE�}
KeyValueFloatf\p�v3�ȭ#�����R���QֿyX��!4��6j]�[-�+�
�~��~����������������������������"�^!4�!D�k�O��-T��wG��r+��\����������y��d��u������������������������\�s+��wG��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��-T��i����zո�F��&
��H���,��v3�]2���,�\�"�s��9��Y����ȿ���x\��w-T�o�KeyAttrFlagsi��KeyAttrDataFloatf

ցKeyAttrRefCounti\��AnimationCurveLpʱ9SAnimCurveS9�	DefaultD@��B�Q�KeyVerI�R��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p�E��T�T>�$��R0��	������ᢣ�W[�����������������������������������������F.���`������^�����N��H���W��[>���$�������������������������������������������������������$��\>���W��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��,����S���S��Ӊ��w��������E���q��5�4?��&��>L��M�������t���H���KeyAttrFlagsiM�KeyAttrDataFloatf

z�KeyAttrRefCounti\+�AnimationCurveL@ʱ9SAnimCurveS݇	DefaultD�
�Ͽ��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pU�|���p��?�{f����Z������k���"��0&��0&��0&��0&��0&��0&��0&��0&��0&��� ��O�^��S����K��/���!��tȯ��6��J��0&��0&��0&��0&��U�s��Z���0&��0&��0&��0&��0&��0&�J��6��tȯ��!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!���!������	v�>)E��k��Z����[�f�۾U�|�����⾽�9�.����2ͿW�
�V,2��;[�����!����KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\ϒAnimationCurveL�ɱ9SAnimCurveS��	DefaultD e�$@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q1�}
KeyValueFloatf\p)�$A:A8 �@�v}@X��?��>�������1�@�ĉ]�dZg�fZg�fZg�fZg�dZg�dZg�dZg�eZg�fZg�9c��4W�!�C��**���R9�
-�8���k7�.�Z�fZg�fZg�fZg�fZg��ױ?9}V?4���fZg�fZg�fZg�dZg�dZg�dZg�,�Z��k7�:��
-�
-�
-�
-�
-�-�-�-�
-�
-�
-�-�
-�
-�
-�
-�
-�
-�
-�
-�
-�
-�-�-�-�
-�
-�
-�-�iՠ�۠`==�?\Ԃ@��@3�AC�A)�$A(#A��A[�
A�!�@��@���@��+@�P�?�8�
-�[�KeyAttrFlagsi��KeyAttrDataFloatf

’KeyAttrRefCounti\s�AnimationCurveLPɱ9SAnimCurveS%�	DefaultD�9I5�=�KeyVerI�>��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q՗}
KeyValueFloatf\p�I��Qӟ�s���2i��3q��yU���;���$����f��5��5��5��5��5��5��5��5��5���#
��Z�C�7�BT�|{n�qπ�݃���t���E���5��5��5��5��!m��Wa������5��5��5��5��5��5������E��t�݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��݃��]
��a��r��͠���{��)����9���I��S��������
��Oh���e���C��c?��ߕ��݃����KeyAttrFlagsi9�KeyAttrDataFloatf

f�KeyAttrRefCounti\�AnimationCurveL ɱ9SAnimCurveSɘ	DefaultD9��?�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qy�}
KeyValueFloatf\p�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�i�?�v�?���?�ƅ?#��?Q'�?I�?9V�?C1�?�߅?���?�i�?�i�?�i�?�i�?]�@���?>v�?�i�?�i�?�i�?�i�?�i�?�i�?���?�߅?D1�?6V�?:V�?:V�?9V�?8V�?6V�?7V�?6V�?5V�?7V�?7V�?7V�?7V�?7V�?7V�?7V�?7V�?7V�?7V�?6V�?4V�?1V�?/V�?.V�?-V�?)V�?%V�?#V�?5V�?VL�?I2�?`
�?��?���?���?-v�?�i�?�k�?w�?ĉ�?C��?��?cޅ?���?��?I<�?+V�?��KeyAttrFlagsiݝKeyAttrDataFloatf


�KeyAttrRefCounti\��AnimationCurveL�ȱ9SAnimCurveSm�	DefaultD�U,@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA��bA
�bA��bA��bA��bAgcA:+cA�2cA�cA��bAW�bA��bA��bA��bA��bA˙A�N�Aư}A��bA��bA��bA��bA��bA��bAW�bA��bA�cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA�2cA-cA�cA�	cAJ�bAa�bA2�bA��bA��bA�bA �bA|�bA�bA�bA��bA�cAjcA$cA�2cAG�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\_�AnimationCurveL�ȱ9SAnimCurveS�	DefaultD`���?)�KeyVerI�*��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>�U�>O~�>��>�u�>��>���>H	�>�1�>d��>�ð>ȯ>�U�>�U�>�U�>�U�>�L�?;��?1�,?�U�>�U�>�U�>�U�>�U�>�U�>ȯ>�ð>h��>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>�1�>`�>�±>rP�>�̰>�G�>Mү>*|�>�U�>\�>M�>*��>%�>=^�>s��>�#�>R��>��>�1�>�KeyAttrFlagsi%�KeyAttrDataFloatf

R�KeyAttrRefCounti\�AnimationCurveL�ȱ9SAnimCurveS��	DefaultD Q+@ͩKeyVerI�ά�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qe�}
KeyValueFloatf\p��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA}�XA��XA��XAӭXAǻXA��XA��XAǾXA9�XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA9�XAȾXA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA��XA!�XA��XA!�XA+�XA��XAI�XA��XA,�XA��XA#�XA��XA.�XA��XAq�XA�XA�XA��XA��KeyAttrFlagsiɮKeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveL�DZ9SAnimCurveSY�	DefaultD��h0@q�KeyVerI�r��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q	�}
KeyValueFloatf\ptE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AoL�Ao^�Aw�Aݑ�Az��Az��AtÃAů�Au��A%Y�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AtE�AsE�AsE�AsE�AsE�AsE�A$Y�At��Aį�AtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAtÃAuÃAuÃAuÃAtÃA7��A\��A���A��A+o�A�Z�AL�AtE�A�F�A�L�AkV�Arc�A�r�As��A���A���A���AuÃA3�KeyAttrFlagsim�KeyAttrDataFloatf

��KeyAttrRefCounti\K�AnimationCurveL�DZ9SAnimCurveS��	DefaultD��@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p_}@]}@_}@_}@_}@_}@_}@]}@]}@\}@_}@\}@\}@_}@_}@]}@_}@]}@_}@��@�@n#@H}@��@	@s#	@t�@WP@G�@\}@\}@\}@_}@_}@a}@\}@\}@\}@[}@\}@^}@U}@G�@UP@v�@u#	@s#	@s#	@s#	@u#	@y#	@y#	@w#	@y#	@x#	@y#	@z#	@y#	@y#	@y#	@w#	@x#	@w#	@y#	@z#	@w#	@y#	@z#	@z#	@x#	@v#	@w#	@w#	@s#	@�	@v�@��@�U@	@9�@��@_}@�@��@'�@��@�@�L@ֆ@ſ@��@l#	@׹KeyAttrFlagsi�KeyAttrDataFloatf

>�KeyAttrRefCounti\�AnimationCurveLpDZ9SAnimCurveS��	DefaultD`4+@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qQ�}
KeyValueFloatf\pӠYA͐8A�һ@�0\�������s�7��?\ˆ�e�:�X�}�F�"�8¨]+�\�$���;����E��W�
�۴2����>̍�����{�#�4^‰��4���ş�I/�¬˗œ�����p´ N�.�P#��d��L��s+��E��j�+�����@��K6��ʇ�����0��†���
���~��,��フ��~��c`�=��Ž`����R�j��h޿V�;@硭?�6E�/{��O��;����|A�S#t¯m��:����^��R�k�xoF˜ (�� �"�+{�����]������{�>�@�(A�s?A�A�]@	{��xݠ�m����9���M��O�{�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL@DZ9SAnimCurveSE�	DefaultD��
,�]�KeyVerI�^��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pTW`���#��.
�L��rw���n�Z���K��g��L�L��0������:
�u?$�g4�h~@�e�I��[W���T�e���G������Ž�%%@`���"��?T�.���,��%<��B?����>���D0�J�@�P?��VQx�LGS���S��xX��Y���j��Tz��gl�ЃQ�STD���L�8�3���0��`)�|�,���/�{iP�
�������Li���9��!��������`��F/�Α��o�������B
��O���2�F�
���Q;�d����q�W0�Ka�?�����S����7��,�`�������G��o���E�����K���ͧ��f����������H�������KeyAttrFlagsiY�KeyAttrDataFloatf

��KeyAttrRefCounti\7�AnimationCurveLDZ9SAnimCurveS��	DefaultD�b�@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p��@d�@���@-��@]�@�ѯ?�Z#@�y�@�MA���@w��@F��@NAp�\A
��AZ�{A�NA6A�ZJA
�jA�ɃA�vA�FAN�A=:�@�lAE�mA�kA��A�@2��z6�W�~�� ��,v���n��\��T����J���d��ȹ��
�[���?�H���A`�R�0@��A��aAt�A%�AΔA��AH��A�N�A�}�AU��A5-�A��`A�?)A��@&�AW�1AZ;A�9A3A}3Ag=�@�/�?�2^@-��@�-A��Aok�@�@��@J�A��HAW:UA�}MA@QA�J�@��@���?^�?�x0@7�@���@wÐ@8�9@K�n@P��@�1A�A��KeyAttrFlagsi��KeyAttrDataFloatf

*�KeyAttrRefCounti\��AnimationCurveL�Ʊ9SAnimCurveS��	DefaultDQ�;@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q=�}
KeyValueFloatf\p�
�AԪ$BnmB?z�B��B���B���B"ǤB
�}B�&B�k�At��A��Aa�!B�GB��TB�ITB�vOB�3=B�&VB�ՋB�O�B���B<��BE^�B[9�B`J�B��BKrnB"�ZBwMBH�NBQ{`B�hB��[Bx�CB�X(B�BBY�.BjgMB�xB��Blo�B���B�x�B���B��B�{�B\�B�ۺB�ݯB���Bh�B짅B-�^BW'"B�D�A�+�A���A��A��B.�LB8��B"��B@��B�o�B���Bn-�B̗�B4��B:k6B���A+A�Aeh�A@�B��2B+x2B�BB��A6B�A�A*8�A��B:)aB�l�BQ��B9�BP)�B��B��BI�Bg�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\�AnimationCurveL Ʊ9SAnimCurveS1�	DefaultDѿI�KeyVerI�J��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�`��g�;���,���=�%
@΅o@z�:@Z�??��пK8h��ib@)�<@2�>���?��@��@��AkAi��@��{@zq�=h��?�	�@�o�@_:@��>J�����?�_�?��T�����>(b��ο��\��@��S@Cb��F��2m�������3�F���v�*��9��>�ت?�m@���@�(�@�aw@e�-@RO�?���a(¼�f�?��e@-s@G��������	����*#�.'��h�I	�?���@�A��@x@���>M�ͫ�_���k���s�>g��?���>�$�??�	@��~�y[�;����������������o�z@�9 ABW3AFgA��@�Fb@�KeyAttrFlagsiE�KeyAttrDataFloatf

r�KeyAttrRefCounti\#�AnimationCurveL�ű9SAnimCurveS��	DefaultD��s#���KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\pM����b��ۘ�$����w��S˓�J�|��Hd��(����4��?��l?�F��e�a��I?�=�@L��@-��@$Wn@��p@���*|]�:���
����d�M�<��:�+���]���Ԇ�;@%���T�Ȉ���)��Ϯ�cw�mj�e�1��j�����I��b���4�/�%
5�}d�f������>��R����T��� ��~����/��Y��bx�l�w�u����^���ڲ�����V��r��������;t�8I�B>�7:���eO?jǃ@-@r����M��		��d��^��=�V?�y��)�+��]�W�����h��R������Z��1�������Ƒ�h́�	Nw���KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL�ű9SAnimCurveSy�	DefaultD@L%@��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q)�}
KeyValueFloatf\pbb(AϥhA�V�Aė�A�GNA���@���?�����,������W
��:L�`�.�a_�����������	5��"uX��vA�+�A��AA�7�@��ݾ0�5��#��61��p�������r)��v�e�?ħ�@d�3Ay�AF��ApV�AYQ\A�CA�A�!A��A��@[�@J{~?��������/�7�s���N���t_��Ю�����r��&Ԟ�X���E���Aqt�AB2�A���A���A�E�A���A���A}1�A��A�A3�P@cq�·�)h���3�΅:�1���p��Z@��P�����O�����q?��-A�n$AS�:AXuA;C�Ah�A���A�ފAG6OAuI�@�"�@S�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\k�AnimationCurveL�ű9SAnimCurveS�	DefaultD�:@5�KeyVerI�6��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p��@��f�ȃ�������K����J>U�?2�>z�'�-�����=0��>��D?��?��`?%�G�	��(@?�q�?��&@Mn@��J@y��?˴8?�̖>?i�?3�@���@~��@t<@�
(@h�@Mqx@ߏb@���@[\�@�Y@�|@���@?$#@�H�?��%@)@���?�@�'@+
�>�K=�N�?���?+��?E�?��K?l��>�^i?�c5@��@�HAa:A9T�@w�@c��@<]@��#@��2@u\@�^@��Q@�b�@���@ê`@��c@uYY@� @9?b�@C��?y�?�e�?�'[@�h�@٥�@�w�@��@���@u��@�b�@��@h�@iͭ@$�@�m�@��KeyAttrFlagsi1�KeyAttrDataFloatf

^�KeyAttrRefCounti\�AnimationCurveL`ű9SAnimCurveS��	DefaultD��6�?��KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qq�}
KeyValueFloatf\p���>{�k@%��=SXH���o�W��IF������P2w�pKD�H���X@S��?�����7���=��H����Y��^�@e�A��A�9K�^���Tv��
v��:h�@�3A;9A>]�@t�@s��@t�?�s��H��0}�@NRA��AL3x@�P@R2_@�u:@&(~@$�d@���?�c�=���(���Ƭ�S������g���(�=r7��L��BU��\���
�.�p@9!#A��A�mA��A[V�@��s@�{^?��
�=!u�
��W%��̟�J'?f��̠��k�B�h��������c���*��^�I@�i�>3g����H�&��$X�2w��\��.���8Q��ކ����KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL0ű9SAnimCurveSe�	DefaultD���@}�KeyVerI�~��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\pԍ�@�L8�y�{�
х�)ٓ�М��։x�?��28P��g��'����l|���A��X�2w�Y3��@&�C�:��I���-�G����B�5�60�V�h���M��-��G����].����`��x>�-H.�B+a���@�;�U�
$9�]�a�>�$�B��؟	�)�,���c�al�2�M��C���6�1O>�@�g��"^���%�lW�C݅����[�����{&���[��,���؅e���w�����?0��`���蕅�����4Z� �7�i&�p7a��Ph�bSk��jI�Ka?Ka?Ka?gj��eU�]���H.�G����.��a����d��n���S��!��,Z������?�KeyAttrFlagsiy�KeyAttrDataFloatf

��KeyAttrRefCounti\W�AnimationCurveLpı9SAnimCurveS	�	DefaultD���!�KeyVerI�"��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q��}
KeyValueFloatf\p�.�t�Կ|��0�t���/տ�=��&=T��@T/A���@
��@�i�@J�m?�<��<�$z�z������ſ������� ���e�D�����}���N�g.�y���k�
�n�$�|*�2���t��r	��z��1.�Gq$��b������ ���4�$�R��<��,Z���������
p�������������Q�����=��FEM�j�Կ�N��ϋ�>��k@���xS���Y)�<�
���t ���^���R���a�,W��B���H��<���!��v"���6�F�M�������������5"���X��[���f8�3�y��m��U�L�	�)��`$�D9�������T�ٯ>���KeyAttrFlagsi�KeyAttrDataFloatf

J�KeyAttrRefCounti\��AnimationCurveL@ı9SAnimCurveS��	DefaultD������KeyVerI����KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q]�}
KeyValueFloatf\p����
?Q=�?�O�?���?~K�?�ޫ?�j?� >W=��)1�j,�X�ܾ�P�Nق3�;n3�����x��%�Ծ|��v��p�?w��?np�?�s�?���?��?�E}?ew�?[��?~��?aԃ?V�?��?�ߨ?:�?�B�?��?�7�?v�?��?�c�?Ի?�q�?y�?�a�?��?��?�#2v�>��f?�-u?�<�?J�?�l�?��?�@'�?��{?�<?\�?k��?H<�?e�?q �?O��??��?m��?���?�	�?�|�?_�?��?r��?�ח?px�>px�>px�>/.	?2M.@�@@��?H#�?��?n�?m��?�¨?�8�?��?ie@��@xA�?��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCounti\�AnimationCurveLı9SAnimCurveSQ�	DefaultD��I�i�KeyVerI�j�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q}
KeyValueFloatf\p�,H��8�%�)½� �p&�p���L٩����䵟@�XuA��NA��@E4��.F�������E—j��x�gz�#~�
}����z�}�|�m�b�SŠ�$�:�'��>���c�3�u��%��5�ˆ�����N[��—����ڂ��J���/ʪ����Ԃ�k�V��+%¸���\�e�����zE��(���G������Kr�fH3µ�O�RjŽ
��bņ������w��9[�p�;�8r"®�����
����ՙ�'���2!a�
�'�4�D��,@Z�@Kym���T��?��­�I��`��g¿�_��:H��-�EJ�p���/���uM���������k�+KeyAttrFlagsieKeyAttrDataFloatf

�KeyAttrRefCounti\C	AnimationCurveL�ñ9SAnimCurveS�	DefaultD�I��
KeyVerI��KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\pL���=w������޿��#�)��t5�c�����©j�(�@��	@��.@��g@���@��A?�A/�@%o�@�ŝ@<@�Y��D��O�������ʁ�s�`?Q-+A^��A3�Aζ�AYa
B=�B�8Ba�B�*Bm�AY��A��A�i�A��A
�A�!�A޽�A�A`#�A�w�A��A��A���AB�vA�zJA6;,A ��@y��?)���9j�>��ɩ�����������p������������<��� ��� ������%6���3h@�'�@U��@��f@�@�-@�R@�$�@n5�@t��@#�@I`>.>2�-)���ֿ��W��g���'�U�9��R�=
oF����KeyAttrFlagsi		KeyAttrDataFloatf

6	KeyAttrRefCounti\�AnimationCurveLPñ9SAnimCurveS�		DefaultD��:@�	KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qI}
KeyValueFloatf\p}��@���@��_@�
��ϳ��������B�����j�+�*&��K!��s������=��s>��@�A�AAs��@�b@�R?�$A�LA�@/A"�XA%>XAH��@�e��YC|�VR���+"œ�1�MS�$oh�F�S��dG���H���L®
J��0‰�ě���=����@�U*Aj[A��GA/��@F�?:O����B������O������
���T�������?�K@��?DR�>����������=�)o��*�������lR��[���_��
���`f��UYi�u����?�o~�d���Sx�������?]z@m�Z@n�?U����]j�B���������Ge��sKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\�AnimationCurveL�ñ9SAnimCurveS=	DefaultD��3;@UKeyVerI�V�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\pO��A/@�A���A���Ah�Bޤ4Bza1B�ZB�7�A$�A�C�A�DB�?�B���B�6�B��B��B9�VB�xB�7B� BkMB��B��Bݠ�B,*�B��B *C�GC�Cn�C��	C�C�>C��
C[�	Cs�C+�C�C��C`%C�C&C2�C
��BL��B�B�s�BL��B2��B�5�B��B�}�B�B��By'�B�l�B���Bg+�BZ��Bh qB�4Bz6B8r�A>v�AI�B:VB��B�� B�hB|�B�	BUY B��TB�U�Bk�B{��Bֻ�B	�B›�B*ڣBJ�|B��%B��A��A��A�vB��=B��KBG�5BX.B�BKeyAttrFlagsiQKeyAttrDataFloatf

~KeyAttrRefCounti\/AnimationCurveL�ñ9SAnimCurveS�	DefaultD T�@�KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�}
KeyValueFloatf\p�
�@?��@PF�@k!�@i�@冮@Ѽ�@mmT@��s@�T�@ǘ�@B�
AW�A2�@o�@:S�@���@]��@��@�F�@g�?��@m�@�@�6f@��տy��@\�sAi׈A�LZA�@A-����C����)������囼��)��
���y���Z���m�if�]�A�6�Ag��A���A�ˍ@m���b&O���D���������j��,�x�u���qt�������A@�ō@z�@5��@3
�@��@��@\��?޺E@E=+@f��?�j@��
@5��@��AQPA�R�@K��?dB
�����h���=�jx@���@�@�3|@�8�@e��@S��@p3�@g��@��@��[@�c@�KeyAttrFlagsi�KeyAttrDataFloatf

"KeyAttrRefCounti\�AnimationCurveL ñ9SAnimCurveS�	DefaultD�Ed
��KeyVerI���KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q5}
KeyValueFloatf\p-"S�PW̿�Dc5�r��B����V���L���b
�&r;?�I$@�a�@$&?A��fAsU5A�x�@�h��Єa���Ʊ���Il��a����P�l�@�aAE�/@G
'��<\�da����!6<��@|��@�$A��?A��gA��wA�SAmPA��CA���@uQ�Xm���|�8��7��; ����rŠ5O¨#�M>��ך��0�@�S[A�*�A$�A�^@A+��>.+��,�����^ɝ�/���
���Z!���V�����Đ{�E2�?�\��ơ@��@�DA��XA�HA�T+An�7AxG=A�A˺�@C<��\��E<u�&޽��p0��H��������s�����a��.>�_KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCounti\w%AnimationCurveL�±9SAnimCurveS) 	DefaultD���)�A KeyVerI�B#�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�$}
KeyValueFloatf\p<O���n�Q(����t������A��}��C.���@��=A_
A&?�@�>�>訅�J���"��>@�vk�[ߑ��y������	=������qv���	A��SAQ��A��A�aA�$AA��A��A䬾AeÞA9ۦA�ɰAI�AQq�AтB��BT(�Ac��A�?�A-w�ABոA-��A�z�A1a�A�B��AP��A5V�A5x�A��A��?IoR?�>^n��'��H�	�x�8����w'��
���c������/x1�(��@��Az�A��Ax8�A���A���At�A頂A�2A �@p�@N���z����(�)sw����=���Ɨw�g
��w���.���B�%KeyAttrFlagsi=%KeyAttrDataFloatf

j%KeyAttrRefCounti\+AnimationCurveL�±9SAnimCurveS�%	DefaultDd�@�%KeyVerI��(�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q}*}
KeyValueFloatf\p �7@��p@`yl@�c9@�P_@2,�@���@ݺ@�;�@м@߃T?f�?�(@��@X�@���@��@���@��a@L(�?,j�?S��?��@;d�@]�@e��@��+A�t7A���@#̈́�i���q��"���ٴ��C�H���Ox���W��͠��x�3u��
���`�NK��s��^9�E���A��Om�����*�������ؿde��i����X@���@��4@�g�?ov�>�S�>@��?��@ޔ\?Y�4?{D�@�j�@�<�@
�m@[O?��W?���?c�O?l�����ӿ~�d4)�u�ڿn|˿�R�>��3?�;9?�@�t"@�WZ@;ۑ@�"�@��@Q�@֛�@A��@��@�*KeyAttrFlagsi�*KeyAttrDataFloatf

+KeyAttrRefCounti\�0AnimationCurveL�±9SAnimCurveSq+	DefaultD�Q8@�+KeyVerI��.�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q!0}
KeyValueFloatf\p���@;��@~6O@�b�@KzA�tA�;A[�@.��@��A�Ab8A#WBAp\dAYbAJlA7�cA�E.A)��@����Z�]��Av�A��AF��Ag�
A�;??����?R���q��H�n��G1�lJR�#	@���A�2[��]t�"����˿�pY��w���I���Iȱ������[��ɺ��d�����<2���V�����5���f��XA�lA��^A��9A�T�@�0?-uk�9"�>91Z?1�)�(l@?ǺAJ6AWhAq��@+_?�)��G�@�x�w�^�{��l�Qȥ��)�?I��@���@�[�@g��@�;z@4�+@d��?���?�{�@-�@�A���@���@˼�@���@K0KeyAttrFlagsi�0KeyAttrDataFloatf

�0KeyAttrRefCounti\c6AnimationCurveL`±9SAnimCurveS1	DefaultD`�(�-1KeyVerI�.4�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q�5}
KeyValueFloatf\p[E����	h��1����F���F��W���j?�T���������=�����b���*���Q9����h�Ўu�]2���a���^��ѣ%��dx@4�T���·L�Iض����)W	@��@.�_?zm?|Ͽ��3��I����g�
���g�������[�������.�?(u�?NH�?��B@��g@�_�?���=��?|�@q��I�
��kW�ݗ���꿇�?��e�o�v���t��	0���$�I=�?;�@���@�,�@���@#�������M���������������f���4��q�s���6�̳����5��H���J��{[����0��ރ���@v/@�Ҡ����m"��5KeyAttrFlagsi)6KeyAttrDataFloatf

V6KeyAttrRefCounti\<AnimationCurveL0±9SAnimCurveS�6	DefaultD@#����6KeyVerI��9�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��qi;}
KeyValueFloatf\p�����Qӿ�P���>��>�SA?��#?�G��������r���>����.?8#�>*�ܾ
����x��]�b9���ܾy{k�׹�=�[X��`���7���!@��X��Ό�4�B�'�?�)�y��mX��=���x��3d��ﳻ��9������xf	�v�����q���>�h:;�s#A�AhX��p�-T�f���5��������O��B��8�,��*g����J
�%�0��i�
;
��\󿴙����(��b��֗���P��7g���*�����W�����+o �Jl5���["��dۿə�\��v��S)	�U�ֿ`�!ʤ>R��>}�@,t�?6��?	�>�5�=�;KeyAttrFlagsi�;KeyAttrDataFloatf

�;KeyAttrRefCounti\�AAnimationCurveL���9SAnimCurveS]<	DefaultD��?�u<KeyVerI�v?�KeyTimel\��NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��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��q
A}
KeyValueFloatf\pm��a.�_�P��?���G�G�%>M�ve4��	�g���66�pR��������֔�!\�#��t�tr&��_�n���`[�^@d3�h�>9]�?�S@c�6@]�0@�?����^�¿	ĿO�ؿx̿�eҿ�������K0��f٬���q���)�Pti�,�b�dľ��=��>G�+?|W?Bw�>v���+���˽8�	���9;*D��S�=
��=1U�߹��@:��$���v�(���(?�{���6ƿ�׾�1#����?�Ï?x�?h��?��I?2����DվeǬ�X��AE��3�<���˼]��V?^<Z�>
�0>�}K��
�d�;�@������mp>����~z��7AKeyAttrFlagsiqAKeyAttrDataFloatf

�AKeyAttrRefCounti\CAnimationCurveL���9SAnimCurveSB	DefaultDBKeyVerI�BBKeyTimel�~�[mB
KeyValueFloatf�BKeyAttrFlagsi1�BKeyAttrDataFloatf

�BKeyAttrRefCountikDAnimationCurveL`��9SAnimCurveSaC	DefaultDyCKeyVerI��CKeyTimel�~�[�C
KeyValueFloatf�CKeyAttrFlagsi11DKeyAttrDataFloatf

^DKeyAttrRefCounti�EAnimationCurveL0��9SAnimCurveS�D	DefaultD�DKeyVerI�EKeyTimel�~�[-E
KeyValueFloatfWEKeyAttrFlagsi1�EKeyAttrDataFloatf

�EKeyAttrRefCounti+GAnimationCurveL��9SAnimCurveS!F	DefaultD9FKeyVerI�bFKeyTimel�~�[�F
KeyValueFloatf�FKeyAttrFlagsi1�FKeyAttrDataFloatf

GKeyAttrRefCounti�HAnimationCurveLо�9SAnimCurveS�G	DefaultD�GKeyVerI��GKeyTimel�~�[�G
KeyValueFloatfHKeyAttrFlagsi1QHKeyAttrDataFloatf

~HKeyAttrRefCounti�IAnimationCurveL��9SAnimCurveS�H	DefaultD�HKeyVerI�"IKeyTimel�~�[MI
KeyValueFloatfwIKeyAttrFlagsi1�IKeyAttrDataFloatf

�IKeyAttrRefCountiKKAnimationCurveL���9SAnimCurveSAJ	DefaultDYJKeyVerI��JKeyTimel�~�[�J
KeyValueFloatf�JKeyAttrFlagsi1KKeyAttrDataFloatf

>KKeyAttrRefCounti�LAnimationCurveLP��9SAnimCurveS�K	DefaultD HX@�KKeyVerI��KKeyTimel�~�[
L
KeyValueFloatfA��B7LKeyAttrFlagsi1qLKeyAttrDataFloatf

�LKeyAttrRefCountiNAnimationCurveL ��9SAnimCurveSM	DefaultDMKeyVerI�BMKeyTimel�~�[mM
KeyValueFloatf�MKeyAttrFlagsi1�MKeyAttrDataFloatf

�MKeyAttrRefCountikOAnimationCurveL`��9SAnimCurveSaN	DefaultDyNKeyVerI��NKeyTimel�~�[�N
KeyValueFloatf�NKeyAttrFlagsi11OKeyAttrDataFloatf

^OKeyAttrRefCounti�PAnimationCurveL0��9SAnimCurveS�O	DefaultD�OKeyVerI�PKeyTimel�~�[-P
KeyValueFloatfWPKeyAttrFlagsi1�PKeyAttrDataFloatf

�PKeyAttrRefCounti+RAnimationCurveL��9SAnimCurveS!Q	DefaultD9QKeyVerI�bQKeyTimel�~�[�Q
KeyValueFloatf�QKeyAttrFlagsi1�QKeyAttrDataFloatf

RKeyAttrRefCounti�SAnimationCurveLл�9SAnimCurveS�R	DefaultD@��RKeyVerI��RKeyTimel�~�[�R
KeyValueFloatf�SKeyAttrFlagsi1QSKeyAttrDataFloatf

~SKeyAttrRefCounti�TAnimationCurveL���9SAnimCurveS�S	DefaultD�s"@�SKeyVerI�"TKeyTimel�~�[MT
KeyValueFloatf�AwTKeyAttrFlagsi1�TKeyAttrDataFloatf

�TKeyAttrRefCountiKVAnimationCurveL`��9SAnimCurveSAU	DefaultD�;�?YUKeyVerI��UKeyTimel�~�[�U
KeyValueFloatf���?�UKeyAttrFlagsi1VKeyAttrDataFloatf

>VKeyAttrRefCounti�WAnimationCurveL��9SAnimCurveS�V	DefaultD�VKeyVerI��VKeyTimel�~�[
W
KeyValueFloatf7WKeyAttrFlagsi1qWKeyAttrDataFloatf

�WKeyAttrRefCountiYAnimationCurveLັ9SAnimCurveSX	DefaultDXKeyVerI�BXKeyTimel�~�[mX
KeyValueFloatf�XKeyAttrFlagsi1�XKeyAttrDataFloatf

�XKeyAttrRefCountikZAnimationCurveL���9SAnimCurveSaY	DefaultDyYKeyVerI��YKeyTimel�~�[�Y
KeyValueFloatf�YKeyAttrFlagsi11ZKeyAttrDataFloatf

^ZKeyAttrRefCounti�[AnimationCurveL���9SAnimCurveS�Z	DefaultD�ZKeyVerI�[KeyTimel�~�[-[
KeyValueFloatfW[KeyAttrFlagsi1�[KeyAttrDataFloatf

�[KeyAttrRefCounti+]AnimationCurveLཱ9SAnimCurveS!\	DefaultDA0@9\KeyVerI�b\KeyTimel�~�[�\
KeyValueFloatf@�A�\KeyAttrFlagsi1�\KeyAttrDataFloatf

]KeyAttrRefCounti�^AnimationCurveL���9SAnimCurveS�]	DefaultD�2ſ�]KeyVerI��]KeyTimel�~�[�]
KeyValueFloatf��)�^KeyAttrFlagsi1Q^KeyAttrDataFloatf

~^KeyAttrRefCounti�_AnimationCurveLP��9SAnimCurveS�^	DefaultD�^KeyVerI�"_KeyTimel�~�[M_
KeyValueFloatfw_KeyAttrFlagsi1�_KeyAttrDataFloatf

�_KeyAttrRefCountiKaAnimationCurveL ��9SAnimCurveSA`	DefaultDY`KeyVerI��`KeyTimel�~�[�`
KeyValueFloatf�`KeyAttrFlagsi1aKeyAttrDataFloatf

>aKeyAttrRefCounti�bAnimationCurveL��9SAnimCurveS�a	DefaultD�aKeyVerI��aKeyTimel�~�[
b
KeyValueFloatf7bKeyAttrFlagsi1qbKeyAttrDataFloatf

�bKeyAttrRefCountidAnimationCurveLи�9SAnimCurveSc	DefaultDcKeyVerI�BcKeyTimel�~�[mc
KeyValueFloatf�cKeyAttrFlagsi1�cKeyAttrDataFloatf

�cKeyAttrRefCountikeAnimationCurveL���9SAnimCurveSad	DefaultD`��9@ydKeyVerI��dKeyTimel�~�[�d
KeyValueFloatf5�A�dKeyAttrFlagsi11eKeyAttrDataFloatf

^eKeyAttrRefCounti�fAnimationCurveLp��9SAnimCurveS�e	DefaultD <�	��eKeyVerI�fKeyTimel�~�[-f
KeyValueFloatf�qO�WfKeyAttrFlagsi1�fKeyAttrDataFloatf

�fKeyAttrRefCounti+hAnimationCurveL෱9SAnimCurveS!g	DefaultD9gKeyVerI�bgKeyTimel�~�[�g
KeyValueFloatf�gKeyAttrFlagsi1�gKeyAttrDataFloatf

hKeyAttrRefCounti�iAnimationCurveL��9SAnimCurveS�h	DefaultD�hKeyVerI��hKeyTimel�~�[�h
KeyValueFloatfiKeyAttrFlagsi1QiKeyAttrDataFloatf

~iKeyAttrRefCounti�jAnimationCurveL@��9SAnimCurveS�i	DefaultD�iKeyVerI�"jKeyTimel�~�[Mj
KeyValueFloatfwjKeyAttrFlagsi1�jKeyAttrDataFloatf

�jKeyAttrRefCountiKlAnimationCurveL���9SAnimCurveSAk	DefaultD@;YkKeyVerI��kKeyTimel�~�[�k
KeyValueFloatf�kKeyAttrFlagsi1lKeyAttrDataFloatf

>lKeyAttrRefCounti�mAnimationCurveL���9SAnimCurveS�l	DefaultD 4� @�lKeyVerI��lKeyTimel�~�[
m
KeyValueFloatf��A7mKeyAttrFlagsi1qmKeyAttrDataFloatf

�mKeyAttrRefCountioAnimationCurveLP��9SAnimCurveSn	DefaultD s�?nKeyVerI�BnKeyTimel�~�[mn
KeyValueFloatf���?�nKeyAttrFlagsi1�nKeyAttrDataFloatf

�nKeyAttrRefCountikpAnimationCurveL ��9SAnimCurveSao	DefaultDyoKeyVerI��oKeyTimel�~�[�o
KeyValueFloatf�oKeyAttrFlagsi11pKeyAttrDataFloatf

^pKeyAttrRefCounti�qAnimationCurveL�9SAnimCurveS�p	DefaultD�pKeyVerI�qKeyTimel�~�[-q
KeyValueFloatfWqKeyAttrFlagsi1�qKeyAttrDataFloatf

�qKeyAttrRefCounti+sAnimationCurveL���9SAnimCurveS!r	DefaultD9rKeyVerI�brKeyTimel�~�[�r
KeyValueFloatf�rKeyAttrFlagsi1�rKeyAttrDataFloatf

sKeyAttrRefCounti�tAnimationCurveL�ұ9SAnimCurveS�s	DefaultD෭@�sKeyVerI��sKeyTimel�~�[�s
KeyValueFloatf�m@tKeyAttrFlagsi1QtKeyAttrDataFloatf

~tKeyAttrRefCounti�uAnimationCurveL�ұ9SAnimCurveS�t	DefaultD`#� @�tKeyVerI�"uKeyTimel�~�[Mu
KeyValueFloatfAwuKeyAttrFlagsi1�uKeyAttrDataFloatf

�uKeyAttrRefCountiKwAnimationCurveL�ұ9SAnimCurveSAv	DefaultD��+@YvKeyVerI��vKeyTimel�~�[�v
KeyValueFloatf'^�@�vKeyAttrFlagsi1wKeyAttrDataFloatf

>wKeyAttrRefCounti�xAnimationCurveLPұ9SAnimCurveS�w	DefaultD�wKeyVerI��wKeyTimel�~�[
x
KeyValueFloatf7xKeyAttrFlagsi1qxKeyAttrDataFloatf

�xKeyAttrRefCountizAnimationCurveL ұ9SAnimCurveSy	DefaultDyKeyVerI�ByKeyTimel�~�[my
KeyValueFloatf�yKeyAttrFlagsi1�yKeyAttrDataFloatf

�yKeyAttrRefCountik{AnimationCurveL�ѱ9SAnimCurveSaz	DefaultDyzKeyVerI��zKeyTimel�~�[�z
KeyValueFloatf�zKeyAttrFlagsi11{KeyAttrDataFloatf

^{KeyAttrRefCounti�|AnimationCurveL���9SAnimCurveS�{	DefaultD����{KeyVerI�|KeyTimel�~�[-|
KeyValueFloatf�p�W|KeyAttrFlagsi1�|KeyAttrDataFloatf

�|KeyAttrRefCounti+~AnimationCurveL���9SAnimCurveS!}	DefaultD %� @9}KeyVerI�b}KeyTimel�~�[�}
KeyValueFloatf)A�}KeyAttrFlagsi1�}KeyAttrDataFloatf

~KeyAttrRefCounti�AnimationCurveLറ9SAnimCurveS�~	DefaultD�+@�~KeyVerI��~KeyTimel�~�[�~
KeyValueFloatf ^�@KeyAttrFlagsi1QKeyAttrDataFloatf

~KeyAttrRefCounti�AnimationCurveLP��9SAnimCurveS�	DefaultD�KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfw�KeyAttrFlagsi1��KeyAttrDataFloatf

ހKeyAttrRefCountiK�AnimationCurveL ��9SAnimCurveSA�	DefaultDY�KeyVerI���KeyTimel�~�[��
KeyValueFloatfׁKeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL���9SAnimCurveS��	DefaultD��KeyVerI��KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�9SAnimCurveS�	DefaultD@��KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf���KeyAttrFlagsi1фKeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL���9SAnimCurveSa�	DefaultD@���?y�KeyVerI���KeyTimel�~�[ͅ
KeyValueFloatf*l�?��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCountiˇAnimationCurveL`��9SAnimCurveS��	DefaultD`)��?نKeyVerI��KeyTimel�~�[-�
KeyValueFloatfK1�?W�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL0��9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLв�9SAnimCurveS��	DefaultD�Y	�<��KeyVerI�‰KeyTimel�~�[�
KeyValueFloatf�JP%�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti�AnimationCurveL��9SAnimCurveS�	DefaultD����<��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatf�-%w�KeyAttrFlagsi1��KeyAttrDataFloatf

ދKeyAttrRefCountiK�AnimationCurveL���9SAnimCurveSA�	DefaultD@<Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf"׌KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL`ѱ9SAnimCurveS��	DefaultD��K���KeyVerI��KeyTimel�~�[
�
KeyValueFloatf-]�7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL0ѱ9SAnimCurveS�	DefaultD`'�?�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf�8�?��KeyAttrFlagsi1яKeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL@��9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[͐
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti˒AnimationCurveL��9SAnimCurveS��	DefaultDّKeyVerI��KeyTimel�~�[-�
KeyValueFloatfW�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL�9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL0�9SAnimCurveS��	DefaultD@<��KeyVerI�”KeyTimel�~�[�
KeyValueFloatf"�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti�AnimationCurveL`�9SAnimCurveS�	DefaultD@�����KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatf��w�KeyAttrFlagsi1��KeyAttrDataFloatf

ޖKeyAttrRefCountiK�AnimationCurveL��9SAnimCurveSA�	DefaultD�}�@Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf�Cu@חKeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL@�9SAnimCurveS��	DefaultD��KeyVerI��KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLp�9SAnimCurveS�	DefaultD�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf��KeyAttrFlagsi1њKeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL��9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[͛
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti˝AnimationCurveL��9SAnimCurveS��	DefaultD�"��?ٜKeyVerI��KeyTimel�~�[-�
KeyValueFloatfi�?W�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL��9SAnimCurveS!�	DefaultD��Y�9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��
���KeyAttrFlagsi1�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��9SAnimCurveS��	DefaultD��r @��KeyVerI�ŸKeyTimel�~�[�
KeyValueFloatfĕA�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti�AnimationCurveL��9SAnimCurveS�	DefaultD��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfw�KeyAttrFlagsi1��KeyAttrDataFloatf

ޡKeyAttrRefCountiK�AnimationCurveL�9SAnimCurveSA�	DefaultDY�KeyVerI���KeyTimel�~�[��
KeyValueFloatfעKeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveLp�9SAnimCurveS��	DefaultD��KeyVerI��KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLpv�9SAnimCurveS�	DefaultD@<�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf"��KeyAttrFlagsi1ѥKeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL@v�9SAnimCurveSa�	DefaultD��P�y�KeyVerI���KeyTimel�~�[ͦ
KeyValueFloatf'�����KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti˨AnimationCurveLv�9SAnimCurveS��	DefaultD���@٧KeyVerI��KeyTimel�~�[-�
KeyValueFloatf���@W�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL�u�9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL0w�9SAnimCurveS��	DefaultD��KeyVerI�ªKeyTimel�~�[�
KeyValueFloatf�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti�AnimationCurveLw�9SAnimCurveS�	DefaultD��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfw�KeyAttrFlagsi1��KeyAttrDataFloatf

ެKeyAttrRefCountiK�AnimationCurveL�v�9SAnimCurveSA�	DefaultD�"���Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatfi��׭KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL�v�9SAnimCurveS��	DefaultD��Y���KeyVerI��KeyTimel�~�[
�
KeyValueFloatf��
�7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�w�9SAnimCurveS�	DefaultD@�r @�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf�A��KeyAttrFlagsi1ѰKeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL�w�9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[ͱ
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti˳AnimationCurveL�w�9SAnimCurveS��	DefaultDٲKeyVerI��KeyTimel�~�[-�
KeyValueFloatfW�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL`w�9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL}�9SAnimCurveS��	DefaultD��E
���KeyVerI�µKeyTimel�~�[�
KeyValueFloatf-R��KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti�AnimationCurveL�}�9SAnimCurveS�	DefaultD������KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfH5Կw�KeyAttrFlagsi1��KeyAttrDataFloatf

޷KeyAttrRefCountiK�AnimationCurveL�}�9SAnimCurveSA�	DefaultD@�r@Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf���@׸KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL`}�9SAnimCurveS��	DefaultD��KeyVerI��KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL0}�9SAnimCurveS�	DefaultD�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf��KeyAttrFlagsi1ѻKeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL�~�9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[ͼ
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti˾AnimationCurveL�ѱ9SAnimCurveS��	DefaultD�LF
@ٽKeyVerI��KeyTimel�~�[-�
KeyValueFloatfg2R@W�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL�ѱ9SAnimCurveS!�	DefaultD����9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatfH5Կ��KeyAttrFlagsi1�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLP~�9SAnimCurveS��	DefaultD`�r@��KeyVerI���KeyTimel�~�[��
KeyValueFloatf��@�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveL ~�9SAnimCurveS��	DefaultD��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfw�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountiK�AnimationCurveL�}�9SAnimCurveSA�	DefaultDY�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL@�9SAnimCurveS��	DefaultD��KeyVerI���KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�9SAnimCurveS�	DefaultD�3�?�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf?��KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL�~�9SAnimCurveSa�	DefaultD��[�y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf�����KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti��AnimationCurveL�~�9SAnimCurveS��	DefaultD |�"@��KeyVerI��KeyTimel�~�[-�
KeyValueFloatf�cAW�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL��9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLP{�9SAnimCurveS��	DefaultD��KeyVerI���KeyTimel�~�[��
KeyValueFloatf�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveL {�9SAnimCurveS��	DefaultD��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfw�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountiK�AnimationCurveL�z�9SAnimCurveSA�	DefaultDף�?Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��?��KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL�z�9SAnimCurveS��	DefaultD�@��KeyVerI���KeyTimel�~�[
�
KeyValueFloatf�f(@7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL|�9SAnimCurveS�	DefaultD@i,"@�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatfJcA��KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL�{�9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti��AnimationCurveL�{�9SAnimCurveS��	DefaultD��KeyVerI��KeyTimel�~�[-�
KeyValueFloatfW�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL�{�9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�|�9SAnimCurveS��	DefaultD���@��KeyVerI���KeyTimel�~�[��
KeyValueFloatf���@�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveL�|�9SAnimCurveS��	DefaultD�(�
@��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfF�W@w�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountiK�AnimationCurveLp|�9SAnimCurveSA�	DefaultD`��@Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatfc-�@��KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL@|�9SAnimCurveS��	DefaultD��KeyVerI���KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLЂ�9SAnimCurveS�	DefaultD�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf��KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL�x�9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti��AnimationCurveL�x�9SAnimCurveS��	DefaultD@�~@��KeyVerI��KeyTimel�~�[-�
KeyValueFloatf�c@W�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL�x�9SAnimCurveS!�	DefaultD�@9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatfX<�@��KeyAttrFlagsi1��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLPx�9SAnimCurveS��	DefaultD p~@��KeyVerI���KeyTimel�~�[��
KeyValueFloatf���@�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveL�y�9SAnimCurveS��	DefaultD���KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatf��w�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountiK�AnimationCurveLpy�9SAnimCurveSA�	DefaultDY�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL@y�9SAnimCurveS��	DefaultD��KeyVerI���KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLy�9SAnimCurveS�	DefaultD`��@�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatfC4\@��KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL`z�9SAnimCurveSa�	DefaultD#$@y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf� A��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti��AnimationCurveL0z�9SAnimCurveS��	DefaultD�
 @��KeyVerI��KeyTimel�~�[-�
KeyValueFloatfTAW�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveLz�9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�y�9SAnimCurveS��	DefaultD��KeyVerI���KeyTimel�~�[��
KeyValueFloatf�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveLp�9SAnimCurveS��	DefaultD��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfw�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountiK�AnimationCurveL�q�9SAnimCurveSA�	DefaultD��L�?Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatfg�?��KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL`q�9SAnimCurveS��	DefaultD ��'@��KeyVerI���KeyTimel�~�[
�
KeyValueFloatfA>A7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL0q�9SAnimCurveS�	DefaultD`��"@�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf�A��KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveLq�9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti��AnimationCurveLPr�9SAnimCurveS��	DefaultD��KeyVerI��KeyTimel�~�[-�
KeyValueFloatfW�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCounti+�AnimationCurveL r�9SAnimCurveS!�	DefaultD9�KeyVerI�b�KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi1��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�q�9SAnimCurveS��	DefaultD@@��KeyVerI���KeyTimel�~�[��
KeyValueFloatf� �@�KeyAttrFlagsi1Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveL�q�9SAnimCurveS��	DefaultD �&@��KeyVerI�"�KeyTimel�~�[M�
KeyValueFloatfq�7Aw�KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountiK�AnimationCurveLs�9SAnimCurveSA�	DefaultD��@Y�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��@��KeyAttrFlagsi1�KeyAttrDataFloatf

>�KeyAttrRefCounti��AnimationCurveL�r�9SAnimCurveS��	DefaultD��KeyVerI���KeyTimel�~�[
�
KeyValueFloatf7�KeyAttrFlagsi1q�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�r�9SAnimCurveS�	DefaultD�KeyVerI�B�KeyTimel�~�[m�
KeyValueFloatf��KeyAttrFlagsi1��KeyAttrDataFloatf

��KeyAttrRefCountik�AnimationCurveL�r�9SAnimCurveSa�	DefaultDy�KeyVerI���KeyTimel�~�[��
KeyValueFloatf��KeyAttrFlagsi11�KeyAttrDataFloatf

^�KeyAttrRefCounti�	AnimationCurveL x�9SAnimCurveS��	DefaultD��L���KeyVerI�	KeyTimel�~�[-	
KeyValueFloatfg��W	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti+	AnimationCurveL`��9SAnimCurveS!		DefaultD ��'@9	KeyVerI�b	KeyTimel�~�[�	
KeyValueFloatfA>A�	KeyAttrFlagsi1�	KeyAttrDataFloatf

	KeyAttrRefCounti�	AnimationCurveL0��9SAnimCurveS�		DefaultD`��"@�	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf�A	KeyAttrFlagsi1Q	KeyAttrDataFloatf

~	KeyAttrRefCounti�	AnimationCurveL��9SAnimCurveS�		DefaultD�	KeyVerI�"	KeyTimel�~�[M	
KeyValueFloatfw	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCountiK	AnimationCurveL�9SAnimCurveSA		DefaultDY	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf�	KeyAttrFlagsi1	KeyAttrDataFloatf

>	KeyAttrRefCounti�	AnimationCurveL ��9SAnimCurveS�		DefaultD�	KeyVerI��	KeyTimel�~�[
	
KeyValueFloatf7	KeyAttrFlagsi1q	KeyAttrDataFloatf

�	KeyAttrRefCounti		AnimationCurveL�9SAnimCurveS		DefaultD��	KeyVerI�B	KeyTimel�~�[m	
KeyValueFloatf� ���	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCountik
	AnimationCurveL���9SAnimCurveSa			DefaultD���&@y		KeyVerI��		KeyTimel�~�[�		
KeyValueFloatfn�7A�		KeyAttrFlagsi11
	KeyAttrDataFloatf

^
	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�
		DefaultD��@�
	KeyVerI�	KeyTimel�~�[-	
KeyValueFloatf��@W	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti+
	AnimationCurveLॱ9SAnimCurveS!		DefaultD9	KeyVerI�b	KeyTimel�~�[�	
KeyValueFloatf�	KeyAttrFlagsi1�	KeyAttrDataFloatf


	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�
		DefaultD�
	KeyVerI��
	KeyTimel�~�[�
	
KeyValueFloatf	KeyAttrFlagsi1Q	KeyAttrDataFloatf

~	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD�	KeyVerI�"	KeyTimel�~�[M	
KeyValueFloatfw	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCountiK	AnimationCurveLP��9SAnimCurveSA		DefaultD+��Y	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatfX9\��	KeyAttrFlagsi1	KeyAttrDataFloatf

>	KeyAttrRefCounti�	AnimationCurveL@��9SAnimCurveS�		DefaultD�`$@�	KeyVerI��	KeyTimel�~�[
	
KeyValueFloatf� A7	KeyAttrFlagsi1q	KeyAttrDataFloatf

�	KeyAttrRefCounti	AnimationCurveL�9SAnimCurveS		DefaultD`�
 @	KeyVerI�B	KeyTimel�~�[m	
KeyValueFloatf�TA�	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCountik	AnimationCurveL���9SAnimCurveSa		DefaultDy	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf�	KeyAttrFlagsi11	KeyAttrDataFloatf

^	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD�	KeyVerI�	KeyTimel�~�[-	
KeyValueFloatfW	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti+	AnimationCurveL`��9SAnimCurveS!		DefaultD9	KeyVerI�b	KeyTimel�~�[�	
KeyValueFloatf�	KeyAttrFlagsi1�	KeyAttrDataFloatf

	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD��~��	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf��c�	KeyAttrFlagsi1Q	KeyAttrDataFloatf

~	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD u@�	KeyVerI�"	KeyTimel�~�[M	
KeyValueFloatf�;�@w	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCountiK	AnimationCurveLP��9SAnimCurveSA		DefaultD��~@Y	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf���@�	KeyAttrFlagsi1	KeyAttrDataFloatf

>	KeyAttrRefCounti�	AnimationCurveL ��9SAnimCurveS�		DefaultD��	KeyVerI��	KeyTimel�~�[
	
KeyValueFloatf��7	KeyAttrFlagsi1q	KeyAttrDataFloatf

�	KeyAttrRefCounti	AnimationCurveLp��9SAnimCurveS		DefaultD	KeyVerI�B	KeyTimel�~�[m	
KeyValueFloatf�	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCountik 	AnimationCurveL@��9SAnimCurveSa		DefaultDy	KeyVerI��	KeyTimel�~�[�	
KeyValueFloatf�	KeyAttrFlagsi11 	KeyAttrDataFloatf

^ 	KeyAttrRefCounti�!	AnimationCurveL��9SAnimCurveS� 		DefaultD-��� 	KeyVerI�!	KeyTimel�~�[-!	
KeyValueFloatfh���W!	KeyAttrFlagsi1�!	KeyAttrDataFloatf

�!	KeyAttrRefCounti+#	AnimationCurveLࢱ9SAnimCurveS!"		DefaultD�V�
@9"	KeyVerI�b"	KeyTimel�~�[�"	
KeyValueFloatf��W@�"	KeyAttrFlagsi1�"	KeyAttrDataFloatf

#	KeyAttrRefCounti�$	AnimationCurveLp��9SAnimCurveS�#		DefaultD�]�@�#	KeyVerI��#	KeyTimel�~�[�#	
KeyValueFloatf�*�@$	KeyAttrFlagsi1Q$	KeyAttrDataFloatf

~$	KeyAttrRefCounti�%	AnimationCurveL���9SAnimCurveS�$		DefaultD�$	KeyVerI�"%	KeyTimel�~�[M%	
KeyValueFloatfw%	KeyAttrFlagsi1�%	KeyAttrDataFloatf

�%	KeyAttrRefCountiK'	AnimationCurveLP��9SAnimCurveSA&		DefaultDY&	KeyVerI��&	KeyTimel�~�[�&	
KeyValueFloatf�&	KeyAttrFlagsi1'	KeyAttrDataFloatf

>'	KeyAttrRefCounti�(	AnimationCurveL ��9SAnimCurveS�'		DefaultD�'	KeyVerI��'	KeyTimel�~�[
(	
KeyValueFloatf7(	KeyAttrFlagsi1q(	KeyAttrDataFloatf

�(	KeyAttrRefCounti*	AnimationCurveL�9SAnimCurveS)		DefaultDף��)	KeyVerI�B)	KeyTimel�~�[m)	
KeyValueFloatf�志)	KeyAttrFlagsi1�)	KeyAttrDataFloatf

�)	KeyAttrRefCountik+	AnimationCurveL@��9SAnimCurveSa*		DefaultD`@y*	KeyVerI��*	KeyTimel�~�[�*	
KeyValueFloatf�`(@�*	KeyAttrFlagsi11+	KeyAttrDataFloatf

^+	KeyAttrRefCounti�,	AnimationCurveL��9SAnimCurveS�+		DefaultD`�,"@�+	KeyVerI�,	KeyTimel�~�[-,	
KeyValueFloatf�dAW,	KeyAttrFlagsi1�,	KeyAttrDataFloatf

�,	KeyAttrRefCounti+.	AnimationCurveL���9SAnimCurveS!-		DefaultD9-	KeyVerI�b-	KeyTimel�~�[�-	
KeyValueFloatf�-	KeyAttrFlagsi1�-	KeyAttrDataFloatf

.	KeyAttrRefCounti�/	AnimationCurveL���9SAnimCurveS�.		DefaultD�.	KeyVerI��.	KeyTimel�~�[�.	
KeyValueFloatf/	KeyAttrFlagsi1Q/	KeyAttrDataFloatf

~/	KeyAttrRefCounti�0	AnimationCurveL��9SAnimCurveS�/		DefaultD�/	KeyVerI�"0	KeyTimel�~�[M0	
KeyValueFloatfw0	KeyAttrFlagsi1�0	KeyAttrDataFloatf

�0	KeyAttrRefCountiK2	AnimationCurveL�9SAnimCurveSA1		DefaultD�3��Y1	KeyVerI��1	KeyTimel�~�[�1	
KeyValueFloatf��1	KeyAttrFlagsi12	KeyAttrDataFloatf

>2	KeyAttrRefCounti�3	AnimationCurveL���9SAnimCurveS�2		DefaultD��W࿹2	KeyVerI��2	KeyTimel�~�[
3	
KeyValueFloatf\��73	KeyAttrFlagsi1q3	KeyAttrDataFloatf

�3	KeyAttrRefCounti5	AnimationCurveLp��9SAnimCurveS4		DefaultD@i�"@4	KeyVerI�B4	KeyTimel�~�[m4	
KeyValueFloatfJcA�4	KeyAttrFlagsi1�4	KeyAttrDataFloatf

�4	KeyAttrRefCountik6	AnimationCurveL��9SAnimCurveSa5		DefaultDy5	KeyVerI��5	KeyTimel�~�[�5	
KeyValueFloatf�5	KeyAttrFlagsi116	KeyAttrDataFloatf

^6	KeyAttrRefCounti�7	AnimationCurveLP��9SAnimCurveS�6		DefaultD�6	KeyVerI�7	KeyTimel�~�[-7	
KeyValueFloatfW7	KeyAttrFlagsi1�7	KeyAttrDataFloatf

�7	KeyAttrRefCounti+9	AnimationCurveL���9SAnimCurveS!8		DefaultD98	KeyVerI�b8	KeyTimel�~�[�8	
KeyValueFloatf�8	KeyAttrFlagsi1�8	KeyAttrDataFloatf

9	KeyAttrRefCounti�:	AnimationCurveL���9SAnimCurveS�9		DefaultD�����9	KeyVerI��9	KeyTimel�~�[�9	
KeyValueFloatf�u�:	KeyAttrFlagsi1Q:	KeyAttrDataFloatf

~:	KeyAttrRefCounti�;	AnimationCurveL���9SAnimCurveS�:		DefaultD`�)6@�:	KeyVerI�";	KeyTimel�~�[M;	
KeyValueFloatfL�Aw;	KeyAttrFlagsi1�;	KeyAttrDataFloatf

�;	KeyAttrRefCountiK=	AnimationCurveL���9SAnimCurveSA<		DefaultD@
M��Y<	KeyVerI��<	KeyTimel�~�[�<	
KeyValueFloatfRhڿ�<	KeyAttrFlagsi1=	KeyAttrDataFloatf

>=	KeyAttrRefCounti�>	AnimationCurveL���9SAnimCurveS�=		DefaultD�=	KeyVerI��=	KeyTimel�~�[
>	
KeyValueFloatf7>	KeyAttrFlagsi1q>	KeyAttrDataFloatf

�>	KeyAttrRefCounti@	AnimationCurveL���9SAnimCurveS?		DefaultD ܥ�?	KeyVerI�B?	KeyTimel�~�[m?	
KeyValueFloatf�.e��?	KeyAttrFlagsi1�?	KeyAttrDataFloatf

�?	KeyAttrRefCountikA	AnimationCurveL ��9SAnimCurveSa@		DefaultD e|�<y@	KeyVerI��@	KeyTimel�~�[�@	
KeyValueFloatf)�+&�@	KeyAttrFlagsi11A	KeyAttrDataFloatf

^A	KeyAttrRefCounti�B	AnimationCurveL���9SAnimCurveS�A		DefaultD��$@�A	KeyVerI�B	KeyTimel�~�[-B	
KeyValueFloatff� AWB	KeyAttrFlagsi1�B	KeyAttrDataFloatf

�B	KeyAttrRefCounti+D	AnimationCurveL��9SAnimCurveS!C		DefaultD��a0�9C	KeyVerI�bC	KeyTimel�~�[�C	
KeyValueFloatfl���C	KeyAttrFlagsi1�C	KeyAttrDataFloatf

D	KeyAttrRefCounti�E	AnimationCurveL0��9SAnimCurveS�D		DefaultD@�վ�D	KeyVerI��D	KeyTimel�~�[�D	
KeyValueFloatfz���E	KeyAttrFlagsi1QE	KeyAttrDataFloatf

~E	KeyAttrRefCounti�F	AnimationCurveL`��9SAnimCurveS�E		DefaultD@���E	KeyVerI�"F	KeyTimel�~�[MF	
KeyValueFloatf��wF	KeyAttrFlagsi1�F	KeyAttrDataFloatf

�F	KeyAttrRefCountiKH	AnimationCurveL���9SAnimCurveSAG		DefaultDYG	KeyVerI��G	KeyTimel�~�[�G	
KeyValueFloatf�G	KeyAttrFlagsi1H	KeyAttrDataFloatf

>H	KeyAttrRefCounti�I	AnimationCurveL��9SAnimCurveS�H		DefaultD 	��<�H	KeyVerI��H	KeyTimel�~�[
I	
KeyValueFloatfI�'7I	KeyAttrFlagsi1qI	KeyAttrDataFloatf

�I	KeyAttrRefCountiK	AnimationCurveL���9SAnimCurveSJ		DefaultD`�W9�J	KeyVerI�BJ	KeyTimel�~�[mJ	
KeyValueFloatf����J	KeyAttrFlagsi1�J	KeyAttrDataFloatf

�J	KeyAttrRefCountikL	AnimationCurveL���9SAnimCurveSaK		DefaultD �<�?yK	KeyVerI��K	KeyTimel�~�[�K	
KeyValueFloatf�?�K	KeyAttrFlagsi11L	KeyAttrDataFloatf

^L	KeyAttrRefCounti�M	AnimationCurveL���9SAnimCurveS�L		DefaultD`,����L	KeyVerI�M	KeyTimel�~�[-M	
KeyValueFloatfc�տWM	KeyAttrFlagsi1�M	KeyAttrDataFloatf

�M	KeyAttrRefCounti+O	AnimationCurveLБ�9SAnimCurveS!N		DefaultD e|��9N	KeyVerI�bN	KeyTimel�~�[�N	
KeyValueFloatf)㫤�N	KeyAttrFlagsi1�N	KeyAttrDataFloatf

O	KeyAttrRefCounti�P	AnimationCurveL���9SAnimCurveS�O		DefaultD ܥܼ�O	KeyVerI��O	KeyTimel�~�[�O	
KeyValueFloatf�.�P	KeyAttrFlagsi1QP	KeyAttrDataFloatf

~P	KeyAttrRefCounti�Q	AnimationCurveLp��9SAnimCurveS�P		DefaultD 2���P	KeyVerI�"Q	KeyTimel�~�[MQ	
KeyValueFloatf�i/�wQ	KeyAttrFlagsi1�Q	KeyAttrDataFloatf

�Q	KeyAttrRefCountiKS	AnimationCurveL@��9SAnimCurveSAR		DefaultD ��8�YR	KeyVerI��R	KeyTimel�~�[�R	
KeyValueFloatf�L���R	KeyAttrFlagsi1S	KeyAttrDataFloatf

>S	KeyAttrRefCounti�T	AnimationCurveL���9SAnimCurveS�S		DefaultD <P@�S	KeyVerI��S	KeyTimel�~�[
T	
KeyValueFloatf�
@7T	KeyAttrFlagsi1qT	KeyAttrDataFloatf

�T	KeyAttrRefCountiV	AnimationCurveL`��9SAnimCurveSU		DefaultD����?U	KeyVerI�BU	KeyTimel�~�[mU	
KeyValueFloatf�?�U	KeyAttrFlagsi1�U	KeyAttrDataFloatf

�U	KeyAttrRefCountikW	AnimationCurveL0��9SAnimCurveSaV		DefaultD� �<yV	KeyVerI��V	KeyTimel�~�[�V	
KeyValueFloatf�H$�V	KeyAttrFlagsi11W	KeyAttrDataFloatf

^W	KeyAttrRefCounti�X	AnimationCurveL��9SAnimCurveS�W		DefaultD ܥ���W	KeyVerI�X	KeyTimel�~�[-X	
KeyValueFloatf�.e�WX	KeyAttrFlagsi1�X	KeyAttrDataFloatf

�X	KeyAttrRefCounti+Z	AnimationCurveL�9SAnimCurveS!Y		DefaultD�
��<9Y	KeyVerI�bY	KeyTimel�~�[�Y	
KeyValueFloatfl��&�Y	KeyAttrFlagsi1�Y	KeyAttrDataFloatf

Z	KeyAttrRefCounti�[	AnimationCurveL���9SAnimCurveS�Z		DefaultD�����Z	KeyVerI��Z	KeyTimel�~�[�Z	
KeyValueFloatfM���[	KeyAttrFlagsi1Q[	KeyAttrDataFloatf

~[	KeyAttrRefCounti�\	AnimationCurveLp��9SAnimCurveS�[		DefaultD�K�ɿ�[	KeyVerI�"\	KeyTimel�~�[M\	
KeyValueFloatf^2L�w\	KeyAttrFlagsi1�\	KeyAttrDataFloatf

�\	KeyAttrRefCountiK^	AnimationCurveL@��9SAnimCurveSA]		DefaultD�ۚ�Y]	KeyVerI��]	KeyTimel�~�[�]	
KeyValueFloatf��D��]	KeyAttrFlagsi1^	KeyAttrDataFloatf

>^	KeyAttrRefCounti�_	AnimationCurveL��9SAnimCurveS�^		DefaultD�K���^	KeyVerI��^	KeyTimel�~�[
_	
KeyValueFloatf^��7_	KeyAttrFlagsi1q_	KeyAttrDataFloatf

�_	KeyAttrRefCountia	AnimationCurveL`��9SAnimCurveS`		DefaultD ܥ�<`	KeyVerI�B`	KeyTimel�~�[m`	
KeyValueFloatf�.�&�`	KeyAttrFlagsi1�`	KeyAttrDataFloatf

�`	KeyAttrRefCountikb	AnimationCurveL0��9SAnimCurveSaa		DefaultD����<ya	KeyVerI��a	KeyTimel�~�[�a	
KeyValueFloatf�&'�a	KeyAttrFlagsi11b	KeyAttrDataFloatf

^b	KeyAttrRefCounti�c	AnimationCurveL��9SAnimCurveS�b		DefaultD����b	KeyVerI�c	KeyTimel�~�[-c	
KeyValueFloatf�6�Wc	KeyAttrFlagsi1�c	KeyAttrDataFloatf

�c	KeyAttrRefCounti+e	AnimationCurveLЎ�9SAnimCurveS!d		DefaultD�(���9d	KeyVerI�bd	KeyTimel�~�[�d	
KeyValueFloatfD��d	KeyAttrFlagsi1�d	KeyAttrDataFloatf

e	KeyAttrRefCounti�f	AnimationCurveL ��9SAnimCurveS�e		DefaultD`��e	KeyVerI��e	KeyTimel�~�[�e	
KeyValueFloatf�Ȕ�f	KeyAttrFlagsi1Qf	KeyAttrDataFloatf

~f	KeyAttrRefCounti�g	AnimationCurveL���9SAnimCurveS�f		DefaultD�D3�<�f	KeyVerI�"g	KeyTimel�~�[Mg	
KeyValueFloatf%�a%wg	KeyAttrFlagsi1�g	KeyAttrDataFloatf

�g	KeyAttrRefCountiKi	AnimationCurveL���9SAnimCurveSAh		DefaultD��	=Yh	KeyVerI��h	KeyTimel�~�[�h	
KeyValueFloatfmN((�h	KeyAttrFlagsi1i	KeyAttrDataFloatf

>i	KeyAttrRefCounti�j	AnimationCurveL���9SAnimCurveS�i		DefaultD��
ռ�i	KeyVerI��i	KeyTimel�~�[
j	
KeyValueFloatf�l��7j	KeyAttrFlagsi1qj	KeyAttrDataFloatf

�j	KeyAttrRefCountil	AnimationCurveL ��9SAnimCurveSk		DefaultD�8$�k	KeyVerI�Bk	KeyTimel�~�[mk	
KeyValueFloatf�!	��k	KeyAttrFlagsi1�k	KeyAttrDataFloatf

�k	KeyAttrRefCountikm	AnimationCurveL0��9SAnimCurveSal		DefaultD��V��yl	KeyVerI��l	KeyTimel�~�[�l	
KeyValueFloatf��b��l	KeyAttrFlagsi11m	KeyAttrDataFloatf

^m	KeyAttrRefCounti�n	AnimationCurveL��9SAnimCurveS�m		DefaultD �@��m	KeyVerI�n	KeyTimel�~�[-n	
KeyValueFloatfqZ�Wn	KeyAttrFlagsi1�n	KeyAttrDataFloatf

�n	KeyAttrRefCounti+p	AnimationCurveLЋ�9SAnimCurveS!o		DefaultD9o	KeyVerI�bo	KeyTimel�~�[�o	
KeyValueFloatf�o	KeyAttrFlagsi1�o	KeyAttrDataFloatf

p	KeyAttrRefCounti�q	AnimationCurveL���9SAnimCurveS�p		DefaultD ܥ�<�p	KeyVerI��p	KeyTimel�~�[�p	
KeyValueFloatf�.�'q	KeyAttrFlagsi1Qq	KeyAttrDataFloatf

~q	KeyAttrRefCounti�r	AnimationCurveL���9SAnimCurveS�q		DefaultD ܥ\��q	KeyVerI�"r	KeyTimel�~�[Mr	
KeyValueFloatf�.�wr	KeyAttrFlagsi1�r	KeyAttrDataFloatf

�r	KeyAttrRefCountiKt	AnimationCurveL���9SAnimCurveSAs		DefaultD�H=�Ys	KeyVerI��s	KeyTimel�~�[�s	
KeyValueFloatfE����s	KeyAttrFlagsi1t	KeyAttrDataFloatf

>t	KeyAttrRefCounti�u	AnimationCurveL���9SAnimCurveS�t		DefaultD�is�?�t	KeyVerI��t	KeyTimel�~�[
u	
KeyValueFloatfO�{>7u	KeyAttrFlagsi1qu	KeyAttrDataFloatf

�u	KeyAttrRefCountiw	AnimationCurveL`��9SAnimCurveSv		DefaultD �m�v	KeyVerI�Bv	KeyTimel�~�[mv	
KeyValueFloatf�m{��v	KeyAttrFlagsi1�v	KeyAttrDataFloatf

�v	KeyAttrRefCountikx	AnimationCurveL���9SAnimCurveSaw		DefaultD e|u<yw	KeyVerI��w	KeyTimel�~�[�w	
KeyValueFloatf)�#�w	KeyAttrFlagsi11x	KeyAttrDataFloatf

^x	KeyAttrRefCounti�y	AnimationCurveL���9SAnimCurveS�x		DefaultD����<�x	KeyVerI�y	KeyTimel�~�[-y	
KeyValueFloatfM='Wy	KeyAttrFlagsi1�y	KeyAttrDataFloatf

�y	KeyAttrRefCounti+{	AnimationCurveLP��9SAnimCurveS!z		DefaultD��o��9z	KeyVerI�bz	KeyTimel�~�[�z	
KeyValueFloatf7���z	KeyAttrFlagsi1�z	KeyAttrDataFloatf

{	KeyAttrRefCounti�|	AnimationCurveL ��9SAnimCurveS�{		DefaultD�'��{	KeyVerI��{	KeyTimel�~�[�{	
KeyValueFloatf/=��|	KeyAttrFlagsi1Q|	KeyAttrDataFloatf

~|	KeyAttrRefCounti�}	AnimationCurveL���9SAnimCurveS�|		DefaultD ښ���|	KeyVerI�"}	KeyTimel�~�[M}	
KeyValueFloatf���w}	KeyAttrFlagsi1�}	KeyAttrDataFloatf

�}	KeyAttrRefCountiK	AnimationCurveL��9SAnimCurveSA~		DefaultD@K�߿Y~	KeyVerI��~	KeyTimel�~�[�~	
KeyValueFloatfZ:���~	KeyAttrFlagsi1	KeyAttrDataFloatf

>	KeyAttrRefCounti��	AnimationCurveL��9SAnimCurveS�		DefaultD e|弹	KeyVerI��	KeyTimel�~�[
�	
KeyValueFloatf)�+�7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL �9SAnimCurveS�		DefaultD e|�<�	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf)�&��	KeyAttrFlagsi1с	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveLP�9SAnimCurveSa�		DefaultD�ja�<y�	KeyVerI���	KeyTimel�~�[͂	
KeyValueFloatfT'��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti˄	AnimationCurveL�9SAnimCurveS��		DefaultD@���ك	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf��<�W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL0�9SAnimCurveS!�		DefaultD�
��9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatfl�D���	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL`�9SAnimCurveS��		DefaultD��ݿ��	KeyVerI�†	KeyTimel�~�[�	
KeyValueFloatf֨��	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti�	AnimationCurveL��9SAnimCurveS�		DefaultD ܥ����	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf�.e�w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

ވ	KeyAttrRefCountiK�	AnimationCurveL@�9SAnimCurveSA�		DefaultD ܥܼY�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�.�׉	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveLp�9SAnimCurveS��		DefaultD�hU����	KeyVerI��	KeyTimel�~�[
�	
KeyValueFloatfF�z�7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL��9SAnimCurveS�		DefaultD�QB��	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf�����	KeyAttrFlagsi1ь	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL��9SAnimCurveSa�		DefaultD<��?y�	KeyVerI���	KeyTimel�~�[͍	
KeyValueFloatf�Q�>��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCountiˏ	AnimationCurveL0��9SAnimCurveS��		DefaultD@��?َ	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf���?W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveLt�9SAnimCurveS!�		DefaultD@�Q�<9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf��j%��	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL�s�9SAnimCurveS��		DefaultD ܥܼ��	KeyVerI�‘	KeyTimel�~�[�	
KeyValueFloatf�.��	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti�	AnimationCurveL�s�9SAnimCurveS�		DefaultD���<��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf�/&'w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

ޓ	KeyAttrRefCountiK�	AnimationCurveLps�9SAnimCurveSA�		DefaultD`��Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatfc0��ה	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveL�t�9SAnimCurveS��		DefaultD���?��	KeyVerI��	KeyTimel�~�[
�	
KeyValueFloatf5�<7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL�t�9SAnimCurveS�		DefaultD@��?�	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf?%?��	KeyAttrFlagsi1ї	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL`t�9SAnimCurveSa�		DefaultD`~�ʼy�	KeyVerI���	KeyTimel�~�[͘	
KeyValueFloatf��V���	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti˚	AnimationCurveL0t�9SAnimCurveS��		DefaultD���=ٙ	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatfM=(W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL�u�9SAnimCurveS!�		DefaultD@�9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf⸐���	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveLPu�9SAnimCurveS��		DefaultD >u
���	KeyVerI�œ	KeyTimel�~�[�	
KeyValueFloatf�S��	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti�	AnimationCurveL u�9SAnimCurveS�		DefaultD@�&���	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf�7A�w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

ޞ	KeyAttrRefCountiK�	AnimationCurveL�t�9SAnimCurveSA�		DefaultD�I��?Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatfN
->ן	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveL�z�9SAnimCurveS��		DefaultD ܥ����	KeyVerI��	KeyTimel�~�[
�	
KeyValueFloatf�.e�7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL o�9SAnimCurveS�		DefaultD ܥ�<�	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf�.e&��	KeyAttrFlagsi1Ѣ	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL�n�9SAnimCurveSa�		DefaultD��h��y�	KeyVerI���	KeyTimel�~�[ͣ	
KeyValueFloatf7Gӥ��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti˥	AnimationCurveL�n�9SAnimCurveS��		DefaultD�e��٤	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf-C��W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL�n�9SAnimCurveS!�		DefaultD�yҿ�9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatfϓ����	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL�o�9SAnimCurveS��		DefaultD��y@��	KeyVerI�§	KeyTimel�~�[�	
KeyValueFloatf�[@�	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti�	AnimationCurveL�o�9SAnimCurveS�		DefaultD`~۪���	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf��V�w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

ީ	KeyAttrRefCountiK�	AnimationCurveL�o�9SAnimCurveSA�		DefaultD e|�Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf)�+�ת	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveLPo�9SAnimCurveS��		DefaultD`��ݼ��	KeyVerI��	KeyTimel�~�[
�	
KeyValueFloatf;�7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL�p�9SAnimCurveS�		DefaultD���
��	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf},m���	KeyAttrFlagsi1ѭ	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveLpp�9SAnimCurveSa�		DefaultD���?y�	KeyVerI���	KeyTimel�~�[ͮ	
KeyValueFloatf���=��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti˰	AnimationCurveL@p�9SAnimCurveS��		DefaultD�!C�?ٯ	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf
�?W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveLp�9SAnimCurveS!�		DefaultD`���<9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf��&��	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL�u�9SAnimCurveS��		DefaultD��	���	KeyVerI�²	KeyTimel�~�[�	
KeyValueFloatfmN(��	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti�	AnimationCurveLp��9SAnimCurveS�		DefaultD���<��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf���'w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

޴	KeyAttrRefCountiK�	AnimationCurveL���9SAnimCurveSA�		DefaultD�.�Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�p!�׵	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveL���9SAnimCurveS��		DefaultD��߿��	KeyVerI��	KeyTimel�~�[
�	
KeyValueFloatfuH��7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL��9SAnimCurveS�		DefaultD@���?�	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf��?��	KeyAttrFlagsi1Ѹ	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL���9SAnimCurveSa�		DefaultD e|ռy�	KeyVerI���	KeyTimel�~�[͹	
KeyValueFloatf)㫦��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti˻	AnimationCurveL���9SAnimCurveS��		DefaultD ܥ��ٺ	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf�.�W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL��9SAnimCurveS!�		DefaultD`���9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf;�����	KeyAttrFlagsi1�	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL@��9SAnimCurveS��		DefaultD�~����	KeyVerI�½	KeyTimel�~�[�	
KeyValueFloatf�����	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD������	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf�$��w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

޿	KeyAttrRefCountiK�	AnimationCurveL ��9SAnimCurveSA�		DefaultD༯@Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�}%@��	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveLP��9SAnimCurveS��		DefaultD@�B����	KeyVerI���	KeyTimel�~�[
�	
KeyValueFloatfzҤ7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD ܥ���	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf�.套�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL���9SAnimCurveSa�		DefaultD�>��y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�a%���	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti��	AnimationCurveL���9SAnimCurveS��		DefaultD`�2����	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatfS�ѿW�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL��9SAnimCurveS!�		DefaultD`���9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf�l���	KeyAttrFlagsi1��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL@��9SAnimCurveS��		DefaultD��@��	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf?X@�	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti��	AnimationCurveLp��9SAnimCurveS��		DefaultD��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatfw�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountiK�	AnimationCurveL ��9SAnimCurveSA�		DefaultDY�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf��	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveLP��9SAnimCurveS��		DefaultD ���9��	KeyVerI���	KeyTimel�~�[
�	
KeyValueFloatfY-.7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL���9SAnimCurveS�		DefaultD@5^��	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf��"���	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL���9SAnimCurveSa�		DefaultD �r�y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf��C���	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti��	AnimationCurveL`��9SAnimCurveS��		DefaultD@��@��	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf�T@W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL���9SAnimCurveS!�		DefaultD e|��9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf)�+���	KeyAttrFlagsi1��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL���9SAnimCurveS��		DefaultD@��R8��	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�ז�	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti��	AnimationCurveL���9SAnimCurveS��		DefaultD ���9��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatfY-.w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountiK�	AnimationCurveL`��9SAnimCurveSA�		DefaultD��@Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�u@��	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveL0�9SAnimCurveS��		DefaultD@�)6@��	KeyVerI���	KeyTimel�~�[
�	
KeyValueFloatfJL�A7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL`�9SAnimCurveS�		DefaultD@
M���	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatfRhڿ��	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL��9SAnimCurveSa�		DefaultD e|�y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf)�+���	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti��	AnimationCurveL��9SAnimCurveS��		DefaultD������	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatfM=��W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveLp�9SAnimCurveS!�		DefaultD`�s=9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf���(��	KeyAttrFlagsi1��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL��9SAnimCurveS��		DefaultD��$@��	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�� A�	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti��	AnimationCurveL��9SAnimCurveS��		DefaultD0=��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatf�)w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountiK�	AnimationCurveL�9SAnimCurveSA�		DefaultD�<Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�%��	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveL��9SAnimCurveS��		DefaultD���ռ��	KeyVerI���	KeyTimel�~�[
�	
KeyValueFloatf�w��7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL��9SAnimCurveS�		DefaultD ܥ�<�	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf�.�&��	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL�9SAnimCurveSa�		DefaultD`*4!�y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatfS�	���	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti��	AnimationCurveL@�9SAnimCurveS��		DefaultD��g9@��	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatfM=�AW�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL���9SAnimCurveS!�		DefaultD0=9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf�)��	KeyAttrFlagsi1��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL@߱9SAnimCurveS��		DefaultD�<��	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf'�	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti��	AnimationCurveLp߱9SAnimCurveS��		DefaultD��硼��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatfM=�w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountiK�	AnimationCurveL�߱9SAnimCurveSA�		DefaultD����Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatfM=���	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveL�߱9SAnimCurveS��		DefaultD�s����	KeyVerI���	KeyTimel�~�[
�	
KeyValueFloatf��ȥ7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL�ޱ9SAnimCurveS�		DefaultD���8@�	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatf��A��	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL�ޱ9SAnimCurveSa�		DefaultDy�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti��	AnimationCurveL�ޱ9SAnimCurveS��		DefaultD����	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf��W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveL߱9SAnimCurveS!�		DefaultD ܥl�9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf�.e���	KeyAttrFlagsi1��	KeyAttrDataFloatf

�	KeyAttrRefCounti��	AnimationCurveL�ݱ9SAnimCurveS��		DefaultD ܥ����	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�.e��	KeyAttrFlagsi1Q�	KeyAttrDataFloatf

~�	KeyAttrRefCounti��	AnimationCurveL�ݱ9SAnimCurveS��		DefaultD )�<��	KeyVerI�"�	KeyTimel�~�[M�	
KeyValueFloatfI��&w�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountiK�	AnimationCurveL ޱ9SAnimCurveSA�		DefaultD �C@Y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf��@��	KeyAttrFlagsi1�	KeyAttrDataFloatf

>�	KeyAttrRefCounti��	AnimationCurveLPޱ9SAnimCurveS��		DefaultD�S
鿹�	KeyVerI���	KeyTimel�~�[
�	
KeyValueFloatf�RH�7�	KeyAttrFlagsi1q�	KeyAttrDataFloatf

��	KeyAttrRefCounti�	AnimationCurveL�ر9SAnimCurveS�		DefaultD@�	��	KeyVerI�B�	KeyTimel�~�[m�	
KeyValueFloatfrhN���	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCountik�	AnimationCurveL�ױ9SAnimCurveSa�		DefaultD��F�<y�	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf6�&��	KeyAttrFlagsi11�	KeyAttrDataFloatf

^�	KeyAttrRefCounti��	AnimationCurveL ر9SAnimCurveS��		DefaultD ܥ�<��	KeyVerI��	KeyTimel�~�[-�	
KeyValueFloatf�.e'W�	KeyAttrFlagsi1��	KeyAttrDataFloatf

��	KeyAttrRefCounti+�	AnimationCurveLPر9SAnimCurveS!�		DefaultD���9�	KeyVerI�b�	KeyTimel�~�[��	
KeyValueFloatf�? ���	KeyAttrFlagsi1��	KeyAttrDataFloatf

�	KeyAttrRefCounti�
AnimationCurveL�ر9SAnimCurveS��		DefaultD���@��	KeyVerI���	KeyTimel�~�[��	
KeyValueFloatf�'E@
KeyAttrFlagsi1Q
KeyAttrDataFloatf

~
KeyAttrRefCounti�
AnimationCurveL0ױ9SAnimCurveS�
	DefaultD�Ji��
KeyVerI�"
KeyTimel�~�[M

KeyValueFloatf�VJ�w
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCountiK
AnimationCurveL`ױ9SAnimCurveSA
	DefaultD��¿Y
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf|H��
KeyAttrFlagsi1
KeyAttrDataFloatf

>
KeyAttrRefCounti�
AnimationCurveL�ױ9SAnimCurveS�
	DefaultD�����
KeyVerI��
KeyTimel�~�[


KeyValueFloatf�M�7
KeyAttrFlagsi1q
KeyAttrDataFloatf

�
KeyAttrRefCounti
AnimationCurveL�ױ9SAnimCurveS
	DefaultD ܥ=
KeyVerI�B
KeyTimel�~�[m

KeyValueFloatf�.e(�
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCountik
AnimationCurveLpֱ9SAnimCurveSa
	DefaultD���<y
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf�x�&�
KeyAttrFlagsi11
KeyAttrDataFloatf

^
KeyAttrRefCounti�
AnimationCurveL�ֱ9SAnimCurveS�
	DefaultD@�s@�
KeyVerI�
KeyTimel�~�[-

KeyValueFloatf�@W
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti+

AnimationCurveL�ֱ9SAnimCurveS!	
	DefaultD���D�9	
KeyVerI�b	
KeyTimel�~�[�	

KeyValueFloatf��'��	
KeyAttrFlagsi1�	
KeyAttrDataFloatf



KeyAttrRefCounti�
AnimationCurveLױ9SAnimCurveS�

	DefaultD@���>�

KeyVerI��

KeyTimel�~�[�


KeyValueFloatf��5
KeyAttrFlagsi1Q
KeyAttrDataFloatf

~
KeyAttrRefCounti�
AnimationCurveLֱ9SAnimCurveS�
	DefaultD e|�<�
KeyVerI�"
KeyTimel�~�[M

KeyValueFloatf)�$w
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCountiK
AnimationCurveL`ڱ9SAnimCurveSA
	DefaultDY
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf�
KeyAttrFlagsi1
KeyAttrDataFloatf

>
KeyAttrRefCounti�
AnimationCurveL�ڱ9SAnimCurveS�
	DefaultD����
KeyVerI��
KeyTimel�~�[


KeyValueFloatfXX�7
KeyAttrFlagsi1q
KeyAttrDataFloatf

�
KeyAttrRefCounti
AnimationCurveL�ڱ9SAnimCurveS
	DefaultD��@
KeyVerI�B
KeyTimel�~�[m

KeyValueFloatf}��@�
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCountik
AnimationCurveL�ڱ9SAnimCurveSa
	DefaultD�P�׿y
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf�¿��
KeyAttrFlagsi11
KeyAttrDataFloatf

^
KeyAttrRefCounti�
AnimationCurveL�ٱ9SAnimCurveS�
	DefaultD EB��
KeyVerI�
KeyTimel�~�[-

KeyValueFloatf)��W
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti+
AnimationCurveL�ٱ9SAnimCurveS!
	DefaultD� �<9
KeyVerI�b
KeyTimel�~�[�

KeyValueFloatf�H%�
KeyAttrFlagsi1�
KeyAttrDataFloatf


KeyAttrRefCounti�
AnimationCurveLڱ9SAnimCurveS�
	DefaultD ܥ̼�
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf�.e�
KeyAttrFlagsi1Q
KeyAttrDataFloatf

~
KeyAttrRefCounti�
AnimationCurveL0ڱ9SAnimCurveS�
	DefaultD�#ڼ�
KeyVerI�"
KeyTimel�~�[M

KeyValueFloatf�Ѧw
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCountiK
AnimationCurveL�ر9SAnimCurveSA
	DefaultD A@Y
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf��@�
KeyAttrFlagsi1
KeyAttrDataFloatf

>
KeyAttrRefCounti�
AnimationCurveLٱ9SAnimCurveS�
	DefaultD`Va��
KeyVerI��
KeyTimel�~�[


KeyValueFloatf���7
KeyAttrFlagsi1q
KeyAttrDataFloatf

�
KeyAttrRefCounti
AnimationCurveL@ٱ9SAnimCurveS
	DefaultD�;�̿
KeyVerI�B
KeyTimel�~�[m

KeyValueFloatf��d��
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCountik
AnimationCurveLpٱ9SAnimCurveSa
	DefaultD e|�<y
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf)�%�
KeyAttrFlagsi11
KeyAttrDataFloatf

^
KeyAttrRefCounti�
AnimationCurveL
�9SAnimCurveS�
	DefaultD ܥ�<�
KeyVerI�
KeyTimel�~�[-

KeyValueFloatf�.�%W
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti+ 
AnimationCurveL�ܱ9SAnimCurveS!
	DefaultD`�x�<9
KeyVerI�b
KeyTimel�~�[�

KeyValueFloatf�ƫ'�
KeyAttrFlagsi1�
KeyAttrDataFloatf

 
KeyAttrRefCounti�!
AnimationCurveLݱ9SAnimCurveS� 
	DefaultD��@� 
KeyVerI�� 
KeyTimel�~�[� 

KeyValueFloatf�XE@!
KeyAttrFlagsi1Q!
KeyAttrDataFloatf

~!
KeyAttrRefCounti�"
AnimationCurveL0ݱ9SAnimCurveS�!
	DefaultDЎ@>�!
KeyVerI�""
KeyTimel�~�[M"

KeyValueFloatf�v2w"
KeyAttrFlagsi1�"
KeyAttrDataFloatf

�"
KeyAttrRefCountiK$
AnimationCurveL`ݱ9SAnimCurveSA#
	DefaultD@��Y#
KeyVerI��#
KeyTimel�~�[�#

KeyValueFloatfr^ݵ�#
KeyAttrFlagsi1$
KeyAttrDataFloatf

>$
KeyAttrRefCounti�%
AnimationCurveLܱ9SAnimCurveS�$
	DefaultD ܥ�<�$
KeyVerI��$
KeyTimel�~�[
%

KeyValueFloatf�.e&7%
KeyAttrFlagsi1q%
KeyAttrDataFloatf

�%
KeyAttrRefCounti'
AnimationCurveL@ܱ9SAnimCurveS&
	DefaultD����&
KeyVerI�B&
KeyTimel�~�[m&

KeyValueFloatfM=���&
KeyAttrFlagsi1�&
KeyAttrDataFloatf

�&
KeyAttrRefCountik(
AnimationCurveLpܱ9SAnimCurveSa'
	DefaultD���y'
KeyVerI��'
KeyTimel�~�[�'

KeyValueFloatf�G4��'
KeyAttrFlagsi11(
KeyAttrDataFloatf

^(
KeyAttrRefCounti�)
AnimationCurveL�ܱ9SAnimCurveS�(
	DefaultD�h@�(
KeyVerI�)
KeyTimel�~�[-)

KeyValueFloatf�F�@W)
KeyAttrFlagsi1�)
KeyAttrDataFloatf

�)
KeyAttrRefCounti++
AnimationCurveLP۱9SAnimCurveS!*
	DefaultD`5!ȿ9*
KeyVerI�b*
KeyTimel�~�[�*

KeyValueFloatf�	A��*
KeyAttrFlagsi1�*
KeyAttrDataFloatf

+
KeyAttrRefCounti�,
AnimationCurveL�۱9SAnimCurveS�+
	DefaultD�9�?�+
KeyVerI��+
KeyTimel�~�[�+

KeyValueFloatf�΁?,
KeyAttrFlagsi1Q,
KeyAttrDataFloatf

~,
KeyAttrRefCounti�-
AnimationCurveL�۱9SAnimCurveS�,
	DefaultD`~ۚ��,
KeyVerI�"-
KeyTimel�~�[M-

KeyValueFloatf��֤w-
KeyAttrFlagsi1�-
KeyAttrDataFloatf

�-
KeyAttrRefCountiK/
AnimationCurveL�۱9SAnimCurveSA.
	DefaultD����Y.
KeyVerI��.
KeyTimel�~�[�.

KeyValueFloatfM=���.
KeyAttrFlagsi1/
KeyAttrDataFloatf

>/
KeyAttrRefCounti�0
AnimationCurveL@ֱ9SAnimCurveS�/
	DefaultD�n�<�/
KeyVerI��/
KeyTimel�~�[
0

KeyValueFloatfhw#&70
KeyAttrFlagsi1q0
KeyAttrDataFloatf

�0
KeyAttrRefCounti2
AnimationCurveL �9SAnimCurveS1
	DefaultD Q�@1
KeyVerI�B1
KeyTimel�~�[m1

KeyValueFloatf���@�1
KeyAttrFlagsi1�1
KeyAttrDataFloatf

�1
KeyAttrRefCountik3
AnimationCurveLP�9SAnimCurveSa2
	DefaultD�,s??y2
KeyVerI��2
KeyTimel�~�[�2

KeyValueFloatfg��9�2
KeyAttrFlagsi113
KeyAttrDataFloatf

^3
KeyAttrRefCounti�4
AnimationCurveL��9SAnimCurveS�3
	DefaultD�ǥ��3
KeyVerI�4
KeyTimel�~�[-4

KeyValueFloatfp>.�W4
KeyAttrFlagsi1�4
KeyAttrDataFloatf

�4
KeyAttrRefCounti+6
AnimationCurveL��9SAnimCurveS!5
	DefaultD e|��95
KeyVerI�b5
KeyTimel�~�[�5

KeyValueFloatf)�+��5
KeyAttrFlagsi1�5
KeyAttrDataFloatf

6
KeyAttrRefCounti�7
AnimationCurveL`�9SAnimCurveS�6
	DefaultD ܥ�<�6
KeyVerI��6
KeyTimel�~�[�6

KeyValueFloatf�.e'7
KeyAttrFlagsi1Q7
KeyAttrDataFloatf

~7
KeyAttrRefCounti�8
AnimationCurveL��9SAnimCurveS�7
	DefaultD��Q���7
KeyVerI�"8
KeyTimel�~�[M8

KeyValueFloatfT�ڧw8
KeyAttrFlagsi1�8
KeyAttrDataFloatf

�8
KeyAttrRefCountiK:
AnimationCurveL��9SAnimCurveSA9
	DefaultD �+@Y9
KeyVerI��9
KeyTimel�~�[�9

KeyValueFloatf�_Y@�9
KeyAttrFlagsi1:
KeyAttrDataFloatf

>:
KeyAttrRefCounti�;
AnimationCurveL��9SAnimCurveS�:
	DefaultD��v���:
KeyVerI��:
KeyTimel�~�[
;

KeyValueFloatfķ��7;
KeyAttrFlagsi1q;
KeyAttrDataFloatf

�;
KeyAttrRefCounti=
AnimationCurveL��9SAnimCurveS<
	DefaultD��5�><
KeyVerI�B<
KeyTimel�~�[m<

KeyValueFloatf���4�<
KeyAttrFlagsi1�<
KeyAttrDataFloatf

�<
KeyAttrRefCountik>
AnimationCurveL��9SAnimCurveSa=
	DefaultD� �<y=
KeyVerI��=
KeyTimel�~�[�=

KeyValueFloatf�H%�=
KeyAttrFlagsi11>
KeyAttrDataFloatf

^>
KeyAttrRefCounti�?
AnimationCurveL�9SAnimCurveS�>
	DefaultD ܥ�<�>
KeyVerI�?
KeyTimel�~�[-?

KeyValueFloatf�.e%W?
KeyAttrFlagsi1�?
KeyAttrDataFloatf

�?
KeyAttrRefCounti+A
AnimationCurveL0�9SAnimCurveS!@
	DefaultD@����9@
KeyVerI�b@
KeyTimel�~�[�@

KeyValueFloatfjޤ�@
KeyAttrFlagsi1�@
KeyAttrDataFloatf

A
KeyAttrRefCounti�B
AnimationCurveL�ݱ9SAnimCurveS�A
	DefaultD��@�A
KeyVerI��A
KeyTimel�~�[�A

KeyValueFloatfg�@B
KeyAttrFlagsi1QB
KeyAttrDataFloatf

~B
KeyAttrRefCounti�C
AnimationCurveL�>�9SAnimCurveS�B
	DefaultD����B
KeyVerI�"C
KeyTimel�~�[MC

KeyValueFloatfn�H�wC
KeyAttrFlagsi1�C
KeyAttrDataFloatf

�C
KeyAttrRefCountiKE
AnimationCurveL�>�9SAnimCurveSAD
	DefaultD�B
@YD
KeyVerI��D
KeyTimel�~�[�D

KeyValueFloatf�P@�D
KeyAttrFlagsi1E
KeyAttrDataFloatf

>E
KeyAttrRefCounti�F
AnimationCurveL�>�9SAnimCurveS�E
	DefaultD�K���E
KeyVerI��E
KeyTimel�~�[
F

KeyValueFloatf^ꀥ7F
KeyAttrFlagsi1qF
KeyAttrDataFloatf

�F
KeyAttrRefCountiH
AnimationCurveL`>�9SAnimCurveSG
	DefaultDG
KeyVerI�BG
KeyTimel�~�[mG

KeyValueFloatf�G
KeyAttrFlagsi1�G
KeyAttrDataFloatf

�G
KeyAttrRefCountikI
AnimationCurveL�?�9SAnimCurveSaH
	DefaultD��ּyH
KeyVerI��H
KeyTimel�~�[�H

KeyValueFloatfx����H
KeyAttrFlagsi11I
KeyAttrDataFloatf

^I
KeyAttrRefCounti�J
AnimationCurveL�?�9SAnimCurveS�I
	DefaultD�{�@�I
KeyVerI�J
KeyTimel�~�[-J

KeyValueFloatfݳ~@WJ
KeyAttrFlagsi1�J
KeyAttrDataFloatf

�J
KeyAttrRefCounti+L
AnimationCurveLP?�9SAnimCurveS!K
	DefaultD@�ft?9K
KeyVerI�bK
KeyTimel�~�[�K

KeyValueFloatfR6�;�K
KeyAttrFlagsi1�K
KeyAttrDataFloatf

L
KeyAttrRefCounti�M
AnimationCurveL ?�9SAnimCurveS�L
	DefaultD�Z�?�L
KeyVerI��L
KeyTimel�~�[�L

KeyValueFloatfx��=M
KeyAttrFlagsi1QM
KeyAttrDataFloatf

~M
KeyAttrRefCounti�N
AnimationCurveLp@�9SAnimCurveS�M
	DefaultD ����M
KeyVerI�"N
KeyTimel�~�[MN

KeyValueFloatfI�D�wN
KeyAttrFlagsi1�N
KeyAttrDataFloatf

�N
KeyAttrRefCountiKP
AnimationCurveL@@�9SAnimCurveSAO
	DefaultD ܥ�<YO
KeyVerI��O
KeyTimel�~�[�O

KeyValueFloatf�.�%�O
KeyAttrFlagsi1P
KeyAttrDataFloatf

>P
KeyAttrRefCounti�Q
AnimationCurveL@�9SAnimCurveS�P
	DefaultD����P
KeyVerI��P
KeyTimel�~�[
Q

KeyValueFloatf��7Q
KeyAttrFlagsi1qQ
KeyAttrDataFloatf

�Q
KeyAttrRefCountiS
AnimationCurveL�?�9SAnimCurveSR
	DefaultD��_@R
KeyVerI�BR
KeyTimel�~�[mR

KeyValueFloatf��2@�R
KeyAttrFlagsi1�R
KeyAttrDataFloatf

�R
KeyAttrRefCountikT
AnimationCurveL�@�9SAnimCurveSaS
	DefaultD���yS
KeyVerI��S
KeyTimel�~�[�S

KeyValueFloatf@�(��S
KeyAttrFlagsi11T
KeyAttrDataFloatf

^T
KeyAttrRefCounti�U
AnimationCurveL�<�9SAnimCurveS�T
	DefaultD�?�վ�T
KeyVerI�U
KeyTimel�~�[-U

KeyValueFloatf����WU
KeyAttrFlagsi1�U
KeyAttrDataFloatf

�U
KeyAttrRefCounti+W
AnimationCurveLP<�9SAnimCurveS!V
	DefaultD e|ż9V
KeyVerI�bV
KeyTimel�~�[�V

KeyValueFloatf)�+��V
KeyAttrFlagsi1�V
KeyAttrDataFloatf

W
KeyAttrRefCounti�X
AnimationCurveL <�9SAnimCurveS�W
	DefaultD ܥ�<�W
KeyVerI��W
KeyTimel�~�[�W

KeyValueFloatf�.e'X
KeyAttrFlagsi1QX
KeyAttrDataFloatf

~X
KeyAttrRefCounti�Y
AnimationCurveL�;�9SAnimCurveS�X
	DefaultD@6��<�X
KeyVerI�"Y
KeyTimel�~�[MY

KeyValueFloatf���&wY
KeyAttrFlagsi1�Y
KeyAttrDataFloatf

�Y
KeyAttrRefCountiK[
AnimationCurveL@=�9SAnimCurveSAZ
	DefaultD���?YZ
KeyVerI��Z
KeyTimel�~�[�Z

KeyValueFloatf�(�?�Z
KeyAttrFlagsi1[
KeyAttrDataFloatf

>[
KeyAttrRefCounti�\
AnimationCurveL=�9SAnimCurveS�[
	DefaultD���[
KeyVerI��[
KeyTimel�~�[
\

KeyValueFloatf�o��7\
KeyAttrFlagsi1q\
KeyAttrDataFloatf

�\
KeyAttrRefCounti^
AnimationCurveL�<�9SAnimCurveS]
	DefaultD��l@]
KeyVerI�B]
KeyTimel�~�[m]

KeyValueFloatfg#@�]
KeyAttrFlagsi1�]
KeyAttrDataFloatf

�]
KeyAttrRefCountik_
AnimationCurveL�<�9SAnimCurveSa^
	DefaultD�e
z<y^
KeyVerI��^
KeyTimel�~�[�^

KeyValueFloatf/S�#�^
KeyAttrFlagsi11_
KeyAttrDataFloatf

^_
KeyAttrRefCounti�`
AnimationCurveL>�9SAnimCurveS�_
	DefaultD ܥ���_
KeyVerI�`
KeyTimel�~�[-`

KeyValueFloatf�.e�W`
KeyAttrFlagsi1�`
KeyAttrDataFloatf

�`
KeyAttrRefCounti+b
AnimationCurveL�=�9SAnimCurveS!a
	DefaultD����9a
KeyVerI�ba
KeyTimel�~�[�a

KeyValueFloatfM=��a
KeyAttrFlagsi1�a
KeyAttrDataFloatf

b
KeyAttrRefCounti�c
AnimationCurveL�=�9SAnimCurveS�b
	DefaultD`�2�?�b
KeyVerI��b
KeyTimel�~�[�b

KeyValueFloatfS��?c
KeyAttrFlagsi1Qc
KeyAttrDataFloatf

~c
KeyAttrRefCounti�d
AnimationCurveLp=�9SAnimCurveS�c
	DefaultD`����c
KeyVerI�"d
KeyTimel�~�[Md

KeyValueFloatf�l�wd
KeyAttrFlagsi1�d
KeyAttrDataFloatf

�d
KeyAttrRefCountiKf
AnimationCurveLD�9SAnimCurveSAe
	DefaultD`
�@Ye
KeyVerI��e
KeyTimel�~�[�e

KeyValueFloatfSX@�e
KeyAttrFlagsi1f
KeyAttrDataFloatf

>f
KeyAttrRefCounti�g
AnimationCurveL:�9SAnimCurveS�f
	DefaultD�f
KeyVerI��f
KeyTimel�~�[
g

KeyValueFloatf7g
KeyAttrFlagsi1qg
KeyAttrDataFloatf

�g
KeyAttrRefCountii
AnimationCurveL�9�9SAnimCurveSh
	DefaultDh
KeyVerI�Bh
KeyTimel�~�[mh

KeyValueFloatf�h
KeyAttrFlagsi1�h
KeyAttrDataFloatf

�h
KeyAttrRefCountikj
AnimationCurveL�9�9SAnimCurveSai
	DefaultDTn��yi
KeyVerI��i
KeyTimel�~�[�i

KeyValueFloatf�r���i
KeyAttrFlagsi11j
KeyAttrDataFloatf

^j
KeyAttrRefCounti�k
AnimationCurveL�9�9SAnimCurveS�j
	DefaultD@5^@�j
KeyVerI�k
KeyTimel�~�[-k

KeyValueFloatf��"@Wk
KeyAttrFlagsi1�k
KeyAttrDataFloatf

�k
KeyAttrRefCounti+m
AnimationCurveL�:�9SAnimCurveS!l
	DefaultD �r�9l
KeyVerI�bl
KeyTimel�~�[�l

KeyValueFloatf��C��l
KeyAttrFlagsi1�l
KeyAttrDataFloatf

m
KeyAttrRefCounti�n
AnimationCurveL�:�9SAnimCurveS�m
	DefaultD@��@�m
KeyVerI��m
KeyTimel�~�[�m

KeyValueFloatf�T@n
KeyAttrFlagsi1Qn
KeyAttrDataFloatf

~n
KeyAttrRefCounti�o
AnimationCurveLp:�9SAnimCurveS�n
	DefaultD��L�>�n
KeyVerI�"o
KeyTimel�~�[Mo

KeyValueFloatf�fb6wo
KeyAttrFlagsi1�o
KeyAttrDataFloatf

�o
KeyAttrRefCountiKq
AnimationCurveL@:�9SAnimCurveSAp
	DefaultDTn�Yp
KeyVerI��p
KeyTimel�~�[�p

KeyValueFloatfP�}��p
KeyAttrFlagsi1q
KeyAttrDataFloatf

>q
KeyAttrRefCounti�r
AnimationCurveL�;�9SAnimCurveS�q
	DefaultDTn���q
KeyVerI��q
KeyTimel�~�[
r

KeyValueFloatf�r��7r
KeyAttrFlagsi1qr
KeyAttrDataFloatf

�r
KeyAttrRefCountit
AnimationCurveL`;�9SAnimCurveSs
	DefaultD@.�s
KeyVerI�Bs
KeyTimel�~�[ms

KeyValueFloatfBp���s
KeyAttrFlagsi1�s
KeyAttrDataFloatf

�s
KeyAttrRefCountiku
AnimationCurveL0;�9SAnimCurveSat
	DefaultD �C�yt
KeyVerI��t
KeyTimel�~�[�t

KeyValueFloatf����t
KeyAttrFlagsi11u
KeyAttrDataFloatf

^u
KeyAttrRefCounti�v
AnimationCurveL;�9SAnimCurveS�u
	DefaultD�u
KeyVerI�v
KeyTimel�~�[-v

KeyValueFloatfWv
KeyAttrFlagsi1�v
KeyAttrDataFloatf

�v
KeyAttrRefCounti+x
AnimationCurveL�@�9SAnimCurveS!w
	DefaultD9w
KeyVerI�bw
KeyTimel�~�[�w

KeyValueFloatf�w
KeyAttrFlagsi1�w
KeyAttrDataFloatf

x
KeyAttrRefCounti�y
AnimationCurveL@R�9SAnimCurveS�x
	DefaultD�x
KeyVerI��x
KeyTimel�~�[�x

KeyValueFloatfy
KeyAttrFlagsi1Qy
KeyAttrDataFloatf

~y
KeyAttrRefCounti�z
AnimationCurveLR�9SAnimCurveS�y
	DefaultD�y
KeyVerI�"z
KeyTimel�~�[Mz

KeyValueFloatfwz
KeyAttrFlagsi1�z
KeyAttrDataFloatf

�z
KeyAttrRefCountiK|
AnimationCurveL�Q�9SAnimCurveSA{
	DefaultD`�p�Y{
KeyVerI��{
KeyTimel�~�[�{

KeyValueFloatf���{
KeyAttrFlagsi1|
KeyAttrDataFloatf

>|
KeyAttrRefCounti�}
AnimationCurveL�Q�9SAnimCurveS�|
	DefaultD@�tD��|
KeyVerI��|
KeyTimel�~�[
}

KeyValueFloatf�#�7}
KeyAttrFlagsi1q}
KeyAttrDataFloatf

�}
KeyAttrRefCounti
AnimationCurveLS�9SAnimCurveS~
	DefaultD@�e��~
KeyVerI�B~
KeyTimel�~�[m~

KeyValueFloatf�-���~
KeyAttrFlagsi1�~
KeyAttrDataFloatf

�~
KeyAttrRefCountik�
AnimationCurveL�R�9SAnimCurveSa
	DefaultDy
KeyVerI��
KeyTimel�~�[�

KeyValueFloatf�
KeyAttrFlagsi11�
KeyAttrDataFloatf

^�
KeyAttrRefCountiˁ
AnimationCurveL�R�9SAnimCurveS��
	DefaultDـ
KeyVerI��
KeyTimel�~�[-�

KeyValueFloatfW�
KeyAttrFlagsi1��
KeyAttrDataFloatf

��
KeyAttrRefCounti+�
AnimationCurveLpR�9SAnimCurveS!�
	DefaultD9�
KeyVerI�b�
KeyTimel�~�[��

KeyValueFloatf��
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti��
AnimationCurveL�S�9SAnimCurveS��
	DefaultD`V}࿙�
KeyVerI�ƒ
KeyTimel�~�[�

KeyValueFloatf����
KeyAttrFlagsi1Q�
KeyAttrDataFloatf

~�
KeyAttrRefCounti�
AnimationCurveL�S�9SAnimCurveS�
	DefaultD@e(E���
KeyVerI�"�
KeyTimel�~�[M�

KeyValueFloatf*C)�w�
KeyAttrFlagsi1��
KeyAttrDataFloatf

ޅ
KeyAttrRefCountiK�
AnimationCurveL`S�9SAnimCurveSA�
	DefaultD |�Y�
KeyVerI���
KeyTimel�~�[��

KeyValueFloatf��0�׆
KeyAttrFlagsi1�
KeyAttrDataFloatf

>�
KeyAttrRefCounti��
AnimationCurveL0S�9SAnimCurveS��
	DefaultD��
KeyVerI��
KeyTimel�~�[
�

KeyValueFloatf7�
KeyAttrFlagsi1q�
KeyAttrDataFloatf

��
KeyAttrRefCounti�
AnimationCurveL T�9SAnimCurveS�
	DefaultD�
KeyVerI�B�
KeyTimel�~�[m�

KeyValueFloatf��
KeyAttrFlagsi1щ
KeyAttrDataFloatf

��
KeyAttrRefCountik�
AnimationCurveL�O�9SAnimCurveSa�
	DefaultDy�
KeyVerI���
KeyTimel�~�[͊

KeyValueFloatf��
KeyAttrFlagsi11�
KeyAttrDataFloatf

^�
KeyAttrRefCountiˌ
AnimationCurveL�O�9SAnimCurveS��
	DefaultD�Y��ً
KeyVerI��
KeyTimel�~�[-�

KeyValueFloatfΪ?�W�
KeyAttrFlagsi1��
KeyAttrDataFloatf

��
KeyAttrRefCounti+�
AnimationCurveLpO�9SAnimCurveS!�
	DefaultD�TD�9�
KeyVerI�b�
KeyTimel�~�[��

KeyValueFloatf�"����
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti��
AnimationCurveL@O�9SAnimCurveS��
	DefaultD`�-@��
KeyVerI�Ž
KeyTimel�~�[�

KeyValueFloatf�hA�
KeyAttrFlagsi1Q�
KeyAttrDataFloatf

~�
KeyAttrRefCounti�
AnimationCurveL�P�9SAnimCurveS�
	DefaultD��
KeyVerI�"�
KeyTimel�~�[M�

KeyValueFloatfw�
KeyAttrFlagsi1��
KeyAttrDataFloatf

ސ
KeyAttrRefCountiK�
AnimationCurveL`P�9SAnimCurveSA�
	DefaultDY�
KeyVerI���
KeyTimel�~�[��

KeyValueFloatfב
KeyAttrFlagsi1�
KeyAttrDataFloatf

>�
KeyAttrRefCounti��
AnimationCurveL0P�9SAnimCurveS��
	DefaultD��
KeyVerI��
KeyTimel�~�[
�

KeyValueFloatf7�
KeyAttrFlagsi1q�
KeyAttrDataFloatf

��
KeyAttrRefCounti�
AnimationCurveLP�9SAnimCurveS�
	DefaultD`.@�
KeyVerI�B�
KeyTimel�~�[m�

KeyValueFloatf;p�@��
KeyAttrFlagsi1є
KeyAttrDataFloatf

��
KeyAttrRefCountik�
AnimationCurveLPQ�9SAnimCurveSa�
	DefaultD��C�y�
KeyVerI���
KeyTimel�~�[͕

KeyValueFloatf�����
KeyAttrFlagsi11�
KeyAttrDataFloatf

^�
KeyAttrRefCounti˗
AnimationCurveL Q�9SAnimCurveS��
	DefaultDٖ
KeyVerI��
KeyTimel�~�[-�

KeyValueFloatfW�
KeyAttrFlagsi1��
KeyAttrDataFloatf

��
KeyAttrRefCounti+�
AnimationCurveL�P�9SAnimCurveS!�
	DefaultD9�
KeyVerI�b�
KeyTimel�~�[��

KeyValueFloatf��
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti��
AnimationCurveL�P�9SAnimCurveS��
	DefaultD��
KeyVerI�™
KeyTimel�~�[�

KeyValueFloatf�
KeyAttrFlagsi1Q�
KeyAttrDataFloatf

~�
KeyAttrRefCounti�
AnimationCurveLPW�9SAnimCurveS�
	DefaultD��
KeyVerI�"�
KeyTimel�~�[M�

KeyValueFloatfw�
KeyAttrFlagsi1��
KeyAttrDataFloatf

ޛ
KeyAttrRefCountiK�
AnimationCurveL`M�9SAnimCurveSA�
	DefaultD�p@Y�
KeyVerI���
KeyTimel�~�[��

KeyValueFloatf��@ל
KeyAttrFlagsi1�
KeyAttrDataFloatf

>�
KeyAttrRefCounti��
AnimationCurveL0M�9SAnimCurveS��
	DefaultD �tD���
KeyVerI��
KeyTimel�~�[
�

KeyValueFloatf�#�7�
KeyAttrFlagsi1q�
KeyAttrDataFloatf

��
KeyAttrRefCounti�
AnimationCurveLM�9SAnimCurveS�
	DefaultD@�e���
KeyVerI�B�
KeyTimel�~�[m�

KeyValueFloatf�-����
KeyAttrFlagsi1џ
KeyAttrDataFloatf

��
KeyAttrRefCountik�
AnimationCurveL�L�9SAnimCurveSa�
	DefaultDy�
KeyVerI���
KeyTimel�~�[͠

KeyValueFloatf��
KeyAttrFlagsi11�
KeyAttrDataFloatf

^�
KeyAttrRefCountiˢ
AnimationCurveL N�9SAnimCurveS��
	DefaultD١
KeyVerI��
KeyTimel�~�[-�

KeyValueFloatfW�
KeyAttrFlagsi1��
KeyAttrDataFloatf

��
KeyAttrRefCounti+�
AnimationCurveL�M�9SAnimCurveS!�
	DefaultD9�
KeyVerI�b�
KeyTimel�~�[��

KeyValueFloatf��
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti��
AnimationCurveL�M�9SAnimCurveS��
	DefaultD`V}�?��
KeyVerI�¤
KeyTimel�~�[�

KeyValueFloatf��?�
KeyAttrFlagsi1Q�
KeyAttrDataFloatf

~�
KeyAttrRefCounti�
AnimationCurveL�M�9SAnimCurveS�
	DefaultD@e(E���
KeyVerI�"�
KeyTimel�~�[M�

KeyValueFloatf*C)�w�
KeyAttrFlagsi1��
KeyAttrDataFloatf

ަ
KeyAttrRefCountiK�
AnimationCurveL�N�9SAnimCurveSA�
	DefaultD |�Y�
KeyVerI���
KeyTimel�~�[��

KeyValueFloatf��0�ק
KeyAttrFlagsi1�
KeyAttrDataFloatf

>�
KeyAttrRefCounti��
AnimationCurveL�N�9SAnimCurveS��
	DefaultD��
KeyVerI��
KeyTimel�~�[
�

KeyValueFloatf7�
KeyAttrFlagsi1q�
KeyAttrDataFloatf

��
KeyAttrRefCounti�
AnimationCurveL�N�9SAnimCurveS�
	DefaultD�
KeyVerI�B�
KeyTimel�~�[m�

KeyValueFloatf��
KeyAttrFlagsi1Ѫ
KeyAttrDataFloatf

��
KeyAttrRefCountik�
AnimationCurveLPN�9SAnimCurveSa�
	DefaultDy�
KeyVerI���
KeyTimel�~�[ͫ

KeyValueFloatf��
KeyAttrFlagsi11�
KeyAttrDataFloatf

^�
KeyAttrRefCounti˭
AnimationCurveL�S�9SAnimCurveS��
	DefaultD�Y��?٬
KeyVerI��
KeyTimel�~�[-�

KeyValueFloatfΪ??W�
KeyAttrFlagsi1��
KeyAttrDataFloatf

��
KeyAttrRefCounti+�
AnimationCurveL�+�9SAnimCurveS!�
	DefaultD�TD�9�
KeyVerI�b�
KeyTimel�~�[��

KeyValueFloatf�"����
KeyAttrFlagsi1�
KeyAttrDataFloatf

�
KeyAttrRefCounti��
AnimationCurveLp+�9SAnimCurveS��
	DefaultD��-@��
KeyVerI�¯
KeyTimel�~�[�

KeyValueFloatf��hA�
KeyAttrFlagsi1Q�
KeyAttrDataFloatf

~�
KeyAttrRefCounti�
AnimationCurveL@+�9SAnimCurveS�
	DefaultD��
KeyVerI�"�
KeyTimel�~�[M�

KeyValueFloatfw�
KeyAttrFlagsi1��
KeyAttrDataFloatf

ޱ
KeyAttrRefCountiK�
AnimationCurveL+�9SAnimCurveSA�
	DefaultDY�
KeyVerI���
KeyTimel�~�[��

KeyValueFloatfײ
KeyAttrFlagsi1�
KeyAttrDataFloatf

>�
KeyAttrRefCounti��
AnimationCurveL`,�9SAnimCurveS��
	DefaultD��
KeyVerI��
KeyTimel�~�[
�

KeyValueFloatf7�
KeyAttrFlagsi1q�
KeyAttrDataFloatf

��
KeyAttrRefCountiֶ
#MotionBuilder_SystemL8�:SKTimeWarpManagerSɶ
Properties70E�
/PSMoBuTypeNameSKStringSSSBox��
/PSMoBuSubTypeNameSKStringSSSҵ
BPSMoBuObjectFullNameSKStringSSSKTimeWarpManagerE�
.PSMoBuAttrBlindDataSBlobSSI8�

BinaryDataRp��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
/MotionBuilder_GenericL�X�:SFaceTime HD Camera (Display)S��
Properties70�
1PSMoBuTypeNameSKStringSSSVideo��
3PSMoBuSubTypeNameSKStringSSSLive#�
UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Videoθ
�PS
RecordPathScharptrSSSsC:\Users\bOb\Documents/_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1-FaceTime HD Camera (Display)-VideoRecording.avi��
#PSOnlineSboolSSI6�
)PSResolutionFRSenumSSIm�
)PSRecordToFileSboolSSI��
(PSRecordAudioSboolSSIع
'PS
CompressorSenumSSI�
.PSMoBuAttrBlindDataSBlobSSI��
�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRpy�
0MotionBuilder_GenericLh>�:SFaceTime HD Camera (Built-in)Sl�
Properties70P�
1PSMoBuTypeNameSKStringSSSVideo��
3PSMoBuSubTypeNameSKStringSSSLive��
VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video��
�PS
RecordPathScharptrSSStC:\Users\bOb\Documents/_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1-FaceTime HD Camera (Built-in)-VideoRecording.aviҽ
#PSOnlineSboolSSI	�
)PSResolutionFRSenumSSI@�
)PSRecordToFileSboolSSIv�
(PSRecordAudioSboolSSI��
'PS
CompressorSenumSSI�
.PSMoBuAttrBlindDataSBlobSSI�ۿ
�
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI_�
2PSMoBuRelationBlindDataSBlobSSIR�

BinaryDataRp��
!MotionBuilder_GenericL��:SVideo Output 1S��
Properties70�
1PSMoBuTypeNameSKStringSSSVideoW�
5PSMoBuSubTypeNameSKStringSSSOutput��
GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video��
%PSDrawModeSenumSSIm�
.PSMoBuAttrBlindDataSBlobSSI)`�
.
BinaryDataR)p	UseMipMapI��
2PSMoBuRelationBlindDataSBlobSSI��

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

BinaryDataRpT�
!MotionBuilder_SystemL0L�:SKSerialManagerSG�
Properties70s�
:PSMoBuTypeNameSKStringSSSKSerialManager��
/PSMoBuSubTypeNameSKStringSSS��
@PSMoBuObjectFullNameSKStringSSSKSerialManager��
.PSMoBuAttrBlindDataSBlobSSI`��
e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI:�
2PSMoBuRelationBlindDataSBlobSSI-�

BinaryDataRp��
#MotionBuilder_SystemLp_�:SKCharacterHelperS��
Properties70��
0PSMoBuTypeNameSKStringSSSTool5�
8PSMoBuSubTypeNameSKStringSSS	Character��
BPSMoBuObjectFullNameSKStringSSSKCharacterHelper��
.PSMoBuAttrBlindDataSBlobSSI��

BinaryDataRp��
2PSMoBuRelationBlindDataSBlobSSID��
I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEIM�
MotionBuilder_SystemL���:SKNLEManagerS@�
Properties70\�
7PSMoBuTypeNameSKStringSSSKNLEManager��
/PSMoBuSubTypeNameSKStringSSS��
=PSMoBuObjectFullNameSKStringSSSKNLEManager��
.PSMoBuAttrBlindDataSBlobSSIs��
x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��53�
2PSMoBuRelationBlindDataSBlobSSI&�

BinaryDataRp��
MotionBuilder_SystemLp5�:SConstraintsS��
Properties70��
2PSMoBuTypeNameSKStringSSSFolder*�
7PSMoBuSubTypeNameSKStringSSSCategory}�
EPSMoBuObjectFullNameSKStringSSSConstraintsFolder�
.PSMoBuAttrBlindDataSBlobSSI5
�
:
BinaryDataR5p(
FolderTypeSConstraints��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp��
 MotionBuilder_SystemL�-�:S
KAudioManagerS��
Properties70I�
9PSMoBuTypeNameSKStringSSS
KAudioManager��
/PSMoBuSubTypeNameSKStringSSS��
?PSMoBuObjectFullNameSKStringSSS
KAudioManagerL�
.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�		LiveDelayD��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp@�
(MotionBuilder_SystemLHb�:SKMotionTriggerManagerS3�
Properties70��
APSMoBuTypeNameSKStringSSSKMotionTriggerManager��
/PSMoBuSubTypeNameSKStringSSS �
GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager��
.PSMoBuAttrBlindDataSBlobSSI*��
/
BinaryDataR*p
KEEPACTIVEI&�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRp��
MotionBuilder_SystemLH*�:S
Story rootS��
Properties70��
5PSMoBuTypeNameSKStringSSS	TimelineX�
/PSMoBuSubTypeNameSKStringSSSk�
FPSMoBuObjectFullNameSKStringSSSStory rootTimeline��
"PSMutedSboolSSI��
#PSSoloedSboolSSI�
.PSRecordClipPathScharptrSSS6�
 PSTracksSobjectSSg�
#PS	TimelinesSobjectSS��
2PSQuaternionInterpolateSboolSSI��
JPSRotationOffsetSColorRGBSColorSDDDV�
IPS
RotationPivotSColorRGBSColorSDDD��
IPS
ScalingOffsetSColorRGBSColorSDDD�
HPSScalingPivotSColorRGBSColorSDDD?�
.PSTranslationActiveSboolSSI��
JPSTranslationMinSColorRGBSColorSDDD��
JPSTranslationMaxSColorRGBSColorSDDD)�
,PSTranslationMinXSboolSSIc�
,PSTranslationMinYSboolSSI��
,PSTranslationMinZSboolSSI��
,PSTranslationMaxXSboolSSI�
,PSTranslationMaxYSboolSSIK�
,PSTranslationMaxZSboolSSI��
*PS
RotationOrderSenumSSI��
6PSRotationSpaceForLimitOnlySboolSSI�
;PSRotationStiffnessXSdoubleSNumberSDY�
;PSRotationStiffnessYSdoubleSNumberSD��
;PSRotationStiffnessZSdoubleSNumberSD��
0PSAxisLenSdoubleSNumberSD$@5�
GPSPreRotationSColorRGBSColorSDDD��
HPSPostRotationSColorRGBSColorSDDD��
+PSRotationActiveSboolSSI�
GPSRotationMinSColorRGBSColorSDDDn�
GPSRotationMaxSColorRGBSColorSDDD��
)PSRotationMinXSboolSSI��
)PSRotationMinYSboolSSI�
)PSRotationMinZSboolSSIJ�
)PSRotationMaxXSboolSSI��
)PSRotationMaxYSboolSSI��
)PSRotationMaxZSboolSSI��
(PSInheritTypeSenumSSI&�
*PS
ScalingActiveSboolSSIz�
FPS
ScalingMinSColorRGBSColorSDDD��
FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�
(PSScalingMinXSboolSSI:�
(PSScalingMinYSboolSSIp�
(PSScalingMinZSboolSSI��
(PSScalingMaxXSboolSSI��
(PSScalingMaxYSboolSSI�
(PSScalingMaxZSboolSSIp�
PPSGeometricTranslationSColorRGBSColorSDDD��
MPSGeometricRotationSColorRGBSColorSDDD%�
LPSGeometricScalingSColorRGBSColorSD�?D�?D�?i�
6PS
MinDampRangeXSdoubleSNumberSD��
6PS
MinDampRangeYSdoubleSNumberSD��
6PS
MinDampRangeZSdoubleSNumberSD5�
6PS
MaxDampRangeXSdoubleSNumberSDy�
6PS
MaxDampRangeYSdoubleSNumberSD��
6PS
MaxDampRangeZSdoubleSNumberSD�
9PSMinDampStrengthXSdoubleSNumberSDK�
9PSMinDampStrengthYSdoubleSNumberSD��
9PSMinDampStrengthZSdoubleSNumberSD��
9PSMaxDampStrengthXSdoubleSNumberSD �
9PSMaxDampStrengthYSdoubleSNumberSDg�
9PSMaxDampStrengthZSdoubleSNumberSD��
7PSPreferedAngleXSdoubleSNumberSD��
7PSPreferedAngleYSdoubleSNumberSD6�
7PSPreferedAngleZSdoubleSNumberSDe�
!PSShowSboolSSI��
8PSNegativePercentShapeSupportSboolSSI�
KPSLcl TranslationSColorRGBSColorSDDDZ�
HPSLcl RotationSColorRGBSColorSDDD��
GPSLcl ScalingSColorRGBSColorSD�?D�?D�?��
3PS
VisibilitySdoubleSNumberSD�?+�
.PSMoBuAttrBlindDataSBlobSSI��
�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI��
2PSMoBuRelationBlindDataSBlobSSI��

BinaryDataRp6MotionBuilder_SystemL�t�:S	Edit rootS)Properties70U�
5PSMoBuTypeNameSKStringSSS	TimelineX��
/PSMoBuSubTypeNameSKStringSSS��
EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline�
"PSMutedSboolSSIF�
#PSSoloedSboolSSI��
.PSRecordClipPathScharptrSSS��
 PSTracksSobjectSS��
#PS	TimelinesSobjectSS!�
2PSQuaternionInterpolateSboolSSIy�
JPSRotationOffsetSColorRGBSColorSDDD��
IPS
RotationPivotSColorRGBSColorSDDD'�
IPS
ScalingOffsetSColorRGBSColorSDDD}�
HPSScalingPivotSColorRGBSColorSDDD��
.PSTranslationActiveSboolSSI�
JPSTranslationMinSColorRGBSColorSDDDi�
JPSTranslationMaxSColorRGBSColorSDDD��
,PSTranslationMinXSboolSSI��
,PSTranslationMinYSboolSSI�
,PSTranslationMinZSboolSSIQ�
,PSTranslationMaxXSboolSSI��
,PSTranslationMaxYSboolSSI��
,PSTranslationMaxZSboolSSI��
*PS
RotationOrderSenumSSIA�
6PSRotationSpaceForLimitOnlySboolSSI��
;PSRotationStiffnessXSdoubleSNumberSD��
;PSRotationStiffnessYSdoubleSNumberSD�
;PSRotationStiffnessZSdoubleSNumberSDZ�
0PSAxisLenSdoubleSNumberSD$@��
GPSPreRotationSColorRGBSColorSDDD�
HPSPostRotationSColorRGBSColorSDDD>�
+PSRotationActiveSboolSSI��
GPSRotationMinSColorRGBSColorSDDD��
GPSRotationMaxSColorRGBSColorSDDD�
)PSRotationMinXSboolSSIV�
)PSRotationMinYSboolSSI��
)PSRotationMinZSboolSSI��
)PSRotationMaxXSboolSSI��
)PSRotationMaxYSboolSSI2�
)PSRotationMaxZSboolSSIh�
(PSInheritTypeSenumSSI��
*PS
ScalingActiveSboolSSI��
FPS
ScalingMinSColorRGBSColorSDDDH�
FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?~�
(PSScalingMinXSboolSSI��
(PSScalingMinYSboolSSI��
(PSScalingMinZSboolSSI �
(PSScalingMaxXSboolSSIV�
(PSScalingMaxYSboolSSI��
(PSScalingMaxZSboolSSI��
PPSGeometricTranslationSColorRGBSColorSDDDEMPSGeometricRotationSColorRGBSColorSDDD�LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD'6PS
MinDampRangeYSdoubleSNumberSDk6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD76PS
MaxDampRangeZSdoubleSNumberSD~9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD9PSMinDampStrengthZSdoubleSNumberSDS9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD&7PSPreferedAngleXSdoubleSNumberSDk7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�!PSShowSboolSSI%8PSNegativePercentShapeSupportSboolSSI~KPSLcl TranslationSColorRGBSColorSDDD�HPSLcl RotationSColorRGBSColorSDDD)GPSLcl ScalingSColorRGBSColorSD�?D�?D�?j3PS
VisibilitySdoubleSNumberSD�?�.PSMoBuAttrBlindDataSBlobSSI���
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI2PSMoBuRelationBlindDataSBlobSSI
BinaryDataRpN$MotionBuilder_SystemL��:SKTimelineXManagerSAProperties70�=PSMoBuTypeNameSKStringSSSKTimelineXManager	/PSMoBuSubTypeNameSKStringSSSm	CPSMoBuObjectFullNameSKStringSSSKTimelineXManager�
.PSMoBuAttrBlindDataSBlobSSI��
�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��542PSMoBuRelationBlindDataSBlobSSI'
BinaryDataRp�
MotionBuilder_SystemL8f�:SPosesS�
Properties70�2PSMoBuTypeNameSKStringSSSFolder%7PSMoBuSubTypeNameSKStringSSSCategoryr?PSMoBuObjectFullNameSKStringSSS
PosesFolder
.PSMoBuAttrBlindDataSBlobSSI/�4
BinaryDataR/p"

FolderTypeSPoses}
2PSMoBuRelationBlindDataSBlobSSIp

BinaryDataRp�MotionBuilder_SystemL�"�:STakesS�Properties70)2PSMoBuTypeNameSKStringSSSFoldern7PSMoBuSubTypeNameSKStringSSSCategory�?PSMoBuObjectFullNameSKStringSSS
TakesFolderO.PSMoBuAttrBlindDataSBlobSSI/B4
BinaryDataR/p"

FolderTypeSTakes�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp�MotionBuilder_SystemL`j�:SGlobal LightS�Properties70�9PSMoBuTypeNameSKStringSSS
GlobalShading�4PSMoBuSubTypeNameSKStringSSSLight>PSMoBuObjectFullNameSKStringSSSGlobal Light^BPS
Ambient ColorSColorSSAD����?D����?D����?�>PS	Fog ColorSColorSSAD�?D�?D�?�-PS	Fog BeginSNumberSSAD@33�?+PSFog EndSNumberSSAD@�@[/PSFog DensitySNumberSSAD@�$PSFogModeSenumSSI�&PS	FogEnableSboolSSI4.PSMoBuAttrBlindDataSBlobSSI'
BinaryDataRp�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp MotionBuilder_SystemL�
�:SRendererSProperties70\4PSMoBuTypeNameSKStringSSSRenderer�6PSMoBuSubTypeNameSKStringSSSDefault�DPSMoBuObjectFullNameSKStringSSSRendererRenderer++PSFrustumCullingSboolSSIc*PS
DisplayNormalSboolSSI�/PSDisplayBoundingBoxSboolSSI�;PSDisplayHierarchicalBoundingBoxSboolSSI#,PSIDBufferPickingSboolSSIn=PSIDBufferPickingAlphaSdoubleSNumberSD�?�,PSIDBufferDisplaySboolSSI�.PSSelectionOverrideSboolSSI8FPSSelectionOverrideTransparencySdoubleSNumberSD�?�RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?�7PSCurrentCallbackIndexSintSIntegerSI����1PSAdvancedMaterialModeSboolSSI�.PSMoBuAttrBlindDataSBlobSSI�
BinaryDataRp2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp�!&MotionBuilder_SystemLK�:SPython Tool ManagerS�!Properties70�4PSMoBuTypeNameSKStringSSS__FBTool�/PSMoBuSubTypeNameSKStringSSSREPSMoBuObjectFullNameSKStringSSSPython Tool Manager�'PSCaptionScharptrSSS�$PSEnabledSboolSSI�%PSReadOnlySboolSSI$PSVisibleSboolSSIS'PSLeftSintSIntegerSI�&PSTopSintSIntegerSI�(PSWidthSintSIntegerSI�)PSHeightSintSIntegerSI,*PSAnchorsSintSIntegerSIb(PSSkinContextSenumSSI�$PSHintScharptrSSS�)PS	HintMouseScharptrSSS	0PS
HintMouseLeftSintSIntegerSI����F/PSHintMouseTopSintSIntegerSI�����1PSHintMouseWidthSintSIntegerSI�����2PSHintMouseHeightSintSIntegerSI����1PSHintIsTextCompletionSboolSSI5#PSActiveSboolSSIj'PS
ActiveControlSobjectSS�,PSBackgroundBrushSenumSSI�.PSBorderStyleSintSIntegerSI+PSPositionSintSIntegerSIT-PS
StartWSizeSintSIntegerSI��-PS
StartHSizeSintSIntegerSI��+PSMaxWSizeSintSIntegerSI���� +PSMaxHSizeSintSIntegerSI����: +PSMinWSizeSintSIntegerSI�s +PSMinHSizeSintSIntegerSI����� ,PS	StartXPosSintSIntegerSI����� ,PS	StartYPosSintSIntegerSI����Z!.PSMoBuAttrBlindDataSBlobSSIM!
BinaryDataRp�!2PSMoBuRelationBlindDataSBlobSSI�!
BinaryDataRp�*(MotionBuilder_SystemL�O�:SBatch Tool (scripted)S�*Properties70�"4PSMoBuTypeNameSKStringSSS__FBTool�"/PSMoBuSubTypeNameSKStringSSS!#GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)V#'PSCaptionScharptrSSS�#$PSEnabledSboolSSI�#%PSReadOnlySboolSSI�#$PSVisibleSboolSSI"$'PSLeftSintSIntegerSIV$&PSTopSintSIntegerSI�$(PSWidthSintSIntegerSI�$)PSHeightSintSIntegerSI�$*PSAnchorsSintSIntegerSI1%(PSSkinContextSenumSSIc%$PSHintScharptrSSS�%)PS	HintMouseScharptrSSS�%0PS
HintMouseLeftSintSIntegerSI����&/PSHintMouseTopSintSIntegerSI����T&1PSHintMouseWidthSintSIntegerSI�����&2PSHintMouseHeightSintSIntegerSI�����&1PSHintIsTextCompletionSboolSSI'#PSActiveSboolSSI9''PS
ActiveControlSobjectSSs',PSBackgroundBrushSenumSSI�'.PSBorderStyleSintSIntegerSI�'+PSPositionSintSIntegerSI#(-PS
StartWSizeSintSIntegerSI^(-PS
StartHSizeSintSIntegerSIm�(+PSMaxWSizeSintSIntegerSI�����(+PSMaxHSizeSintSIntegerSI����	)+PSMinWSizeSintSIntegerSI�B)+PSMinHSizeSintSIntegerSI����|),PS	StartXPosSintSIntegerSI�����),PS	StartYPosSintSIntegerSI����)*.PSMoBuAttrBlindDataSBlobSSI*
BinaryDataRp�*2PSMoBuRelationBlindDataSBlobSSI�*
BinaryDataRp�33MotionBuilder_SystemL�6�:S Character Selection/Key ControlsS�3Properties70i+4PSMoBuTypeNameSKStringSSS__FBTool�+/PSMoBuSubTypeNameSKStringSSS,RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls;,'PSCaptionScharptrSSSm,$PSEnabledSboolSSI�,%PSReadOnlySboolSSI�,$PSVisibleSboolSSI-'PSLeftSintSIntegerSI;-&PSTopSintSIntegerSIq-(PSWidthSintSIntegerSI�-)PSHeightSintSIntegerSI�-*PSAnchorsSintSIntegerSI.(PSSkinContextSenumSSIH.$PSHintScharptrSSS.)PS	HintMouseScharptrSSS�.0PS
HintMouseLeftSintSIntegerSI�����./PSHintMouseTopSintSIntegerSI����9/1PSHintMouseWidthSintSIntegerSI����y/2PSHintMouseHeightSintSIntegerSI�����/1PSHintIsTextCompletionSboolSSI�/#PSActiveSboolSSI0'PS
ActiveControlSobjectSSX0,PSBackgroundBrushSenumSSI�0.PSBorderStyleSintSIntegerSI�0+PSPositionSintSIntegerSI1-PS
StartWSizeSintSIntegerSI�C1-PS
StartHSizeSintSIntegerSIx|1+PSMaxWSizeSintSIntegerSI�����1+PSMaxHSizeSintSIntegerSI�����1+PSMinWSizeSintSIntegerSI�'2+PSMinHSizeSintSIntegerSI����a2,PS	StartXPosSintSIntegerSI�����2,PS	StartYPosSintSIntegerSI����3.PSMoBuAttrBlindDataSBlobSSI3
BinaryDataRp�32PSMoBuRelationBlindDataSBlobSSIx3
BinaryDataRpX<MotionBuilder_SystemL�/�:S
FBX ExportSK<Properties70844PSMoBuTypeNameSKStringSSS__FBToolu4/PSMoBuSubTypeNameSKStringSSS�4<PSMoBuObjectFullNameSKStringSSS
FBX Export�4'PSCaptionScharptrSSS&5$PSEnabledSboolSSIY5%PSReadOnlySboolSSI�5$PSVisibleSboolSSI�5'PSLeftSintSIntegerSI�5&PSTopSintSIntegerSI*6(PSWidthSintSIntegerSIa6)PSHeightSintSIntegerSI�6*PSAnchorsSintSIntegerSI�6(PSSkinContextSenumSSI7$PSHintScharptrSSS87)PS	HintMouseScharptrSSSv70PS
HintMouseLeftSintSIntegerSI�����7/PSHintMouseTopSintSIntegerSI�����71PSHintMouseWidthSintSIntegerSI����282PSHintMouseHeightSintSIntegerSI����q81PSHintIsTextCompletionSboolSSI�8#PSActiveSboolSSI�8'PS
ActiveControlSobjectSS9,PSBackgroundBrushSenumSSIM9.PSBorderStyleSintSIntegerSI�9+PSPositionSintSIntegerSI�9-PS
StartWSizeSintSIntegerSI^�9-PS
StartHSizeSintSIntegerSI�5:+PSMaxWSizeSintSIntegerSI����n:+PSMaxHSizeSintSIntegerSI�����:+PSMinWSizeSintSIntegerSI��:+PSMinHSizeSintSIntegerSI����;,PS	StartXPosSintSIntegerSI����T;,PS	StartYPosSintSIntegerSI�����;.PSMoBuAttrBlindDataSBlobSSI�;
BinaryDataRp><2PSMoBuRelationBlindDataSBlobSSI1<
BinaryDataRpKd MotionBuilder_SystemL���:S
HierarchyViewS>dProperties70�<;PSMoBuTypeNameSKStringSSSKtHierarchyView8=/PSMoBuSubTypeNameSKStringSSS�=?PSMoBuObjectFullNameSKStringSSS
HierarchyView�c.PSMoBuAttrBlindDataSBlobSSI�%�c�%
BinaryDataR�%p�%
HierarchyView5ShowGridI�%ObjectsAttributes�NameSReferenceModel�	XDO@�	YD�p@�ExpandedIDNameSHipsModel	XDO@	YDz@7ExpandedI�NameSSpineModel}	XD�u��	YD }@�ExpandedI2NameSChestModel�	XD@x�	YD �@%ExpandedI�NameSNeckModelj	XDd���	YD��@�ExpandedINameSHeadModel�	XD����	YD@�@ExpandedI�NameSLeftEyeModelY	XD��p	YDP�@�ExpandedINameSRightEyeModel�	XDl���	YDЄ@ExpandedI�NameS
JawModelH	XD~��_	YDP�@yExpandedINameSTongueBackModel�	XD֧��	YD��@�ExpandedI}NameSTongueTipModel?	XD@��V	YD`�@pExpandedI�NameSLeftLipLowerModel�	XD����	YD��@�ExpandedIsNameS
JawENDModel5	XD��L	YD`�@fExpandedI�NameSRightLipLowerModel�	XD~���	YD��@�ExpandedIrNameSRightLipCornerModel4	XD��K	YD`�@eExpandedI�NameSLeftLipCornerModel�	XDR���	YD��@�ExpandedIoNameSLeftLipUpperModel1	XD���H	YDЄ@bExpandedI�NameSLeftNostrilModel�	XD����	YDP�@�ExpandedIg	NameSLeftCheekModel)		XDd��@		YDЄ@Z	ExpandedI�	NameSLeftEyelidLowerModel�		XDΠ��		YDP�@�	ExpandedIi
NameSLeftEyelidUpperModel+
	XD8��B
	YDЄ@\
ExpandedI�
NameSLeftInnerBrowModel�
	XDD���
	YDP�@�
ExpandedIhNameSLeftIOuterBrowModel*	XD��A	YDЄ@[ExpandedI�NameSRightInnerBrowModel�	XD���	YDP�@�ExpandedIiNameSRightIOuterBrowModel+	XD���B	YDЄ@\ExpandedI�NameSRightEyelidUpperModel�	XD����	YDP�@�ExpandedIm
NameSRightEyelidLowerModel/
	XDh��F
	YDЄ@`
ExpandedI�
NameSRightCheekModel�
	XD<���
	YDP�@�
ExpandedIgNameSRightNostrilModel)	XD��@	YDЄ@ZExpandedI�NameSRightLipUpperModel�	XD���	YDP�@�ExpandedIeNameSRightShoulderModel'	XD�m�>	YD0�@XExpandedI�NameSRightArmModel�	XD@q��	YD��@�ExpandedI]NameSRightForeArmModel	XD�s�6	YDP�@PExpandedI�NameSRightHandModel�	XD�u��	YD��@�ExpandedIYNameSRightHandPinky1Model	XD���2	YDp�@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	YDp�@PExpandedI�NameSRightHandMiddle2Model�	XD�z��	YD�@�ExpandedIaNameSRightHandMiddle3Model#	XD�|�:	YD��@TExpandedI�NameSRightHandIndex1Model�	XDV��	YD��@�ExpandedIcNameSRightHandIndex2Model%	XD�_�<	YD��@VExpandedI�NameSRightHandIndex3Model�	XD`d��	YD�@�ExpandedIeNameSRightHandThumb1Model'	XD�j@>	YDp�@XExpandedI�NameSRightHandThumb2Model�	XD�e@�	YD�@�ExpandedIgNameSRightHandThumb3Model)	XD a@@	YD��@ZExpandedI�NameSLeftShoulderModel�	XD��@�	YD0�@�ExpandedI^NameSLeftArmModel 	XD��@7	YD��@QExpandedI�NameSLeftForeArmModel�	XDh�@�	YDP�@�ExpandedIUNameSLeftHandModel	XDЗ@.	YD��@HExpandedI�NameSLeftHandPinky1Model�	XD��@�	YDp�@�ExpandedIUNameSLeftHandPinky2Model	XD��@.	YD�@HExpandedI�NameSLeftHandPinky3Model�	XD`�@�	YD��@�ExpandedITNameSLeftHandRing1Model	XD��@-	YD��@GExpandedI�NameSLeftHandRing2Model�	XD��@�	YD��@�ExpandedIRNameSLeftHandRing3Model	XD`�@+	YD�@EExpandedI�NameSLeftHandMiddle1Model�	XD<�@�	YDp�@�ExpandedITNameSLeftHandMiddle2Model	XD��@-	YD�@GExpandedI�NameSLeftHandMiddle3Model�	XD�@�	YD��@�ExpandedIUNameSLeftHandIndex1Model	XD�@.	YD��@HExpandedI�NameSLeftHandIndex2Model�	XDT�@�	YD��@�ExpandedIU NameSLeftHandIndex3Model 	XD��@. 	YD�@H ExpandedI� NameSLeftHandThumb1Model� 	XDN�@� 	YDp�@� ExpandedIU!NameSLeftHandThumb2Model!	XD�@.!	YD�@H!ExpandedI�!NameSLeftHandThumb3Model�!	XDp�@�!	YD��@�!ExpandedIQ"NameSRightUpLegModel"	XDޥ@*"	YD ~@D"ExpandedI�"NameSRightLegModel�"	XD��@�"	YD��@�"ExpandedIF#NameSRightFootModel#	XDH�@#	YD0�@9#ExpandedI�#NameSRightToesModel�#	XD��@�#	YD��@�#ExpandedI<$NameSLeftUpLegModel�#	XDb�@$	YD ~@/$ExpandedI�$NameSLeftLegModelw$	XD�@�$	YD��@�$ExpandedI/%NameSLeftFootModel�$	XD̨@%	YD0�@"%ExpandedI�%NameSLeftToesModelk%	XD��@�%	YD��@�%ExpandedI1d2PSMoBuRelationBlindDataSBlobSSI$d
BinaryDataRp�mMotionBuilder_SystemL���:S	TransportS�mProperties70�d,PSMoBuTypeNameSKStringSSSe/PSMoBuSubTypeNameSKStringSSSae;PSMoBuObjectFullNameSKStringSSS	Transport�e'PSCaptionScharptrSSS�e$PSEnabledSboolSSI�e%PSReadOnlySboolSSI-f$PSVisibleSboolSSIbf'PSLeftSintSIntegerSI�f&PSTopSintSIntegerSI�f(PSWidthSintSIntegerSIg)PSHeightSintSIntegerSI;g*PSAnchorsSintSIntegerSIqg(PSSkinContextSenumSSI�g$PSHintScharptrSSS�g)PS	HintMouseScharptrSSSh0PS
HintMouseLeftSintSIntegerSI����Uh/PSHintMouseTopSintSIntegerSI�����h1PSHintMouseWidthSintSIntegerSI�����h2PSHintMouseHeightSintSIntegerSI����i1PSHintIsTextCompletionSboolSSIDi#PSActiveSboolSSIyi'PS
ActiveControlSobjectSS�i,PSBackgroundBrushSenumSSI�i.PSBorderStyleSintSIntegerSI(j+PSPositionSintSIntegerSI\m.PSMoBuAttrBlindDataSBlobSSI�Om�
BinaryDataR�p�Transport Tool SettingsWZoomBar Settings�,_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1�ZoomWindowModeI�ZoomWindowTimeLLp6��5JAvatar_TStanceZoomWindowModeI=ZoomWindowTimeLLp6��55Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveI(AudioRightChannelActiveI�Settingsf
TimeFormatI�SnapOnFramesI�ReferenceTimeIndexI�����m2PSMoBuRelationBlindDataSBlobSSI�m
BinaryDataRpvMotionBuilder_SystemL0��:SFCurveS�uProperties70zn,PSMoBuTypeNameSKStringSSS�n/PSMoBuSubTypeNameSKStringSSS�n8PSMoBuObjectFullNameSKStringSSSFCurve2o'PSCaptionScharptrSSSdo$PSEnabledSboolSSI�o%PSReadOnlySboolSSI�o$PSVisibleSboolSSI�o'PSLeftSintSIntegerSI2p&PSTopSintSIntegerSIhp(PSWidthSintSIntegerSI�p)PSHeightSintSIntegerSI�p*PSAnchorsSintSIntegerSI
q(PSSkinContextSenumSSI?q$PSHintScharptrSSSvq)PS	HintMouseScharptrSSS�q0PS
HintMouseLeftSintSIntegerSI�����q/PSHintMouseTopSintSIntegerSI����0r1PSHintMouseWidthSintSIntegerSI����pr2PSHintMouseHeightSintSIntegerSI�����r1PSHintIsTextCompletionSboolSSI�r#PSActiveSboolSSIs'PS
ActiveControlSobjectSSOs,PSBackgroundBrushSenumSSI�s.PSBorderStyleSintSIntegerSI�s+PSPositionSintSIntegerSIsu.PSMoBuAttrBlindDataSBlobSSIJfuO
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI�u2PSMoBuRelationBlindDataSBlobSSI�u
BinaryDataRp&yMotionBuilder_GenericL���:S
GlobalInfoSyProperties70�v5PSMoBuTypeNameSKStringSSS	SceneInfo�v7PSMoBuSubTypeNameSKStringSSSUserData9wGPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo�x.PSMoBuAttrBlindDataSBlobSSI��x�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentSy2PSMoBuRelationBlindDataSBlobSSI�x
BinaryDataRpHuConnectionsryCSOOL��8:L�yCSOOLXۨ:L�v)�yCSOOL�2b:L�v)�yCSOOL�:b:L�v)zCSOOL�6b:L$v)5zCSOOL�Bb:L)v)\zCSOOL�>b:L.v)�zCSOOL�Jb:L3v)�zCSOOL��:L��8:�zCSOOL8��:L`��9�zCSOOL`��:L`��9{CSOOL�h�:L`��9F{CSOOL�:L`��9m{CSOOL���:L`��9�{CSOOL��:L`��9�{CSOOL�:L`��9�{CSOOL�ʅ:L`��9	|CSOOL81�:L`��90|CSOOLp��:L`��9W|CSOOL���:L`��9~|CSOOL0`�:L`��9�|CSOOLX��:L`��9�|CSOOLhR�:L`��9�|CSOOL �:L`��9}CSOOL���:L`��9A}CSOOL��:L`��9h}CSOOL @�:L`��9�}CSOOLh�:L`��9�}CSOOL��:L`��9�}CSOOL ��:L`��9~CSOOL��:L`��9+~CSOOLX �:L`��9R~CSOOL�<�:L`��9y~CSOOL`��:L`��9�~CSOOL�y�:L`��9�~CSOOL��:L`��9�~CSOOL���:L`��9CSOOL0i�:L`��9<CSOOL0��:L`��9cCSOOL(�:L`��9�CSOOL(G�:L`��9�CSOOL���:L`��9�CSOOL���:L`��9�CSOOL�M�:L`��9&�CSOOL|�:L`��9M�CSOOL���:L`��9t�CSOOL���:L`��9��CSOOL�6�:L`��9€CSOOL��:L`��9�CSOOL�A�:L`��9�CSOOL��:L`��97�CSOOL0{�:L`��9^�CSOOL@��:L`��9��CSOOL���:L`��9��CSOOL���:L`��9ӁCSOOL���:L`��9��CSOOL�%�:L`��9!�CSOOL��:L`��9H�CSOOLPa�:L`��9o�CSOOL��:L`��9��CSOOLP�:L`��9��CSOOL`��:L`��9�CSOOLx�:L`��9�CSOOL(>�:L`��92�CSOOLh%�:L`��9Y�CSOOL��:L`��9��CSOOLж�:L`��9��CSOOLh��:L`��9΃CSOOL���:L`��9��CSOOL(��:L`��9�CSOOL@�:L`��9C�CSOOL8�:L`��9j�CSOOLP��:L`��9��CSOOLpY�:L`��9��CSOOL�ͅ:L`��9߄CSOOLp>�:L`��9�CSOOL ��:L`��9-�CSOOLx��:L`��9T�CSOOLP4�:L`��9{�CSOOL0��:L`��9��CSOOL���:L`��9ɅCSOOL�:L`��9��CSOOL�:L`��9�CSOOL�:L`��9>�CSOOL�
:L`��9e�CSOOLX:L`��9��CSOOL�	:L`��9��CSOOL:L`��9چCSOOL�:L`��9�CSOOL�:L`��9(�CSOOL��:L`��9O�CSOOL��:L`��9v�CSOOL�:L`��9��CSOOLX�:L`��9ćCSOOL��:L`��9�CSOOL��:L`��9�CSOOL��:L`��99�CSOOL �:L`��9`�CSOOL��:L`��9��CSOOL�:L`��9��CSOOL��:L`��9ՈCSOOL��:L`��9��CSOOL�:L`��9#�CSOOL��:L`��9J�CSOOL��:L`��9q�CSOOLp�:L`��9��CSOOL��:L`��9��CSOOL8�:L`��9�CSOOL�:L`��9
�CSOOL��:L`��94�CSOOL�:L`��9[�CSOOL��:L`��9��CSOOL��:L`��9��CSOOL��:L`��9ЊCSOOL�:L`��9��CSOOL`�:L`��9�CSOOLh�:L`��9E�CSOOL��:L`��9l�CSOOL��:L`��9��CSOOL��:L`��9��CSOOL@�:L`��9�CSOOL�:L`��9�CSOOL��:L`��9/�CSOOLX�:L`��9V�CSOOL�:L`��9}�CSOOL8�:L`��9��CSOOL:L`��9ˌCSOOL��:L`��9�CSOOL �:L`��9�CSOOL��:L`��9@�CSOOL��:L`��9g�CSOOL�:L`��9��CSOOLP�:L`��9��CSOOL�:L`��9܍CSOOL��:L`��9�CSOOLX�:L`��9*�CSOOL(�:L`��9Q�CSOOL�:L`��9x�CSOOL�:L`��9��CSOOL��:L`��9ƎCSOOL��:L`��9�CSOOL �:L`��9�CSOOLH�:L`��9;�CSOOL��:L`��9b�CSOOL��:L`��9��CSOOL�:L`��9��CSOOL��:L`��9׏CSOOL�:L`��9��CSOOL��:L`��9%�CSOOL��:L`��9L�CSOOL�{:L`��9s�CSOOLP}:L`��9��CSOOL�z:L`��9��CSOOLH:L`��9�CSOOL:L`��9�CSOOL`�:L`��96�CSOOL��:L`��9]�CSOOL n:L`��9��CSOOLHm:L`��9��CSOOL�l:L`��9ґCSOOL�k:L`��9��CSOOL��-L��8: �CSOOL��8:L��8:[�-CSOPL8��:L��8:SLcl Translation��-CSOPLxj:L��8:SLcl TranslationΒ*CSOPL`��:L��8:SLcl Rotation�*CSOPL�i:L��8:SLcl Rotation-�CSOOLH�-L��8:T�CSOOL��8:L��8:{�CSOOLhY^:L��8:��CSOOL�$�:L��8:ݓ-CSOPL�h�:L��8:SLcl Translation�-CSOPL��:L��8:SLcl TranslationP�*CSOPL�:L��8:SLcl Rotation��*CSOPL�:L��8:SLcl Rotation��CSOOLHl�-L��8:֔CSOOL��8:L��8:�-CSOPL���:L��8:SLcl TranslationL�-CSOPL�d:L��8:SLcl Translation��*CSOPL��:L��8:SLcl Rotation��*CSOPLd:L��8:SLcl Rotation�CSOOL�9�-L��8:
�CSOOL��8:L��8:1�CSOOL@��9L��8:X�CSOOLxҳ:L��8:��-CSOPL�:L��8:SLcl TranslationΖ-CSOPL��:L��8:SLcl Translation�*CSOPL�ʅ:L��8:SLcl Rotation>�*CSOPLPY:L��8:SLcl Rotatione�CSOOLH!�-L��8:��CSOOL��8:L��8:Ǘ-CSOPL81�:L��8:SLcl Translation�-CSOPL8V:L��8:SLcl Translation:�*CSOPLp��:L��8:SLcl Rotationr�*CSOPL S:L��8:SLcl Rotation��CSOOL$�-L��8:��CSOOL�9:L��8:�CSOOL�9:L��8:�CSOOL�9:L��8:5�CSOOLຒ:L��8:\�CSOOL迒:L��8:��CSOOL�Ē:L��8:��CSOOL�ɒ:L��8:љCSOOLϒ:L��8:��CSOOLԒ:L��8:�CSOOLْ:L��8:F�CSOOL_�9L��8:m�CSOOLd�9L��8:��CSOOLi�9L��8:��CSOOL n�9L��8:�CSOOL(s�9L��8:	�CSOOL0x�9L��8:0�CSOOL8}�9L��8:k�-CSOPL���:L��8:SLcl Translation��-CSOPLP:L��8:SLcl Translationޛ*CSOPL0`�:L��8:SLcl Rotation�*CSOPL�L:L��8:SLcl Rotation=�CSOOL��-L�9:x�-CSOPLX��:L�9:SLcl Translation��-CSOPL�I:L�9:SLcl Translation�*CSOPLhR�:L�9:SLcl Rotation#�*CSOPL�F:L�9:SLcl RotationJ�CSOOL�W�-L�9:��-CSOPL �:L�9:SLcl Translation��-CSOPL�C:L�9:SLcl Translation��*CSOPL���:L�9:SLcl Rotation0�*CSOPL<:L�9:SLcl RotationW�CSOOL�-L�9:~�CSOOL�9:L�9:��CSOOL�9:L�9:̞CSOOL���:L�9:�CSOOL���:L�9:�CSOOLȫ�:L�9:A�CSOOLа�:L�9:h�CSOOLص�:L�9:��-CSOPL��:L�9:SLcl Translationޟ-CSOPL�8:L�9:SLcl Translation�*CSOPL @�:L�9:SLcl RotationN�*CSOPL�5:L�9:SLcl Rotationu�CSOOLl�-L�9:��-CSOPLh�:L�9:SLcl Translation�-CSOPL�2:L�9:SLcl Translation#�*CSOPL��:L�9:SLcl Rotation[�*CSOPL�/:L�9:SLcl Rotation��CSOOLg�-L�9:��-CSOPL ��:L�9:SLcl Translation��-CSOPL�A:L�9:SLcl Translation0�*CSOPL��:L�9:SLcl Rotationh�*CSOPL.:L�9:SLcl Rotation��CSOOLH��-L���:ʢ-CSOPLX �:L���:SLcl Translation�-CSOPL0+:L���:SLcl Translation=�*CSOPL�<�:L���:SLcl Rotationu�*CSOPL�':L���:SLcl Rotation��CSOOL�+�-L���:ף-CSOPL`��:L���:SLcl Translation�-CSOPL�$:L���:SLcl TranslationJ�*CSOPL�y�:L���:SLcl Rotation��*CSOPL�]:L���:SLcl Rotation��CSOOL�-Lȫ�:�-CSOPL��:Lȫ�:SLcl Translation�-CSOPL[:Lȫ�:SLcl TranslationW�*CSOPL���:Lȫ�:SLcl Rotation��*CSOPL�_:Lȫ�:SLcl Rotation��CSOOLȟ�-Lа�:�-CSOPL0i�:Lа�:SLcl Translation,�-CSOPLh�:Lа�:SLcl Translationd�*CSOPL0��:Lа�:SLcl Rotation��*CSOPL:Lа�:SLcl RotationæCSOOL���-Lص�:��-CSOPL(�:Lص�:SLcl Translation9�-CSOPL�:Lص�:SLcl Translationq�*CSOPL(G�:Lص�:SLcl Rotation��*CSOPL�:Lص�:SLcl RotationЧCSOOL��-Lຒ:�-CSOPL���:Lຒ:SLcl TranslationF�-CSOPL��:Lຒ:SLcl Translation~�*CSOPL���:Lຒ:SLcl Rotation��*CSOPL0�:Lຒ:SLcl RotationݨCSOOL���-L迒:�-CSOPL�M�:L迒:SLcl TranslationS�-CSOPL�:L迒:SLcl Translation��*CSOPL|�:L迒:SLcl Rotationé*CSOPL�!�9L迒:SLcl Rotation�CSOOL]�-L�Ē:%�-CSOPL���:L�Ē:SLcl Translation`�-CSOPL�$�9L�Ē:SLcl Translation��*CSOPL���:L�Ē:SLcl RotationЪ*CSOPL�'�9L�Ē:SLcl Rotation��CSOOL�X�-L�ɒ:2�-CSOPL�6�:L�ɒ:SLcl Translationm�-CSOPL�*�9L�ɒ:SLcl Translation��*CSOPL��:L�ɒ:SLcl Rotationݫ*CSOPL.�9L�ɒ:SLcl Rotation�CSOOL�c�-Lϒ:?�-CSOPL�A�:Lϒ:SLcl Translationz�-CSOPL 1�9Lϒ:SLcl Translation��*CSOPL��:Lϒ:SLcl Rotation�*CSOPL84�9Lϒ:SLcl Rotation�CSOOL�-LԒ:L�-CSOPL0{�:LԒ:SLcl Translation��-CSOPLP7�9LԒ:SLcl Translation��*CSOPL@��:LԒ:SLcl Rotation��*CSOPLh:�9LԒ:SLcl Rotation�CSOOL���-Lْ:Y�-CSOPL���:Lْ:SLcl Translation��-CSOPL�=�9Lْ:SLcl Translation̮*CSOPL���:Lْ:SLcl Rotation�*CSOPL��9Lْ:SLcl Rotation+�CSOOL�[�-L_�9f�-CSOPL���:L_�9SLcl Translation��-CSOPL(��9L_�9SLcl Translationٯ*CSOPL�%�:L_�9SLcl Rotation�*CSOPL@��9L_�9SLcl Rotation8�CSOOL�(�-Ld�9s�-CSOPL��:Ld�9SLcl Translation��-CSOPLX��9Ld�9SLcl Translation�*CSOPLPa�:Ld�9SLcl Rotation�*CSOPLp��9Ld�9SLcl RotationE�CSOOL���-Li�9��-CSOPL��:Li�9SLcl Translation��-CSOPL���9Li�9SLcl Translation�*CSOPLP�:Li�9SLcl Rotation+�*CSOPL���9Li�9SLcl RotationR�CSOOL��-L n�9��-CSOPL`��:L n�9SLcl TranslationȲ-CSOPL���9L n�9SLcl Translation�*CSOPLx�:L n�9SLcl Rotation8�*CSOPL���9L n�9SLcl Rotation_�CSOOLH|�-L(s�9��-CSOPL(>�:L(s�9SLcl Translationճ-CSOPL���9L(s�9SLcl Translation
�*CSOPLh%�:L(s�9SLcl RotationE�*CSOPL��9L(s�9SLcl Rotationl�CSOOL�g�-L0x�9��-CSOPL��:L0x�9SLcl Translation�-CSOPL��9L0x�9SLcl Translation�*CSOPLж�:L0x�9SLcl RotationR�*CSOPL0��9L0x�9SLcl Rotationy�CSOOL���-L8}�9��-CSOPLh��:L8}�9SLcl Translation�-CSOPLH��9L8}�9SLcl Translation'�*CSOPL���:L8}�9SLcl Rotation_�*CSOPL`��9L8}�9SLcl Rotation��CSOOL��-L@��9��CSOOLH��9L@��9�-CSOPL(��:L@��9SLcl Translation#�-CSOPLx��9L@��9SLcl Translation[�*CSOPL@�:L@��9SLcl Rotation��*CSOPL���9L@��9SLcl Rotation��CSOOLH��-LH��9�CSOOLP��9LH��9�-CSOPL8�:LH��9SLcl TranslationW�-CSOPL���9LH��9SLcl Translation��*CSOPLP��:LH��9SLcl RotationǸ*CSOPL��9LH��9SLcl Rotation�CSOOL��-LP��9�CSOOLX��9LP��9P�-CSOPLpY�:LP��9SLcl Translation��-CSOPL��9LP��9SLcl Translationù*CSOPL�ͅ:LP��9SLcl Rotation��*CSOPL��9LP��9SLcl Rotation"�CSOOLȕ�-LX��9I�CSOOL`��9LX��9p�CSOOLp�*:LX��9��CSOOL��*:LX��9��CSOOL��*:LX��9�CSOOL��*:LX��9 �-CSOPLp>�:LX��9SLcl Translation[�-CSOPL��9LX��9SLcl Translation��*CSOPL ��:LX��9SLcl Rotation˻*CSOPL�9LX��9SLcl Rotation�CSOOL�x�-L`��9�CSOOL`�*:L`��9T�-CSOPLx��:L`��9SLcl Translation��-CSOPL�9L`��9SLcl TranslationǼ*CSOPLP4�:L`��9SLcl Rotation��*CSOPL0�9L`��9SLcl Rotation&�CSOOL�2�-L`�*:M�CSOOLh�*:L`�*:��-CSOPL0��:L`�*:SLcl Translationý-CSOPLH �9L`�*:SLcl Translation��*CSOPL���:L`�*:SLcl Rotation3�*CSOPL`#�9L`�*:SLcl RotationZ�CSOOLH0�-Lh�*:��-CSOPL�:Lh�*:SLcl Translationо-CSOPLx&�9Lh�*:SLcl Translation�*CSOPL�:Lh�*:SLcl Rotation@�*CSOPL�)�9Lh�*:SLcl Rotationg�CSOOL���-Lp�*:��CSOOLx�*:Lp�*:ɿ-CSOPL�:Lp�*:SLcl Translation�-CSOPL�,�9Lp�*:SLcl Translation<�*CSOPL�
:Lp�*:SLcl Rotationt�*CSOPL�/�9Lp�*:SLcl Rotation��CSOOLH9�-Lx�*:��CSOOL��*:Lx�*:��-CSOPLX:Lx�*:SLcl Translation8�-CSOPL�2�9Lx�*:SLcl Translationp�*CSOPL�	:Lx�*:SLcl Rotation��*CSOPL�5�9Lx�*:SLcl Rotation��CSOOL��-L��*:
�-CSOPL:L��*:SLcl TranslationE�-CSOPL9�9L��*:SLcl Translation}�*CSOPL�:L��*:SLcl Rotation��*CSOPL <�9L��*:SLcl Rotation��CSOOLȘ�-L��*:�CSOOL��*:L��*:>�-CSOPL�:L��*:SLcl Translationy�-CSOPL8?�9L��*:SLcl Translation��*CSOPL��:L��*:SLcl Rotation��*CSOPLPB�9L��*:SLcl Rotation�CSOOL�
�-L��*:7�CSOOL��*:L��*:r�-CSOPL��:L��*:SLcl Translation��-CSOPLhE�9L��*:SLcl Translation��*CSOPL�:L��*:SLcl Rotation�*CSOPL�H�9L��*:SLcl RotationD�CSOOLH��-L��*:�-CSOPLX�:L��*:SLcl Translation��-CSOPL�K�9L��*:SLcl Translation��*CSOPL��:L��*:SLcl Rotation*�*CSOPL�N�9L��*:SLcl RotationQ�CSOOL��-L��*:x�CSOOL��*:L��*:��-CSOPL��:L��*:SLcl Translation��-CSOPL���9L��*:SLcl Translation&�*CSOPL��:L��*:SLcl Rotation^�*CSOPL�9L��*:SLcl Rotation��CSOOLH"�-L��*:��CSOOL��*:L��*:��-CSOPL �:L��*:SLcl Translation"�-CSOPL(�9L��*:SLcl TranslationZ�*CSOPL��:L��*:SLcl Rotation��*CSOPL@	�9L��*:SLcl Rotation��CSOOL�_�-L��*:��-CSOPL�:L��*:SLcl Translation/�-CSOPLX�9L��*:SLcl Translationg�*CSOPL��:L��*:SLcl Rotation��*CSOPLp�9L��*:SLcl Rotation��CSOOL��-L��*:��CSOOLhȳ:L��*:(�-CSOPL��:L��*:SLcl Translationc�-CSOPL��9L��*:SLcl Translation��*CSOPL�:L��*:SLcl Rotation��*CSOPL��9L��*:SLcl Rotation��CSOOLH �-Lhȳ:!�CSOOLpͳ:Lhȳ:\�-CSOPL��:Lhȳ:SLcl Translation��-CSOPL��9Lhȳ:SLcl Translation��*CSOPL��:Lhȳ:SLcl Rotation�*CSOPL��9Lhȳ:SLcl Rotation.�CSOOL��-Lpͳ:i�-CSOPLp�:Lpͳ:SLcl Translation��-CSOPL��9Lpͳ:SLcl Translation��*CSOPL��:Lpͳ:SLcl Rotation�*CSOPL"�9Lpͳ:SLcl Rotation;�CSOOL�6�-Lxҳ:b�CSOOL�׳:Lxҳ:��-CSOPL8�:Lxҳ:SLcl Translation��-CSOPL%�9Lxҳ:SLcl Translation�*CSOPL�:Lxҳ:SLcl RotationH�*CSOPL0(�9Lxҳ:SLcl Rotationo�CSOOLH�-L�׳:��CSOOL�ܳ:L�׳:��-CSOPL��:L�׳:SLcl Translation�-CSOPLH+�9L�׳:SLcl TranslationD�*CSOPL�:L�׳:SLcl Rotation|�*CSOPL`.�9L�׳:SLcl Rotation��CSOOL���-L�ܳ:��CSOOL��:L�ܳ:�-CSOPL��:L�ܳ:SLcl Translation@�-CSOPLx1�9L�ܳ:SLcl Translationx�*CSOPL��:L�ܳ:SLcl Rotation��*CSOPL�4�9L�ܳ:SLcl Rotation��CSOOL	�-L��:��CSOOL��:L��:%�CSOOL���:L��:L�CSOOL ,^:L��:s�CSOOL8;^:L��:��CSOOLPJ^:L��:��-CSOPL��:L��:SLcl Translation�-CSOPL�7�9L��:SLcl TranslationH�*CSOPL�:L��:SLcl Rotation��*CSOPL�:�9L��:SLcl Rotation��CSOOL��-L��:��CSOOL��:L��:	�-CSOPL`�:L��:SLcl TranslationD�-CSOPL�=�9L��:SLcl Translation|�*CSOPLh�:L��:SLcl Rotation��*CSOPL�}:L��:SLcl Rotation��CSOOL�=�-L��:�CSOOL��:L��:=�-CSOPL��:L��:SLcl Translationx�-CSOPL0�}:L��:SLcl Translation��*CSOPL��:L��:SLcl Rotation��*CSOPLH�}:L��:SLcl Rotation�CSOOL`�-L��:J�-CSOPL��:L��:SLcl Translation��-CSOPL`�}:L��:SLcl Translation��*CSOPL@�:L��:SLcl Rotation��*CSOPLx�}:L��:SLcl Rotation�CSOOLH��-L���:C�CSOOL���:L���:~�-CSOPL�:L���:SLcl Translation��-CSOPL��}:L���:SLcl Translation��*CSOPL��:L���:SLcl Rotation)�*CSOPL��}:L���:SLcl RotationP�CSOOL���-L���:w�CSOOL���:L���:��-CSOPLX�:L���:SLcl Translation��-CSOPL��}:L���:SLcl Translation%�*CSOPL�:L���:SLcl Rotation]�*CSOPL��}:L���:SLcl Rotation��CSOOL���-L���:��-CSOPL8�:L���:SLcl Translation��-CSOPL��}:L���:SLcl Translation2�*CSOPL:L���:SLcl Rotationj�*CSOPL�}:L���:SLcl Rotation��CSOOLH�-L ,^:��CSOOL(1^:L ,^:��-CSOPL��:L ,^:SLcl Translation.�-CSOPL �}:L ,^:SLcl Translationf�*CSOPL �:L ,^:SLcl Rotation��*CSOPL8�}:L ,^:SLcl Rotation��CSOOLȇ�-L(1^:��CSOOL06^:L(1^:'�-CSOPL��:L(1^:SLcl Translationb�-CSOPLP~:L(1^:SLcl Translation��*CSOPL��:L(1^:SLcl Rotation��*CSOPLh~:L(1^:SLcl Rotation��CSOOLH��-L06^:4�-CSOPL�:L06^:SLcl Translationo�-CSOPL�~:L06^:SLcl Translation��*CSOPLP�:L06^:SLcl Rotation��*CSOPL�
~:L06^:SLcl Rotation�CSOOLH��-L8;^:-�CSOOL@@^:L8;^:h�-CSOPL�:L8;^:SLcl Translation��-CSOPL�
~:L8;^:SLcl Translation��*CSOPL��:L8;^:SLcl Rotation�*CSOPL�~:L8;^:SLcl Rotation:�CSOOL�-L@@^:a�CSOOLHE^:L@@^:��-CSOPLX�:L@@^:SLcl Translation��-CSOPL�~:L@@^:SLcl Translation�*CSOPL(�:L@@^:SLcl RotationG�*CSOPL �:L@@^:SLcl Rotationn�CSOOL���-LHE^:��-CSOPL�:LHE^:SLcl Translation��-CSOPL8�:LHE^:SLcl Translation�*CSOPL�:LHE^:SLcl RotationT�*CSOPLP�:LHE^:SLcl Rotation{�CSOOLH
�-LPJ^:��CSOOLXO^:LPJ^:��-CSOPL��:LPJ^:SLcl Translation�-CSOPLh�:LPJ^:SLcl TranslationP�*CSOPL��:LPJ^:SLcl Rotation��*CSOPL��:LPJ^:SLcl Rotation��CSOOL��-LXO^:��CSOOL`T^:LXO^:�-CSOPL �:LXO^:SLcl TranslationL�-CSOPL��:LXO^:SLcl Translation��*CSOPLH�:LXO^:SLcl Rotation��*CSOPL��:LXO^:SLcl Rotation��CSOOL���-L`T^:�-CSOPL��:L`T^:SLcl TranslationY�-CSOPL��:L`T^:SLcl Translation��*CSOPL��:L`T^:SLcl Rotation��*CSOPL��:L`T^:SLcl Rotation��CSOOL�-LhY^:�CSOOLp^^:LhY^:R�-CSOPL�:LhY^:SLcl Translation��-CSOPL��:LhY^:SLcl Translation��*CSOPL��:LhY^:SLcl Rotation��*CSOPL!�:LhY^:SLcl Rotation$�CSOOL��-Lp^^:K�CSOOLxc^:Lp^^:��-CSOPL�:Lp^^:SLcl Translation��-CSOPL($�:Lp^^:SLcl Translation��*CSOPL��:Lp^^:SLcl Rotation1�*CSOPL@'�:Lp^^:SLcl RotationX�CSOOL�x�-Lxc^:�CSOOLx�:Lxc^:��-CSOPL��:Lxc^:SLcl Translation��-CSOPLX*�:Lxc^:SLcl Translation-�*CSOPL�{:Lxc^:SLcl Rotatione�*CSOPLp-�:Lxc^:SLcl Rotation��CSOOL�-Lx�:��-CSOPLP}:Lx�:SLcl Translation�-CSOPL�0�:Lx�:SLcl Translation:�*CSOPL�z:Lx�:SLcl Rotationr�*CSOPL�3�:Lx�:SLcl Rotation��CSOOL��-L�$�:��CSOOL�)�:L�$�:��-CSOPLH:L�$�:SLcl Translation6�-CSOPL�6�:L�$�:SLcl Translationn�*CSOPL:L�$�:SLcl Rotation��*CSOPL�9�:L�$�:SLcl Rotation��CSOOLȿ�-L�)�:��CSOOL�.�:L�)�:/�-CSOPL`�:L�)�:SLcl Translationj�-CSOPL�<�:L�)�:SLcl Translation��*CSOPL��:L�)�:SLcl Rotation��*CSOPL@�:L�)�:SLcl Rotation�CSOOL~�-L�.�:(�CSOOL�3�:L�.�:c�-CSOPL n:L�.�:SLcl Translation��-CSOPL(Rt:L�.�:SLcl Translation��*CSOPLHm:L�.�:SLcl Rotation�*CSOPL@Ut:L�.�:SLcl Rotation5�CSOOLȵ�-L�3�:p�-CSOPL�l:L�3�:SLcl Translation��-CSOPLXXt:L�3�:SLcl Translation��*CSOPL�k:L�3�:SLcl Rotation�*CSOPLp[t:L�3�:SLcl RotationB�CSOOL`��9L��:i�CSOOL`?�9L��:��CSOOL�}�9L�:��CSOOL���9L�:��CSOOLxj:L�}�9�CSOOL�i:L�}�9,�CSOOL��:L�}�9S�CSOOL�:L�}�9z�CSOOL�d:L�}�9��CSOOLd:L�}�9��CSOOL��:L�}�9��CSOOLPY:L�}�9�CSOOL8V:L�}�9=�CSOOL S:L�}�9d�CSOOLP:L�}�9��CSOOL�L:L�}�9��CSOOL�I:L�}�9��CSOOL�F:L�}�9�CSOOL�C:L�}�9'�CSOOL<:L�}�9N�CSOOL�8:L�}�9u�CSOOL�5:L�}�9��CSOOL�2:L�}�9��CSOOL�/:L�}�9��CSOOL�A:L�}�9�CSOOL.:L�}�98�CSOOL0+:L�}�9_�CSOOL�':L�}�9��CSOOL�$:L�}�9��CSOOL�]:L�}�9��CSOOL[:L�}�9��CSOOL�_:L�}�9"�CSOOLh�:L�}�9I�CSOOL:L�}�9p�CSOOL�:L�}�9��CSOOL�:L�}�9��CSOOL��:L�}�9��CSOOL0�:L�}�9�CSOOL�:L�}�93�CSOOL�!�9L�}�9Z�CSOOL�$�9L�}�9��CSOOL�'�9L�}�9��CSOOL�*�9L�}�9��CSOOL.�9L�}�9��CSOOL 1�9L�}�9�CSOOL84�9L�}�9D�CSOOLP7�9L�}�9k�CSOOLh:�9L�}�9��CSOOL�=�9L�}�9��CSOOL��9L�}�9��CSOOL(��9L�}�9�CSOOL@��9L�}�9.�CSOOLX��9L�}�9U�CSOOLp��9L�}�9|�CSOOL���9L�}�9��CSOOL���9L�}�9��CSOOL���9L�}�9��CSOOL���9L�}�9�CSOOL���9L�}�9?�CSOOL��9L�}�9f�CSOOL��9L�}�9��CSOOL0��9L�}�9��CSOOLH��9L�}�9��CSOOL`��9L�}�9�CSOOLx��9L�}�9)�CSOOL���9L�}�9P�CSOOL���9L�}�9w�CSOOL��9L�}�9��CSOOL��9L�}�9��CSOOL��9L�}�9��CSOOL��9L�}�9�CSOOL�9L�}�9:�CSOOL�9L�}�9a�CSOOL0�9L�}�9��CSOOLH �9L�}�9��CSOOL`#�9L�}�9��CSOOLx&�9L�}�9��CSOOL�)�9L�}�9$�CSOOL�,�9L�}�9K�CSOOL�/�9L�}�9r�CSOOL�2�9L�}�9��CSOOL�5�9L�}�9��CSOOL9�9L�}�9��CSOOL <�9L�}�9�CSOOL8?�9L�}�95�CSOOLPB�9L�}�9\�CSOOLhE�9L�}�9��CSOOL�H�9L�}�9��CSOOL�K�9L�}�9��CSOOL�N�9L�}�9��CSOOL���9L�}�9�CSOOL�9L�}�9F�CSOOL(�9L�}�9m�CSOOL@	�9L�}�9��CSOOLX�9L�}�9��CSOOLp�9L�}�9��CSOOL��9L�}�9	�CSOOL��9L�}�90�CSOOL��9L�}�9W�CSOOL��9L�}�9~�CSOOL��9L�}�9��CSOOL"�9L�}�9��CSOOL%�9L�}�9��CSOOL0(�9L�}�9�CSOOLH+�9L�}�9A�CSOOL`.�9L�}�9h�CSOOLx1�9L�}�9��CSOOL�4�9L�}�9��CSOOL�7�9L�}�9��CSOOL�:�9L�}�9�CSOOL�=�9L�}�9+�CSOOL�}:L�}�9R�CSOOL0�}:L�}�9y�CSOOLH�}:L�}�9��CSOOL`�}:L�}�9��CSOOLx�}:L�}�9��CSOOL��}:L�}�9�CSOOL��}:L�}�9<�CSOOL��}:L�}�9c�CSOOL��}:L�}�9��CSOOL��}:L�}�9��CSOOL�}:L�}�9��CSOOL �}:L�}�9��CSOOL8�}:L�}�9&CSOOLP~:L�}�9MCSOOLh~:L�}�9tCSOOL�~:L�}�9�CSOOL�
~:L�}�9�CSOOL�
~:L�}�9�CSOOL�~:L�}�9CSOOL�~:L�}�97CSOOL �:L�}�9^CSOOL8�:L�}�9�CSOOLP�:L�}�9�CSOOLh�:L�}�9�CSOOL��:L�}�9�CSOOL��:L�}�9!CSOOL��:L�}�9HCSOOL��:L�}�9oCSOOL��:L�}�9�CSOOL��:L�}�9�CSOOL!�:L�}�9�CSOOL($�:L�}�9CSOOL@'�:L�}�92CSOOLX*�:L�}�9YCSOOLp-�:L�}�9�CSOOL�0�:L�}�9�CSOOL�3�:L�}�9�CSOOL�6�:L�}�9�CSOOL�9�:L�}�9CSOOL�<�:L�}�9CCSOOL@�:L�}�9jCSOOL(Rt:L�}�9�CSOOL@Ut:L�}�9�CSOOLXXt:L�}�9�CSOOLp[t:L�}�9!CSOPL��>:L�h�:Sd|X=!CSOPL�>:L�h�:Sd|Yl!CSOPL�>:L�h�:Sd|Z�!CSOPLH�>:L�:Sd|X�!CSOPLx�>:L�:Sd|Y�!CSOPLؐ>:L�:Sd|Z(!CSOPL8�>:L��:Sd|XW!CSOPLh�>:L��:Sd|Y�!CSOPL��>:L��:Sd|Z�!CSOPL��>:L�ʅ:Sd|X�!CSOPLX�>:L�ʅ:Sd|Y!CSOPL��>:L�ʅ:Sd|ZB!CSOPL�>:Lp��:Sd|Xq!CSOPLȑ>:Lp��:Sd|Y�!CSOPL��>:Lp��:Sd|Z�!CSOPL(�>:L0`�:Sd|X�!CSOPLX�>:L0`�:Sd|Y-!CSOPL��>:L0`�:Sd|Z\!CSOPL�>:L@�:Sd|X�!CSOPL��>:L@�:Sd|Y�!CSOPL�>:L@�:Sd|Z�!CSOPLH�>:LP��:Sd|X	!CSOPLx�>:LP��:Sd|YG	!CSOPL��>:LP��:Sd|Zv	!CSOPLؓ>:L�ͅ:Sd|X�	!CSOPL�>:L�ͅ:Sd|Y�	!CSOPL8�>:L�ͅ:Sd|Z
!CSOPLh�>:L ��:Sd|X2
!CSOPL��>:L ��:Sd|Ya
!CSOPLȔ>:L ��:Sd|Z�
!CSOPL��>:LP4�:Sd|X�
!CSOPL(�>:LP4�:Sd|Y�
!CSOPLX�>:LP4�:Sd|Z!CSOPL��>:L���:Sd|XL!CSOPL��>:L���:Sd|Y{!CSOPL�>:L���:Sd|Z�!CSOPL�>:L�:Sd|X�!CSOPLH�>:L�:Sd|Y!CSOPLx�>:L�:Sd|Z7!CSOPL��>:L�
:Sd|Xf!CSOPLؖ>:L�
:Sd|Y�!CSOPLб9L�
:Sd|Z�!CSOPL@б9L�	:Sd|X�!CSOPLpб9L�	:Sd|Y"
!CSOPLѱ9L�	:Sd|ZQ
!CSOPL�ͱ9L�:Sd|X�
!CSOPL�ͱ9L�:Sd|Y�
!CSOPLα9L�:Sd|Z�
!CSOPL0α9L��:Sd|X
!CSOPL`˱9L��:Sd|Y<!CSOPLP��9L��:Sd|Zk!CSOPL ��9L�:Sd|X�!CSOPL�ɱ9L�:Sd|Y�!CSOPL�ɱ9L�:Sd|Z�!CSOPLʱ9L��:Sd|X'!CSOPLȱ9L��:Sd|YV!CSOPL0ȱ9L��:Sd|Z�!CSOPL`ȱ9L��:Sd|X�!CSOPLPƱ9L��:Sd|Y�!CSOPL�Ʊ9L��:Sd|Z!CSOPL�Ʊ9L��:Sd|XA!CSOPL�ı9L��:Sd|Yp!CSOPL�ı9L��:Sd|Z�!CSOPLű9L��:Sd|X�!CSOPL�˱9L��:Sd|Y�!CSOPL�˱9L��:Sd|Z,!CSOPL�˱9L�:Sd|X[!CSOPL ̱9L�:Sd|Y�!CSOPL�9L�:Sd|Z�!CSOPL���9L��:Sd|X�!CSOPL���9L��:Sd|Y!CSOPL@��9L��:Sd|ZF!CSOPLp��9L��:Sd|Xu!CSOPL���9L��:Sd|Y�!CSOPL���9L��:Sd|Z�!CSOPL���9L�:Sd|X!CSOPL�9L�:Sd|Y1!CSOPL@��9L�:Sd|Z`!CSOPLp��9L�:Sd|X�!CSOPL���9L�:Sd|Y�!CSOPL0��9L�:Sd|Z�!CSOPL���9L��:Sd|X!CSOPL�9L��:Sd|YK!CSOPL���9L��:Sd|Zz!CSOPL��9L�:Sd|X�!CSOPL@��9L�:Sd|Y�!CSOPLp��9L�:Sd|Z!CSOPL���9Lh�:Sd|X6!CSOPLе�9Lh�:Sd|Ye!CSOPL��9Lh�:Sd|Z�!CSOPLp��9L��:Sd|X�!CSOPL@��9L��:Sd|Y�!CSOPL��9L��:Sd|Z!!CSOPL`��9L@�:Sd|XP!CSOPL0��9L@�:Sd|Y!CSOPL���9L@�:Sd|Z�!CSOPL���9L��:Sd|X�!CSOPLP̱9L��:Sd|Y!CSOPL`α9L��:Sd|Z;!CSOPLp��9L�:Sd|Xj!CSOPL�б9L�:Sd|Y�!CSOPL�б9L�:Sd|Z�!CSOPL�ϱ9L:Sd|X�!CSOPL�ϱ9L:Sd|Y&!CSOPL�ϱ9L:Sd|ZU!CSOPLPϱ9L �:Sd|X�!CSOPL ϱ9L �:Sd|Y�!CSOPL�α9L �:Sd|Z�!CSOPL�α9L��:Sd|X!CSOPL�α9L��:Sd|Y@!CSOPLpͱ9L��:Sd|Zo!CSOPL@ͱ9LP�:Sd|X�!CSOPLͱ9LP�:Sd|Y�!CSOPL�̱9LP�:Sd|Z�!CSOPL�̱9L��:Sd|X+!CSOPL�̱9L��:Sd|YZ!CSOPL���9L��:Sd|Z�!CSOPL±9L(�:Sd|X�!CSOPL0˱9L(�:Sd|Y�!CSOPL˱9L(�:Sd|Z!CSOPL�ʱ9L�:Sd|XE!CSOPL�ʱ9L�:Sd|Yt!CSOPLpʱ9L�:Sd|Z�!CSOPL@ʱ9L��:Sd|X�!CSOPL�ɱ9L��:Sd|Y!CSOPLPɱ9L��:Sd|Z0!CSOPL ɱ9LH�:Sd|X_!CSOPL�ȱ9LH�:Sd|Y�!CSOPL�ȱ9LH�:Sd|Z�!CSOPL�ȱ9L��:Sd|X�!CSOPL�DZ9L��:Sd|Y!CSOPL�DZ9L��:Sd|ZJ!CSOPLpDZ9L��:Sd|Xy!CSOPL@DZ9L��:Sd|Y�!CSOPLDZ9L��:Sd|Z�!CSOPL�Ʊ9L��:Sd|X!CSOPL Ʊ9L��:Sd|Y5!CSOPL�ű9L��:Sd|Zd!CSOPL�ű9L�{:Sd|X�!CSOPL�ű9L�{:Sd|Y�!CSOPL`ű9L�{:Sd|Z�!CSOPL0ű9L�z:Sd|X !CSOPLpı9L�z:Sd|YO!CSOPL@ı9L�z:Sd|Z~!CSOPLı9L:Sd|X�!CSOPL�ñ9L:Sd|Y�!CSOPLPñ9L:Sd|Z !CSOPL�ñ9L��:Sd|X: !CSOPL�ñ9L��:Sd|Yi !CSOPL ñ9L��:Sd|Z� !CSOPL�±9LHm:Sd|X� !CSOPL�±9LHm:Sd|Y� !CSOPL�±9LHm:Sd|Z%!!CSOPL`±9L�k:Sd|XT!!CSOPL0±9L�k:Sd|Y�!!CSOPL���9L�k:Sd|Z�!!CSOPL���9Lxj:Sd|X�!!CSOPL`��9Lxj:Sd|Y"!CSOPL0��9Lxj:Sd|Z?"!CSOPL��9L�i:Sd|Xn"!CSOPLо�9L�i:Sd|Y�"!CSOPL��9L�i:Sd|Z�"!CSOPL���9L��:Sd|X�"!CSOPLP��9L��:Sd|Y*#!CSOPL ��9L��:Sd|ZY#!CSOPL`��9L�:Sd|X�#!CSOPL0��9L�:Sd|Y�#!CSOPL��9L�:Sd|Z�#!CSOPLл�9L�d:Sd|X$!CSOPL���9L�d:Sd|YD$!CSOPL`��9L�d:Sd|Zs$!CSOPL��9Ld:Sd|X�$!CSOPLັ9Ld:Sd|Y�$!CSOPL���9Ld:Sd|Z%!CSOPL���9L��:Sd|X/%!CSOPLཱ9L��:Sd|Y^%!CSOPL���9L��:Sd|Z�%!CSOPLP��9LPY:Sd|X�%!CSOPL ��9LPY:Sd|Y�%!CSOPL��9LPY:Sd|Z&!CSOPLи�9L8V:Sd|XI&!CSOPL���9L8V:Sd|Yx&!CSOPLp��9L8V:Sd|Z�&!CSOPL෱9L S:Sd|X�&!CSOPL��9L S:Sd|Y'!CSOPL@��9L S:Sd|Z4'!CSOPL���9LP:Sd|Xc'!CSOPL���9LP:Sd|Y�'!CSOPLP��9LP:Sd|Z�'!CSOPL ��9L�L:Sd|X�'!CSOPL�9L�L:Sd|Y(!CSOPL���9L�L:Sd|ZN(!CSOPL�ұ9L�I:Sd|X}(!CSOPL�ұ9L�I:Sd|Y�(!CSOPL�ұ9L�I:Sd|Z�(!CSOPLPұ9L�F:Sd|X
)!CSOPL ұ9L�F:Sd|Y9)!CSOPL�ѱ9L�F:Sd|Zh)!CSOPL���9L�C:Sd|X�)!CSOPL���9L�C:Sd|Y�)!CSOPLറ9L�C:Sd|Z�)!CSOPLP��9L<:Sd|X$*!CSOPL ��9L<:Sd|YS*!CSOPL���9L<:Sd|Z�*!CSOPL�9L�8:Sd|X�*!CSOPL���9L�8:Sd|Y�*!CSOPL`��9L�8:Sd|Z+!CSOPL0��9L�5:Sd|X>+!CSOPLв�9L�5:Sd|Ym+!CSOPL��9L�5:Sd|Z�+!CSOPL���9L�2:Sd|X�+!CSOPL`ѱ9L�2:Sd|Y�+!CSOPL0ѱ9L�2:Sd|Z),!CSOPL@��9L�/:Sd|XX,!CSOPL��9L�/:Sd|Y�,!CSOPL�9L�/:Sd|Z�,!CSOPL0�9L�A:Sd|X�,!CSOPL`�9L�A:Sd|Y-!CSOPL��9L�A:Sd|ZC-!CSOPL@�9L.:Sd|Xr-!CSOPLp�9L.:Sd|Y�-!CSOPL��9L.:Sd|Z�-!CSOPL��9L0+:Sd|X�-!CSOPL��9L0+:Sd|Y..!CSOPL��9L0+:Sd|Z].!CSOPL��9L�':Sd|X�.!CSOPL�9L�':Sd|Y�.!CSOPLp�9L�':Sd|Z�.!CSOPLpv�9L�$:Sd|X/!CSOPL@v�9L�$:Sd|YH/!CSOPLv�9L�$:Sd|Zw/!CSOPL�u�9L�]:Sd|X�/!CSOPL0w�9L�]:Sd|Y�/!CSOPLw�9L�]:Sd|Z0!CSOPL�v�9L[:Sd|X30!CSOPL�v�9L[:Sd|Yb0!CSOPL�w�9L[:Sd|Z�0!CSOPL�w�9L�_:Sd|X�0!CSOPL�w�9L�_:Sd|Y�0!CSOPL`w�9L�_:Sd|Z1!CSOPL}�9Lh�:Sd|XM1!CSOPL�}�9Lh�:Sd|Y|1!CSOPL�}�9Lh�:Sd|Z�1!CSOPL`}�9L:Sd|X�1!CSOPL0}�9L:Sd|Y	2!CSOPL�~�9L:Sd|Z82!CSOPL�ѱ9L�:Sd|Xg2!CSOPL�ѱ9L�:Sd|Y�2!CSOPLP~�9L�:Sd|Z�2!CSOPL ~�9L�:Sd|X�2!CSOPL�}�9L�:Sd|Y#3!CSOPL@�9L�:Sd|ZR3!CSOPL�9L��:Sd|X�3!CSOPL�~�9L��:Sd|Y�3!CSOPL�~�9L��:Sd|Z�3!CSOPL��9L0�:Sd|X4!CSOPLP{�9L0�:Sd|Y=4!CSOPL {�9L0�:Sd|Zl4!CSOPL�z�9L�:Sd|X�4!CSOPL�z�9L�:Sd|Y�4!CSOPL|�9L�:Sd|Z�4!CSOPL�{�9L�!�9Sd|X(5!CSOPL�{�9L�!�9Sd|YW5!CSOPL�{�9L�!�9Sd|Z�5!CSOPL�|�9L�$�9Sd|X�5!CSOPL�|�9L�$�9Sd|Y�5!CSOPLp|�9L�$�9Sd|Z6!CSOPL@|�9L�'�9Sd|XB6!CSOPLЂ�9L�'�9Sd|Yq6!CSOPL�x�9L�'�9Sd|Z�6!CSOPL�x�9L�*�9Sd|X�6!CSOPL�x�9L�*�9Sd|Y�6!CSOPLPx�9L�*�9Sd|Z-7!CSOPL�y�9L.�9Sd|X\7!CSOPLpy�9L.�9Sd|Y�7!CSOPL@y�9L.�9Sd|Z�7!CSOPLy�9L 1�9Sd|X�7!CSOPL`z�9L 1�9Sd|Y8!CSOPL0z�9L 1�9Sd|ZG8!CSOPLz�9L84�9Sd|Xv8!CSOPL�y�9L84�9Sd|Y�8!CSOPLp�9L84�9Sd|Z�8!CSOPL�q�9LP7�9Sd|X9!CSOPL`q�9LP7�9Sd|Y29!CSOPL0q�9LP7�9Sd|Za9!CSOPLq�9Lh:�9Sd|X�9!CSOPLPr�9Lh:�9Sd|Y�9!CSOPL r�9Lh:�9Sd|Z�9!CSOPL�q�9L�=�9Sd|X:!CSOPL�q�9L�=�9Sd|YL:!CSOPLs�9L�=�9Sd|Z{:!CSOPL�r�9L��9Sd|X�:!CSOPL�r�9L��9Sd|Y�:!CSOPL�r�9L��9Sd|Z;!CSOPL x�9L(��9Sd|X7;!CSOPL`��9L(��9Sd|Yf;!CSOPL0��9L(��9Sd|Z�;!CSOPL��9L@��9Sd|X�;!CSOPLУ�9L@��9Sd|Y�;!CSOPL ��9L@��9Sd|Z"<!CSOPL�9LX��9Sd|XQ<!CSOPL���9LX��9Sd|Y�<!CSOPL���9LX��9Sd|Z�<!CSOPLॱ9Lp��9Sd|X�<!CSOPL���9Lp��9Sd|Y
=!CSOPL���9Lp��9Sd|Z<=!CSOPLP��9L���9Sd|Xk=!CSOPL@��9L���9Sd|Y�=!CSOPL�9L���9Sd|Z�=!CSOPL���9L���9Sd|X�=!CSOPL���9L���9Sd|Y'>!CSOPL`��9L���9Sd|ZV>!CSOPL���9L���9Sd|X�>!CSOPL���9L���9Sd|Y�>!CSOPLP��9L���9Sd|Z�>!CSOPL ��9L���9Sd|X?!CSOPLp��9L���9Sd|YA?!CSOPL@��9L���9Sd|Zp?!CSOPL��9L���9Sd|X�?!CSOPLࢱ9L���9Sd|Y�?!CSOPLp��9L���9Sd|Z�?!CSOPL���9L��9Sd|X,@!CSOPLP��9L��9Sd|Y[@!CSOPL ��9L��9Sd|Z�@!CSOPL�9L��9Sd|X�@!CSOPL@��9L��9Sd|Y�@!CSOPL��9L��9Sd|ZA!CSOPL���9L0��9Sd|XFA!CSOPL���9L0��9Sd|YuA!CSOPL��9L0��9Sd|Z�A!CSOPLР�9LH��9Sd|X�A!CSOPL���9LH��9Sd|YB!CSOPLp��9LH��9Sd|Z1B!CSOPL��9L`��9Sd|X`B!CSOPLP��9L`��9Sd|Y�B!CSOPL���9L`��9Sd|Z�B!CSOPL���9Lx��9Sd|X�B!CSOPL���9Lx��9Sd|YC!CSOPL���9Lx��9Sd|ZKC!CSOPL���9L���9Sd|XzC!CSOPL���9L���9Sd|Y�C!CSOPL ��9L���9Sd|Z�C!CSOPL���9L���9Sd|XD!CSOPL��9L���9Sd|Y6D!CSOPL0��9L���9Sd|ZeD!CSOPL`��9L��9Sd|X�D!CSOPL���9L��9Sd|Y�D!CSOPL��9L��9Sd|Z�D!CSOPL���9L��9Sd|X!E!CSOPL���9L��9Sd|YPE!CSOPL���9L��9Sd|ZE!CSOPLБ�9L��9Sd|X�E!CSOPL���9L��9Sd|Y�E!CSOPLp��9L��9Sd|ZF!CSOPL@��9L��9Sd|X;F!CSOPL���9L��9Sd|YjF!CSOPL`��9L��9Sd|Z�F!CSOPL0��9L�9Sd|X�F!CSOPL��9L�9Sd|Y�F!CSOPL�9L�9Sd|Z&G!CSOPL���9L�9Sd|XUG!CSOPLp��9L�9Sd|Y�G!CSOPL@��9L�9Sd|Z�G!CSOPL��9L0�9Sd|X�G!CSOPL`��9L0�9Sd|YH!CSOPL0��9L0�9Sd|Z@H!CSOPL��9LH �9Sd|XoH!CSOPLЎ�9LH �9Sd|Y�H!CSOPL ��9LH �9Sd|Z�H!CSOPL���9L`#�9Sd|X�H!CSOPL���9L`#�9Sd|Y+I!CSOPL���9L`#�9Sd|ZZI!CSOPL ��9Lx&�9Sd|X�I!CSOPL0��9Lx&�9Sd|Y�I!CSOPL��9Lx&�9Sd|Z�I!CSOPLЋ�9L�)�9Sd|XJ!CSOPL���9L�)�9Sd|YEJ!CSOPL���9L�)�9Sd|ZtJ!CSOPL���9L�,�9Sd|X�J!CSOPL���9L�,�9Sd|Y�J!CSOPL`��9L�,�9Sd|ZK!CSOPL���9L�/�9Sd|X0K!CSOPL���9L�/�9Sd|Y_K!CSOPLP��9L�/�9Sd|Z�K!CSOPL ��9L�2�9Sd|X�K!CSOPL���9L�2�9Sd|Y�K!CSOPL��9L�2�9Sd|ZL!CSOPL��9L�5�9Sd|XJL!CSOPL �9L�5�9Sd|YyL!CSOPLP�9L�5�9Sd|Z�L!CSOPL�9L9�9Sd|X�L!CSOPL0�9L9�9Sd|YM!CSOPL`�9L9�9Sd|Z5M!CSOPL��9L <�9Sd|XdM!CSOPL@�9L <�9Sd|Y�M!CSOPLp�9L <�9Sd|Z�M!CSOPL��9L8?�9Sd|X�M!CSOPL��9L8?�9Sd|Y N!CSOPL0��9L8?�9Sd|ZON!CSOPLt�9LPB�9Sd|X~N!CSOPL�s�9LPB�9Sd|Y�N!CSOPL�s�9LPB�9Sd|Z�N!CSOPLps�9LhE�9Sd|XO!CSOPL�t�9LhE�9Sd|Y:O!CSOPL�t�9LhE�9Sd|ZiO!CSOPL`t�9L�H�9Sd|X�O!CSOPL0t�9L�H�9Sd|Y�O!CSOPL�u�9L�H�9Sd|Z�O!CSOPLPu�9L�K�9Sd|X%P!CSOPL u�9L�K�9Sd|YTP!CSOPL�t�9L�K�9Sd|Z�P!CSOPL�z�9L�N�9Sd|X�P!CSOPL o�9L�N�9Sd|Y�P!CSOPL�n�9L�N�9Sd|ZQ!CSOPL�n�9L���9Sd|X?Q!CSOPL�n�9L���9Sd|YnQ!CSOPL�o�9L���9Sd|Z�Q!CSOPL�o�9L�9Sd|X�Q!CSOPL�o�9L�9Sd|Y�Q!CSOPLPo�9L�9Sd|Z*R!CSOPL�p�9L(�9Sd|XYR!CSOPLpp�9L(�9Sd|Y�R!CSOPL@p�9L(�9Sd|Z�R!CSOPLp�9L@	�9Sd|X�R!CSOPL�u�9L@	�9Sd|YS!CSOPLp��9L@	�9Sd|ZDS!CSOPL���9LX�9Sd|XsS!CSOPL���9LX�9Sd|Y�S!CSOPL��9LX�9Sd|Z�S!CSOPL���9Lp�9Sd|XT!CSOPL���9Lp�9Sd|Y/T!CSOPL��9Lp�9Sd|Z^T!CSOPL@��9L��9Sd|X�T!CSOPL���9L��9Sd|Y�T!CSOPL ��9L��9Sd|Z�T!CSOPLP��9L��9Sd|XU!CSOPL���9L��9Sd|YIU!CSOPL���9L��9Sd|ZxU!CSOPL���9L��9Sd|X�U!CSOPL��9L��9Sd|Y�U!CSOPL@��9L��9Sd|ZV!CSOPLp��9L��9Sd|X4V!CSOPL ��9L��9Sd|YcV!CSOPLP��9L��9Sd|Z�V!CSOPL���9L��9Sd|X�V!CSOPL���9L��9Sd|Y�V!CSOPL`��9L��9Sd|ZW!CSOPL���9L"�9Sd|XNW!CSOPL���9L"�9Sd|Y}W!CSOPL���9L"�9Sd|Z�W!CSOPL`��9L%�9Sd|X�W!CSOPL0�9L%�9Sd|Y
X!CSOPL`�9L%�9Sd|Z9X!CSOPL��9L0(�9Sd|XhX!CSOPL��9L0(�9Sd|Y�X!CSOPLp�9L0(�9Sd|Z�X!CSOPL��9LH+�9Sd|X�X!CSOPL��9LH+�9Sd|Y$Y!CSOPL�9LH+�9Sd|ZSY!CSOPL��9L`.�9Sd|X�Y!CSOPL��9L`.�9Sd|Y�Y!CSOPL�9L`.�9Sd|Z�Y!CSOPL@�9Lx1�9Sd|XZ!CSOPL���9Lx1�9Sd|Y>Z!CSOPL@߱9Lx1�9Sd|ZmZ!CSOPLp߱9L�4�9Sd|X�Z!CSOPL�߱9L�4�9Sd|Y�Z!CSOPL�߱9L�4�9Sd|Z�Z!CSOPL�ޱ9L�7�9Sd|X)[!CSOPL�ޱ9L�7�9Sd|YX[!CSOPL�ޱ9L�7�9Sd|Z�[!CSOPL߱9L�:�9Sd|X�[!CSOPL�ݱ9L�:�9Sd|Y�[!CSOPL�ݱ9L�:�9Sd|Z\!CSOPL ޱ9L�=�9Sd|XC\!CSOPLPޱ9L�=�9Sd|Yr\!CSOPL�ر9L�=�9Sd|Z�\!CSOPL�ױ9L�}:Sd|X�\!CSOPL ر9L�}:Sd|Y�\!CSOPLPر9L�}:Sd|Z.]!CSOPL�ر9L0�}:Sd|X]]!CSOPL0ױ9L0�}:Sd|Y�]!CSOPL`ױ9L0�}:Sd|Z�]!CSOPL�ױ9LH�}:Sd|X�]!CSOPL�ױ9LH�}:Sd|Y^!CSOPLpֱ9LH�}:Sd|ZH^!CSOPL�ֱ9L`�}:Sd|Xw^!CSOPL�ֱ9L`�}:Sd|Y�^!CSOPLױ9L`�}:Sd|Z�^!CSOPLֱ9Lx�}:Sd|X_!CSOPL`ڱ9Lx�}:Sd|Y3_!CSOPL�ڱ9Lx�}:Sd|Zb_!CSOPL�ڱ9L��}:Sd|X�_!CSOPL�ڱ9L��}:Sd|Y�_!CSOPL�ٱ9L��}:Sd|Z�_!CSOPL�ٱ9L��}:Sd|X`!CSOPLڱ9L��}:Sd|YM`!CSOPL0ڱ9L��}:Sd|Z|`!CSOPL�ر9L��}:Sd|X�`!CSOPLٱ9L��}:Sd|Y�`!CSOPL@ٱ9L��}:Sd|Z	a!CSOPLpٱ9L��}:Sd|X8a!CSOPL
�9L��}:Sd|Yga!CSOPL�ܱ9L��}:Sd|Z�a!CSOPLݱ9L��}:Sd|X�a!CSOPL0ݱ9L��}:Sd|Y�a!CSOPL`ݱ9L��}:Sd|Z#b!CSOPLܱ9L�}:Sd|XRb!CSOPL@ܱ9L�}:Sd|Y�b!CSOPLpܱ9L�}:Sd|Z�b!CSOPL�ܱ9L �}:Sd|X�b!CSOPLP۱9L �}:Sd|Yc!CSOPL�۱9L �}:Sd|Z=c!CSOPL�۱9L8�}:Sd|Xlc!CSOPL�۱9L8�}:Sd|Y�c!CSOPL@ֱ9L8�}:Sd|Z�c!CSOPL �9LP~:Sd|X�c!CSOPLP�9LP~:Sd|Y(d!CSOPL��9LP~:Sd|ZWd!CSOPL��9Lh~:Sd|X�d!CSOPL`�9Lh~:Sd|Y�d!CSOPL��9Lh~:Sd|Z�d!CSOPL��9L�~:Sd|Xe!CSOPL��9L�~:Sd|YBe!CSOPL��9L�~:Sd|Zqe!CSOPL��9L�
~:Sd|X�e!CSOPL�9L�
~:Sd|Y�e!CSOPL0�9L�
~:Sd|Z�e!CSOPL�ݱ9L�
~:Sd|X-f!CSOPL�>�9L�
~:Sd|Y\f!CSOPL�>�9L�
~:Sd|Z�f!CSOPL�>�9L�~:Sd|X�f!CSOPL`>�9L�~:Sd|Y�f!CSOPL�?�9L�~:Sd|Zg!CSOPL�?�9L�~:Sd|XGg!CSOPLP?�9L�~:Sd|Yvg!CSOPL ?�9L�~:Sd|Z�g!CSOPLp@�9L �:Sd|X�g!CSOPL@@�9L �:Sd|Yh!CSOPL@�9L �:Sd|Z2h!CSOPL�?�9L8�:Sd|Xah!CSOPL�@�9L8�:Sd|Y�h!CSOPL�<�9L8�:Sd|Z�h!CSOPLP<�9LP�:Sd|X�h!CSOPL <�9LP�:Sd|Yi!CSOPL�;�9LP�:Sd|ZLi!CSOPL@=�9Lh�:Sd|X{i!CSOPL=�9Lh�:Sd|Y�i!CSOPL�<�9Lh�:Sd|Z�i!CSOPL�<�9L��:Sd|Xj!CSOPL>�9L��:Sd|Y7j!CSOPL�=�9L��:Sd|Zfj!CSOPL�=�9L��:Sd|X�j!CSOPLp=�9L��:Sd|Y�j!CSOPLD�9L��:Sd|Z�j!CSOPL:�9L��:Sd|X"k!CSOPL�9�9L��:Sd|YQk!CSOPL�9�9L��:Sd|Z�k!CSOPL�9�9L��:Sd|X�k!CSOPL�:�9L��:Sd|Y�k!CSOPL�:�9L��:Sd|Z
l!CSOPLp:�9L��:Sd|X<l!CSOPL@:�9L��:Sd|Ykl!CSOPL�;�9L��:Sd|Z�l!CSOPL`;�9L��:Sd|X�l!CSOPL0;�9L��:Sd|Y�l!CSOPL;�9L��:Sd|Z'm!CSOPL�@�9L!�:Sd|XVm!CSOPL@R�9L!�:Sd|Y�m!CSOPLR�9L!�:Sd|Z�m!CSOPL�Q�9L($�:Sd|X�m!CSOPL�Q�9L($�:Sd|Yn!CSOPLS�9L($�:Sd|ZAn!CSOPL�R�9L@'�:Sd|Xpn!CSOPL�R�9L@'�:Sd|Y�n!CSOPLpR�9L@'�:Sd|Z�n!CSOPL�S�9LX*�:Sd|X�n!CSOPL�S�9LX*�:Sd|Y,o!CSOPL`S�9LX*�:Sd|Z[o!CSOPL0S�9Lp-�:Sd|X�o!CSOPL T�9Lp-�:Sd|Y�o!CSOPL�O�9Lp-�:Sd|Z�o!CSOPL�O�9L�0�:Sd|Xp!CSOPLpO�9L�0�:Sd|YFp!CSOPL@O�9L�0�:Sd|Zup!CSOPL�P�9L�3�:Sd|X�p!CSOPL`P�9L�3�:Sd|Y�p!CSOPL0P�9L�3�:Sd|Zq!CSOPLP�9L�6�:Sd|X1q!CSOPLPQ�9L�6�:Sd|Y`q!CSOPL Q�9L�6�:Sd|Z�q!CSOPL�P�9L�9�:Sd|X�q!CSOPL�P�9L�9�:Sd|Y�q!CSOPLPW�9L�9�:Sd|Zr!CSOPL`M�9L�<�:Sd|XKr!CSOPL0M�9L�<�:Sd|Yzr!CSOPLM�9L�<�:Sd|Z�r!CSOPL�L�9L@�:Sd|X�r!CSOPL N�9L@�:Sd|Ys!CSOPL�M�9L@�:Sd|Z6s!CSOPL�M�9L(Rt:Sd|Xes!CSOPL�M�9L(Rt:Sd|Y�s!CSOPL�N�9L(Rt:Sd|Z�s!CSOPL�N�9L@Ut:Sd|X�s!CSOPL�N�9L@Ut:Sd|Y!t!CSOPLPN�9L@Ut:Sd|ZPt!CSOPL�S�9LXXt:Sd|Xt!CSOPL�+�9LXXt:Sd|Y�t!CSOPLp+�9LXXt:Sd|Z�t!CSOPL@+�9Lp[t:Sd|Xu!CSOPL+�9Lp[t:Sd|Y;u!CSOPL`,�9Lp[t:Sd|ZJwTakes�u1CurrentS,_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1�v1TakeS,_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1+v5FileNameS0_17_a_U1_M_P_JogSlide_ToRight_R_Fb_p0_No_0_1.takSv	LocalTimeL�NY^QL�T��qv
ReferenceTimeL�NY^QL�T��q=wTakeSAvatar_TStance�vFileNameSAvatar_TStance.takw	LocalTimeLLp6��50w
ReferenceTimeLLp6��5������i�~��#|��Z�j���~���u�)

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

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