Skip to content
Snippets Groups Projects
intro.js 85 KiB
Newer Older
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


(lib.arrow2svg = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = {};
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);

	// svg5
	this.shape = new cjs.Shape();
	this.shape.graphics.f().s("#000000").ss(3.9,0,0,11.3).p("AoWhYIIMtBIIhMzImFgCIAaQSIlEgBIgCwPg");
	this.shape.setTransform(57.1197,95.7601);

	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#165016").s().p("AiYOhIgBwPIl9AOIIMtBIIhMzImFgCIAaQSg");
	this.shape_1.setTransform(57.1,96.575);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_1},{t:this.shape}]}).wait(1));

	this._renderFirstFrame();

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(0,0.1,114.2,191.4);


(lib.chmpsvg = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = true; }
if (reversed == null) { reversed = false; }
	var props = {};
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);

	// chmp_svg
	this.instance = new lib.text10813();
	this.instance.setTransform(21.3,214.3,1,1,0,0,0,11.3,3.9);

	this.shape = new cjs.Shape();
	this.shape.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AiAhBIECAAIAACDIkCAAg");
	this.shape.setTransform(21.6,214.25);

	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#B7C4C8").s().p("AiBBCIAAiDIEDAAIAACDg");
	this.shape_1.setTransform(21.6,214.25);

	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AjSiAIGlAAIAAECImlAAg");
	this.shape_2.setTransform(21.625,213.45);

	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#AC939D").s().p("AjSCCIAAkCIGlAAIAAECg");
	this.shape_3.setTransform(21.625,213.45);

	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AhaDAQgLgOgCgGQgDgLAPgNIAoAAIAZhgIg0ABQgNgMALgPIA4gBQg5ghgdg5Qggg7AKhCIELgBQADBHgPApQgVA9hDAqIA7AAQAGAKgCAGQAAAEgFAHIg5AAIAeBgIAtABQAQAKgCAMQgBAJgNANg");
	this.shape_4.setTransform(20.2333,181.2238);

	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#C8AB37").s().p("AhaDAQgLgOgCgGQgDgLAPgNIAoAAIAZhgIg0ABQgNgMALgPIA4gBQg5ghgdg5Qggg7AKhCIELgBQADBHgPApQgVA9hDAqIA7AAQAGAKgCAGQAAAEgFAHIg5AAIAeBgIAtABQAQAKgCAMQgBAJgNANg");
	this.shape_5.setTransform(20.2333,181.225);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_5},{t:this.shape_4},{t:this.shape_3},{t:this.shape_2},{t:this.shape_1},{t:this.shape},{t:this.instance}]}).wait(1));

	this._renderFirstFrame();

}).prototype = p = new cjs.MovieClip();
p.nominalBounds = new cjs.Rectangle(-0.4,160.6,44.1,66.80000000000001);


// stage content:
(lib.intro = function(mode,startPosition,loop,reversed) {
if (loop == null) { loop = false; }
if (reversed == null) { reversed = false; }
	var props = {};
	props.mode = mode;
	props.startPosition = startPosition;
	props.labels = {};
	props.loop = loop;
	props.reversed = reversed;
	cjs.MovieClip.apply(this,[props]);

	// barette
	this.shape = new cjs.Shape();
	this.shape.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXQDjAOAIAAQAMABkMAZQjkAWg9AEQg9ADkyAGItvATQloAIgkABQgoABACgBg");
	this.shape.setTransform(401.2017,151.8094,2.355,2.4321,0.4501);

	this.shape_1 = new cjs.Shape();
	this.shape_1.graphics.f("#D35F5F").s().p("AxYBFQAIgDBCgSQBBgRAbgGQBjgWB7gSQB7gTBugLQCOgOBygFQBzgFCiAAQC3AACMAGQCPAGFyAXIDrAOQAMABkMAZQjkAWg9AEQg9ADkyAGItvATImMAJIgeABIgIgBg");
	this.shape_1.setTransform(401.2017,151.8094,2.355,2.4321,0.4501);

	this.shape_2 = new cjs.Shape();
	this.shape_2.graphics.f().s("#D35F5F").ss(0.1,0,0,4).p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFQgrgDjJgMQkpgTiTgHQiXgHiegCQpDgHnTBjQgxAKgEABQgFAAgCgKg");
	this.shape_2.setTransform(422.9056,88.6918,2.355,2.4321,0.4501);

	this.shape_3 = new cjs.Shape();
	this.shape_3.graphics.f("#D35F5F").s().p("Aw9EJQgDgRgRgZQgRgZgqgwQgsgygRgaQgSgZgDgSQgCgRAZgUQBXhKEGhFQEHhFE/giQBtgLB1gHQA3gDChAAQCkgBAuAEQEWATDFA1QDrA/CTBrQAXARAEAIQAFAHgDAPQgFAdgjA1QgkA2gzA4IgPAQIhWgFIj0gPQkpgTiTgHQiXgHiegCQpDgHnTBjIg1ALQgFAAgCgKg");
	this.shape_3.setTransform(422.9056,88.6918,2.355,2.4321,0.4501);

	this.shape_4 = new cjs.Shape();
	this.shape_4.graphics.f().s("#D35F5F").ss(0.3,0,0,4).p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQglAIgXgMg");
	this.shape_4.setTransform(423.58,10.08,2.355,2.4321,0.4501);

	this.shape_5 = new cjs.Shape();
	this.shape_5.graphics.f("#D35F5F").s().p("AglAVQgdgPAOgQQAOgRAnAAQAVAAAQAIQARAIACALQAEARgmAIQgPADgMAAQgTAAgOgHg");
	this.shape_5.setTransform(423.58,10.08,2.355,2.4321,0.4501);

	this.shape_6 = new cjs.Shape();
	this.shape_6.graphics.f().s("#000000").ss(0.4,0,0,4).p("AAAgoQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMQgVgMAAgRQAAgQAVgMQAVgMAcAAg");
	this.shape_6.setTransform(423.4674,10.0255,2.355,2.4321,0.4501);

	this.shape_7 = new cjs.Shape();
	this.shape_7.graphics.f("#000000").s().p("AgxAdQgVgMAAgRQAAgQAVgMQAVgMAcAAQAdAAAVAMQAVAMAAAQQAAARgVAMQgVAMgdAAQgcAAgVgMg");
	this.shape_7.setTransform(423.4674,10.0255,2.355,2.4321,0.4501);

	this.shape_8 = new cjs.Shape();
	this.shape_8.graphics.f().s("#000000").ss(0.4,0,0,4).p("AxLA2QH6hyJsAHQDcADE/ATQCyALFlAV");
	this.shape_8.setTransform(422.5583,145.7615,2.3547,2.4317,0.4491);

	this.shape_9 = new cjs.Shape();
	this.shape_9.graphics.f("#000000").s().p("AAag1QDcADFAATIIWAgMgiXAA1QH6hyJrAHg");
	this.shape_9.setTransform(422.6528,145.7775,2.3547,2.4317,0.4491);

	this.shape_10 = new cjs.Shape();
	this.shape_10.graphics.f().s("#000000").ss(0.4,0,0,4).p("AvWgFIjGA1IbrgmIJig6");
	this.shape_10.setTransform(397.6793,159.7833,2.3547,2.4317,0.4491);

	this.shape_11 = new cjs.Shape();
	this.shape_11.graphics.f("#000000").s().p("AvggFMAiHgAqIpiA5I7rAng");
	this.shape_11.setTransform(399.997,159.7484,2.3547,2.4317,0.4491);

	this.shape_12 = new cjs.Shape();
	this.shape_12.graphics.f().s("#000000").ss(0.4,0,0,4).p("ARMDyIBghyQBZh4gogfQjbiumfg9Qljg1m4AjQmEAfk8BVQkzBSg3BSQgQAWAcAsQAQAaAzA6QAyA4AOAYQAYAngUAS");
	this.shape_12.setTransform(422.9599,89.5412,2.3547,2.4317,0.4491);

	this.shape_13 = new cjs.Shape();
	this.shape_13.graphics.f("#000000").s().p("AxTDqQgOgYgyg4Qgzg6gQgaQgcgrAQgYQA3hQEzhSQE8hWGEgeQG4gkFjA1QGfA+DbCtQAoAfhZB4IhgByMgibAAxQAUgRgYgog");
	this.shape_13.setTransform(422.9599,89.5412,2.3547,2.4317,0.4491);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_13,p:{scaleX:2.3547,scaleY:2.4317,rotation:0.4491,x:422.9599,y:89.5412}},{t:this.shape_12,p:{scaleX:2.3547,scaleY:2.4317,rotation:0.4491,x:422.9599,y:89.5412}},{t:this.shape_11,p:{scaleX:2.3547,scaleY:2.4317,rotation:0.4491,x:399.997,y:159.7484}},{t:this.shape_10,p:{scaleX:2.3547,scaleY:2.4317,rotation:0.4491,x:397.6793,y:159.7833}},{t:this.shape_9,p:{scaleX:2.3547,scaleY:2.4317,rotation:0.4491,x:422.6528,y:145.7775}},{t:this.shape_8,p:{scaleX:2.3547,scaleY:2.4317,rotation:0.4491,x:422.5583,y:145.7615}},{t:this.shape_7,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:423.4674,y:10.0255}},{t:this.shape_6,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:423.4674,y:10.0255}},{t:this.shape_5,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:423.58,y:10.08}},{t:this.shape_4,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:423.58,y:10.08}},{t:this.shape_3,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:422.9056,y:88.6918}},{t:this.shape_2,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:422.9056,y:88.6918}},{t:this.shape_1,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:401.2017,y:151.8094}},{t:this.shape,p:{scaleX:2.355,scaleY:2.4321,rotation:0.4501,x:401.2017,y:151.8094}}]},518).to({state:[{t:this.shape_13,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.9169,y:89.5294}},{t:this.shape_12,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.9169,y:89.5294}},{t:this.shape_11,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:399.9524,y:159.7273}},{t:this.shape_10,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:397.6349,y:159.7622}},{t:this.shape_9,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.6063,y:145.7582}},{t:this.shape_8,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.5118,y:145.7422}},{t:this.shape_7,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.4494,y:10.0323}},{t:this.shape_6,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.4494,y:10.0323}},{t:this.shape_5,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.562,y:10.0868}},{t:this.shape_4,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.562,y:10.0868}},{t:this.shape_3,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:422.8851,y:88.6912}},{t:this.shape_2,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:422.8851,y:88.6912}},{t:this.shape_1,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:401.1805,y:151.8024}},{t:this.shape,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:401.1805,y:151.8024}}]},56).to({state:[{t:this.shape_13,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.9169,y:89.5294}},{t:this.shape_12,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.9169,y:89.5294}},{t:this.shape_11,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:399.9524,y:159.7273}},{t:this.shape_10,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:397.6349,y:159.7622}},{t:this.shape_9,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.6063,y:145.7582}},{t:this.shape_8,p:{scaleX:2.3544,scaleY:2.4314,rotation:0.4527,x:422.5118,y:145.7422}},{t:this.shape_7,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.4494,y:10.0323}},{t:this.shape_6,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.4494,y:10.0323}},{t:this.shape_5,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.562,y:10.0868}},{t:this.shape_4,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.562,y:10.0868}},{t:this.shape_3,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:422.8851,y:88.6912}},{t:this.shape_2,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:422.8851,y:88.6912}},{t:this.shape_1,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:401.1805,y:151.8024}},{t:this.shape,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:401.1805,y:151.8024}}]},25).to({state:[{t:this.shape_13,p:{scaleX:2.354,scaleY:2.4308,rotation:0.4553,x:422.8619,y:89.5321}},{t:this.shape_12,p:{scaleX:2.354,scaleY:2.4308,rotation:0.4553,x:422.8619,y:89.5321}},{t:this.shape_11,p:{scaleX:2.354,scaleY:2.4308,rotation:0.4553,x:399.8981,y:159.7119}},{t:this.shape_10,p:{scaleX:2.354,scaleY:2.4308,rotation:0.4553,x:397.581,y:159.7466}},{t:this.shape_9,p:{scaleX:2.354,scaleY:2.4308,rotation:0.4553,x:422.5488,y:145.7478}},{t:this.shape_8,p:{scaleX:2.354,scaleY:2.4308,rotation:0.4553,x:422.4543,y:145.7318}},{t:this.shape_7,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:423.4215,y:10.0309}},{t:this.shape_6,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:423.4215,y:10.0309}},{t:this.shape_5,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:423.534,y:10.0854}},{t:this.shape_4,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:423.534,y:10.0854}},{t:this.shape_3,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:422.8537,y:88.6789}},{t:this.shape_2,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:422.8537,y:88.6789}},{t:this.shape_1,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:401.1482,y:151.7813}},{t:this.shape,p:{scaleX:2.3547,scaleY:2.4315,rotation:0.4545,x:401.1482,y:151.7813}}]},120).to({state:[{t:this.shape_13,p:{scaleX:2.3542,scaleY:2.4311,rotation:0.4542,x:422.8832,y:89.5327}},{t:this.shape_12,p:{scaleX:2.3542,scaleY:2.4311,rotation:0.4542,x:422.8832,y:89.5327}},{t:this.shape_11,p:{scaleX:2.3542,scaleY:2.4311,rotation:0.4542,x:399.9193,y:159.7197}},{t:this.shape_10,p:{scaleX:2.3542,scaleY:2.4311,rotation:0.4542,x:397.602,y:159.7545}},{t:this.shape_9,p:{scaleX:2.3542,scaleY:2.4311,rotation:0.4542,x:422.5712,y:145.7537}},{t:this.shape_8,p:{scaleX:2.3542,scaleY:2.4311,rotation:0.4542,x:422.4767,y:145.7377}},{t:this.shape_7,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.4494,y:10.0323}},{t:this.shape_6,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.4494,y:10.0323}},{t:this.shape_5,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.562,y:10.0868}},{t:this.shape_4,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:423.562,y:10.0868}},{t:this.shape_3,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:422.8851,y:88.6912}},{t:this.shape_2,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:422.8851,y:88.6912}},{t:this.shape_1,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:401.1805,y:151.8024}},{t:this.shape,p:{scaleX:2.3549,scaleY:2.4319,rotation:0.4519,x:401.1805,y:151.8024}}]},23).wait(1));

	// hair
	this.shape_14 = new cjs.Shape();
	this.shape_14.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AGSmPQi6BfhcAvQilBVh4AzQlTCNlUAZQgQFrgMBsQgdD7hKCFQhRhohAi6QhAi9gXjOQgZjfAhi2QAljMBoh3QDej7F2heQFBhQF8AtQFQAnENB2QEEBxArB1QBCCwgDHLQgDHahNEbQi3iJgujkQgShUgDh2QAAiGgBhAQgEjohLhqQhriWknggg");
	this.shape_14.setTransform(417.8124,285.3098,2.3555,2.4326,0.446);

	this.shape_15 = new cjs.Shape();
	this.shape_15.graphics.f("#502D16").s().p("AxcJnQhAi9gXjOQgZjfAhi2QAljMBoh3QDej7F2heQFBhQF8AtQFQAnENB2QEEBxArB1QBCCwgDHLQgDHahNEbQi3iJgujkQgShUgDh2IgBjGQgEjohLhqQhriWknggIkWCOQilBVh4AzQlTCNlUAZQgQFrgMBsQgdD7hKCFQhRhohAi6g");
	this.shape_15.setTransform(417.8218,284.1068,2.3555,2.4326,0.446);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_15},{t:this.shape_14}]},518).to({state:[{t:this.shape_15},{t:this.shape_14}]},56).to({state:[{t:this.shape_15},{t:this.shape_14}]},25).to({state:[{t:this.shape_15},{t:this.shape_14}]},120).to({state:[{t:this.shape_15},{t:this.shape_14}]},23).wait(1));

	// eyelidsCLOSED
	this.shape_16 = new cjs.Shape();
	this.shape_16.graphics.f().s("#000000").ss(7,1,1).p("AmWBAQFhjlF7C4QAoAUApAZ");
	this.shape_16.setTransform(495.625,332.6342);

	this.shape_17 = new cjs.Shape();
	this.shape_17.graphics.f().s("#000000").ss(7,1,1).p("AmWBAQFhjlF7C4QAoAUApAZ");
	this.shape_17.setTransform(361.7125,331.7842);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[]}).to({state:[{t:this.shape_17},{t:this.shape_16}]},568).to({state:[{t:this.shape_17},{t:this.shape_16}]},31).to({state:[{t:this.shape_17},{t:this.shape_16}]},120).to({state:[]},2).wait(22));

	// eyelidsUP
	this.instance = new lib.Tween37("synched",0);
	this.instance.setTransform(427,261.75);
	this.instance._off = true;

	this.instance_1 = new lib.Tween38("synched",0);
	this.instance_1.setTransform(427,309);
	this.instance_1._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance).wait(558).to({_off:false},0).to({_off:true,y:309},10).wait(175));
	this.timeline.addTween(cjs.Tween.get(this.instance_1).wait(558).to({_off:false},10).wait(31).to({startPosition:0},0).wait(120).to({startPosition:0},0).to({x:421.35,y:254.6},4).to({_off:true},1).wait(19));

	// eyelidsDOWN
	this.instance_2 = new lib.Tween39("synched",0);
	this.instance_2.setTransform(427.25,443.95);
	this.instance_2._off = true;

	this.instance_3 = new lib.Tween40("synched",0);
	this.instance_3.setTransform(427.25,357.8);
	this.instance_3._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_2).wait(558).to({_off:false},0).to({_off:true,y:357.8},10).wait(175));
	this.timeline.addTween(cjs.Tween.get(this.instance_3).wait(558).to({_off:false},10).wait(31).to({startPosition:0},0).wait(120).to({startPosition:0},0).to({y:443.95},4).to({_off:true},1).wait(19));

	// blackHoles
	this.instance_4 = new lib.Tween23("synched",0);
	this.instance_4.setTransform(426.1,328.3,1.3333,1.3333,0,0,0,0.1,0);
	this.instance_4._off = true;

	this.instance_5 = new lib.Tween24("synched",0);
	this.instance_5.setTransform(425.1,383.25,1.3333,1.3333,0,0,0,0.1,0.1);
	this.instance_5._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_4).wait(144).to({_off:false},0).to({_off:true,regY:0.1,x:425.1,y:383.25},30).wait(569));
	this.timeline.addTween(cjs.Tween.get(this.instance_5).wait(144).to({_off:false},30).wait(89).to({startPosition:0},0).to({y:347.3},9).wait(39).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(240).to({startPosition:0},0).wait(25).to({startPosition:0},0).wait(120).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(1));

	// pupils
	this.instance_6 = new lib.Tween25("synched",0);
	this.instance_6.setTransform(425.95,333.9,1.3333,1.3333,0,0,0,0.1,0.1);
	this.instance_6._off = true;

	this.instance_7 = new lib.Tween26("synched",0);
	this.instance_7.setTransform(425.95,372.1,1.3333,1.3333,0,0,0,0.1,0);
	this.instance_7._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_6).wait(144).to({_off:false},0).to({_off:true,regY:0,y:372.1},30).wait(569));
	this.timeline.addTween(cjs.Tween.get(this.instance_7).wait(144).to({_off:false},30).wait(89).to({startPosition:0},0).to({regY:0.1,y:343.55},9).wait(39).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(240).to({startPosition:0},0).wait(25).to({startPosition:0},0).wait(120).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(1));

	// teardrop
	this.instance_8 = new lib.teardropsvg("synched",0);
	this.instance_8.setTransform(588.6,241.6,1,1,0,0,0,47.1,68.3);
	this.instance_8.alpha = 0;
	this.instance_8._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_8).wait(200).to({_off:false},0).to({alpha:1},13).wait(50).to({startPosition:0},0).to({alpha:0},4).to({_off:true},1).wait(475));

	// eyes
	this.instance_9 = new lib.Tween22("synched",0);
	this.instance_9.setTransform(425.4,330.45,1.3333,1.3333);
	this.instance_9._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_9).wait(144).to({_off:false},0).to({regX:0.1,regY:0.1,x:425.55,y:350.2},30).wait(84).to({startPosition:0},0).wait(5).to({startPosition:0},0).to({y:338.7},9).wait(39).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(240).to({startPosition:0},0).wait(25).to({startPosition:0},0).wait(120).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(1));

	// head
	this.instance_10 = new lib.Tween13("synched",0);
	this.instance_10.setTransform(416.3,494.5,2.3555,2.4326,0,0,0,0,101.4);

	this.instance_11 = new lib.Tween10("synched",0);
	this.instance_11.setTransform(418.7,257.25,1.3333,1.3333,0,0,0,0,0.1);
	this.instance_11._off = true;

	this.instance_12 = new lib.Tween11("synched",0);
	this.instance_12.setTransform(418.7,271,1.3333,1.3333);
	this.instance_12._off = true;

	this.shape_18 = new cjs.Shape();
	this.shape_18.graphics.f("#FF8080").s().p("AgyAkQgVgPAAgVQAAgUAVgPQAVgPAdAAQAeAAAVAPQAVAPAAAUQAAAVgVAPQgVAPgeAAQgdAAgVgPg");
	this.shape_18.setTransform(424.496,399.6745,2.3555,2.4326,0.446);

	this.shape_19 = new cjs.Shape();
	this.shape_19.graphics.f("#FFE6D5").s().p("AjsKOQjhgKiPgaQiPgagmglQgbgcgThGQgShFgIhnQgKiGAGhcQADgqAFh9QAGhmABgBQABgBAygGQCNgQB/geQCBggCHgyQBcgjBmgwQBlgwC3heICohWIAjAFQCjAYBoBCQAUAMAfAgQAiAhAUAlQAUAlAOA0QAMAwAEA0QAFA1ACCQQADCCACAxQADA0AHAsQADAYgBAxQgCAxgGAhQgMBEgdA4QgVApgkAfQglAegrAMQg6AQh6ANQh7ANicAHQhIADicAAQigAAhDgEg");
	this.shape_19.setTransform(422.494,351.5586,2.3555,2.4506,0.4449);

	this.shape_20 = new cjs.Shape();
	this.shape_20.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AtdnEIgHBuQgHCHABB1QAEF2BYBAQB0BVIkALQDlAFDYgNQDdgOB6gbQCXgiApjBQANg8AAhFIgCg4");
	this.shape_20.setTransform(422.0761,406.0824,2.3555,2.4326,0.446);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.instance_10}]}).to({state:[{t:this.instance_10}]},9).to({state:[{t:this.instance_10}]},25).to({state:[{t:this.instance_10}]},4).to({state:[{t:this.instance_11}]},106).to({state:[{t:this.instance_12}]},30).to({state:[{t:this.instance_12}]},84).to({state:[{t:this.instance_12}]},5).to({state:[{t:this.instance_12}]},9).to({state:[{t:this.shape_20},{t:this.shape_19},{t:this.shape_18}]},246).to({state:[{t:this.instance_12}]},56).to({state:[{t:this.instance_12}]},25).to({state:[{t:this.instance_12}]},120).to({state:[{t:this.instance_12}]},23).wait(1));
	this.timeline.addTween(cjs.Tween.get(this.instance_10).to({rotation:-12.4857,y:494.6},9).wait(25).to({startPosition:0},0).to({regX:0.1,rotation:0,x:415.55,y:494.5},4).to({_off:true},106).wait(599));
	this.timeline.addTween(cjs.Tween.get(this.instance_11).wait(144).to({_off:false},0).to({_off:true,regY:0,y:271},30).wait(569));
	this.timeline.addTween(cjs.Tween.get(this.instance_12).wait(144).to({_off:false},30).wait(84).to({startPosition:0},0).wait(5).to({startPosition:0},0).to({regX:0.1,regY:0.1,x:419.5,y:257.35},9).to({_off:true},246).wait(56).to({_off:false},0).wait(25).to({startPosition:0},0).wait(120).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(1));

	// Rarm
	this.instance_13 = new lib.Tween8("synched",0);
	this.instance_13.setTransform(513.4,511.55,2.3556,2.4327,0,0,0,-18.1,-17.6);

	this.timeline.addTween(cjs.Tween.get(this.instance_13).to({regX:-18.2,scaleX:2.3555,scaleY:2.4326,rotation:-44.9995,x:513.2,y:511.6},7).to({regY:-17.5,scaleX:2.3556,rotation:-14.9996,x:513.25,y:511.75},6).to({scaleX:2.3555,rotation:-49.9993,x:513.35,y:511.8},6).to({regX:-18.1,rotation:-11.0472,x:513.55,y:511.75},6).to({regX:-18.2,regY:-17.4,scaleX:2.3554,scaleY:2.4325,rotation:-49.2827,x:513.5,y:512.05},5).to({regX:-18.1,rotation:-4.2821,x:513.75,y:511.9},4).wait(7).to({startPosition:0},0).to({scaleX:2.3551,scaleY:2.4322,rotation:71.7234,x:513.85,y:511.8},8).wait(71).to({rotation:71.7237},0).wait(1).to({startPosition:0},0).wait(1).to({regY:-17.6,rotation:70.4391,x:513.95,y:511.85},0).to({regY:-17.4,scaleX:2.3554,scaleY:2.4325,rotation:-4.2817,x:513.75,y:511.9},6).wait(16).to({rotation:-4.2817},0).wait(119).to({startPosition:0},0).to({scaleX:2.3553,scaleY:2.4324,rotation:-47.2303,x:513.8,y:511.85},9).wait(39).to({startPosition:0},0).wait(23).to({startPosition:0},0).wait(215).to({startPosition:0},0).to({scaleX:2.3554,rotation:-8.2359,x:513.7,y:511.65},12).wait(111).to({startPosition:0},0).to({scaleX:2.3553,scaleY:2.4323,rotation:-45.9625,x:513.6,y:511.8},4).to({scaleX:2.3554,scaleY:2.4324,rotation:-8.2359,x:513.7,y:511.65},6).to({scaleX:2.3553,scaleY:2.4323,rotation:-58.4733,x:513.6,y:511.75},6).to({scaleX:2.3554,scaleY:2.4324,rotation:-8.2359,x:513.7,y:511.65},7).wait(47).to({startPosition:0},0).wait(1));

	// Layer_1
	this.shape_21 = new cjs.Shape();
	this.shape_21.graphics.f("#E3DBDB").s().p("AFJCHIhMh0IhtgDQhpgEiSAAIiPAAIhJB1QhIB1gCgCQgCgDg1jwQg0jwACgBQPogKAFACQABABgwD3QgwD3gCACIAAAAQgDAAhKhyg");
	this.shape_21.setTransform(425.0015,713.8694,2.3556,2.4327);

	this.shape_22 = new cjs.Shape();
	this.shape_22.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AoJkcIB2IaICjkGIHiAEICuEHIBqoi");
	this.shape_22.setTransform(424.7202,722.5506,2.3556,2.4327);

	this.shape_23 = new cjs.Shape();
	this.shape_23.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AlOlDImJKDIWvgKImPp3");
	this.shape_23.setTransform(426.978,574.5668,2.3552,2.4321);

	this.shape_24 = new cjs.Shape();
	this.shape_24.graphics.f("#5599FF").s().p("AlOlBIKXADIGPJ3I2vAJg");
	this.shape_24.setTransform(426.9597,574.074,2.3552,2.4321);

	this.shape_25 = new cjs.Shape();
	this.shape_25.graphics.f("#E3DBDB").s().p("AFJCHIhMh0IhtgDQhpgEiSAAIiPAAIhJB1QhIB1gCgCQgCgDg1jwQg0jwACgBQPogKAFACQABABgwD3QgwD3gCACIAAAAQgDAAhKhyg");
	this.shape_25.setTransform(425.0015,713.8694,2.3556,2.4327);

	this.shape_26 = new cjs.Shape();
	this.shape_26.graphics.f().s("#000000").ss(2.5,0,0,11.3).p("AoJkcIB2IaICjkGIHiAEICuEHIBqoi");
	this.shape_26.setTransform(424.7202,722.5506,2.3556,2.4327);

	this.shape_27 = new cjs.Shape();
	this.shape_27.graphics.f().s("#000000").ss(1.7,0,0,11.3).p("AlOlDImJKDIWvgKImPp3");
	this.shape_27.setTransform(426.978,574.5668,2.3552,2.4321);

	this.shape_28 = new cjs.Shape();
	this.shape_28.graphics.f("#5599FF").s().p("AlOlBIKXADIGPJ3I2vAJg");
	this.shape_28.setTransform(426.9597,574.074,2.3552,2.4321);

	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_28,p:{scaleY:2.4321,x:426.9597,y:574.074,scaleX:2.3552}},{t:this.shape_27,p:{scaleY:2.4321,x:426.978,y:574.5668,scaleX:2.3552}},{t:this.shape_26,p:{x:424.7202}},{t:this.shape_25,p:{x:425.0015}},{t:this.shape_24,p:{scaleY:2.4321,x:426.9597,y:574.074,scaleX:2.3552}},{t:this.shape_23,p:{scaleY:2.4321,x:426.978,y:574.5668,scaleX:2.3552}},{t:this.shape_22,p:{x:424.7202}},{t:this.shape_21,p:{x:425.0015}}]}).to({state:[{t:this.shape_28,p:{scaleY:2.432,x:426.9557,y:574.0555,scaleX:2.3552}},{t:this.shape_27,p:{scaleY:2.432,x:426.974,y:574.5483,scaleX:2.3552}},{t:this.shape_26,p:{x:424.7202}},{t:this.shape_25,p:{x:425.0015}},{t:this.shape_24,p:{scaleY:2.432,x:426.9557,y:574.0555,scaleX:2.3552}},{t:this.shape_23,p:{scaleY:2.432,x:426.974,y:574.5483,scaleX:2.3552}},{t:this.shape_22,p:{x:424.7202}},{t:this.shape_21,p:{x:425.0015}}]},144).to({state:[{t:this.shape_28,p:{scaleY:2.432,x:426.9276,y:574.0369,scaleX:2.355}},{t:this.shape_27,p:{scaleY:2.432,x:426.9458,y:574.5298,scaleX:2.355}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.432,x:426.9276,y:574.0369,scaleX:2.355}},{t:this.shape_23,p:{scaleY:2.432,x:426.9458,y:574.5298,scaleX:2.355}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},119).to({state:[{t:this.shape_28,p:{scaleY:2.432,x:426.9276,y:574.0369,scaleX:2.355}},{t:this.shape_27,p:{scaleY:2.432,x:426.9458,y:574.5298,scaleX:2.355}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.432,x:426.9276,y:574.0369,scaleX:2.355}},{t:this.shape_23,p:{scaleY:2.432,x:426.9458,y:574.5298,scaleX:2.355}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},48).to({state:[{t:this.shape_28,p:{scaleY:2.432,x:426.9276,y:574.0369,scaleX:2.355}},{t:this.shape_27,p:{scaleY:2.432,x:426.9458,y:574.5298,scaleX:2.355}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.432,x:426.9276,y:574.0369,scaleX:2.355}},{t:this.shape_23,p:{scaleY:2.432,x:426.9458,y:574.5298,scaleX:2.355}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},23).to({state:[{t:this.shape_28,p:{scaleY:2.4312,x:426.833,y:573.8481,scaleX:2.3543}},{t:this.shape_27,p:{scaleY:2.4312,x:426.8513,y:574.3407,scaleX:2.3543}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.4312,x:426.833,y:573.8481,scaleX:2.3543}},{t:this.shape_23,p:{scaleY:2.4312,x:426.8513,y:574.3407,scaleX:2.3543}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},240).to({state:[{t:this.shape_28,p:{scaleY:2.431,x:426.8049,y:573.7962,scaleX:2.354}},{t:this.shape_27,p:{scaleY:2.431,x:426.8232,y:574.2889,scaleX:2.354}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.431,x:426.8049,y:573.7962,scaleX:2.354}},{t:this.shape_23,p:{scaleY:2.431,x:426.8232,y:574.2889,scaleX:2.354}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},98).to({state:[{t:this.shape_28,p:{scaleY:2.4308,x:426.7948,y:573.7666,scaleX:2.354}},{t:this.shape_27,p:{scaleY:2.4308,x:426.8131,y:574.2592,scaleX:2.354}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.4308,x:426.7948,y:573.7666,scaleX:2.354}},{t:this.shape_23,p:{scaleY:2.4308,x:426.8131,y:574.2592,scaleX:2.354}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},47).to({state:[{t:this.shape_28,p:{scaleY:2.4308,x:426.7948,y:573.7666,scaleX:2.354}},{t:this.shape_27,p:{scaleY:2.4308,x:426.8131,y:574.2592,scaleX:2.354}},{t:this.shape_26,p:{x:424.7143}},{t:this.shape_25,p:{x:424.9955}},{t:this.shape_24,p:{scaleY:2.4312,x:426.833,y:573.8481,scaleX:2.3543}},{t:this.shape_23,p:{scaleY:2.4312,x:426.8513,y:574.3407,scaleX:2.3543}},{t:this.shape_22,p:{x:424.7143}},{t:this.shape_21,p:{x:424.9955}}]},23).wait(1));

	// Larm
	this.shape_29 = new cjs.Shape();
	this.shape_29.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
	this.shape_29.setTransform(300.2215,546.313,2.3556,2.4327);

	this.shape_30 = new cjs.Shape();
	this.shape_30.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQggAQghgMg");
	this.shape_30.setTransform(259.8921,606.8784,2.3556,2.4327);

	this.shape_31 = new cjs.Shape();
	this.shape_31.graphics.f("#FFE6D5").s().p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQgSAJgTAAQgOAAgOgFg");
	this.shape_31.setTransform(259.8921,606.8784,2.3556,2.4327);

	this.shape_32 = new cjs.Shape();
	this.shape_32.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AAShCQAiAIATAaQATAagHAbQgHAbgeAOQgdAOgigJQgigIgTgaQgTgaAHgbQAIgcAdgNQAdgOAiAJg");
	this.shape_32.setTransform(259.9078,606.8697,2.3556,2.4327);

	this.shape_33 = new cjs.Shape();
	this.shape_33.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
	this.shape_33.setTransform(300.2215,546.313,2.3556,2.4327);

	this.shape_34 = new cjs.Shape();
	this.shape_34.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("Ah7C0QhIgcgBgCQgBAAB4iyQBOh3AWggQAUgcADAAICNAMIAIACIj1GQQgBABhIgcg");
	this.shape_34.setTransform(297.8629,546.1177,2.3556,2.4327);

	this.shape_35 = new cjs.Shape();
	this.shape_35.graphics.f("#5599FF").s().p("Ah5C0QhIgcgCgCQgBAAB4iyIBliXQATgcAEAAICNAMIAHACIj0GQIgBABQgDAAhFgcg");
	this.shape_35.setTransform(297.5096,546.1177,2.3556,2.4327);

	this.shape_36 = new cjs.Shape();
	this.shape_36.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQggAQghgMg");
	this.shape_36.setTransform(259.8921,606.8784,2.3556,2.4327);

	this.shape_37 = new cjs.Shape();
	this.shape_37.graphics.f("#FFE6D5").s().p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQgSAJgTAAQgOAAgOgFg");
	this.shape_37.setTransform(259.8921,606.8784,2.3556,2.4327);

	this.shape_38 = new cjs.Shape();
	this.shape_38.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AAShCQAiAIATAaQATAagHAbQgHAbgeAOQgdAOgigJQgigIgTgaQgTgaAHgbQAIgcAdgNQAdgOAiAJg");
	this.shape_38.setTransform(259.9078,606.8697,2.3556,2.4327);

	this.shape_39 = new cjs.Shape();
	this.shape_39.graphics.f().s("#000000").ss(1.1,0,0,11.3).p("AAijYIjwFtIChBDID7mig");
	this.shape_39.setTransform(300.218,546.313,2.3556,2.4327);

	this.shape_40 = new cjs.Shape();
	this.shape_40.graphics.f().s("#5599FF").ss(0.4,0,0,11.3).p("Ah7C0QhIgcgBgCQgBAAB4iyQBOh3AWggQAUgcADAAICNAMIAIACIj1GQQgBABhIgcg");
	this.shape_40.setTransform(297.8594,546.1177,2.3556,2.4327);

	this.shape_41 = new cjs.Shape();
	this.shape_41.graphics.f("#5599FF").s().p("Ah5C0QhIgcgCgCQgBAAB4iyIBliXQATgcAEAAICNAMIAHACIj0GQIgBABQgDAAhFgcg");
	this.shape_41.setTransform(297.5061,546.1177,2.3556,2.4327);

	this.shape_42 = new cjs.Shape();
	this.shape_42.graphics.f().s("#FFE6D5").ss(0.7,0,0,11.3).p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQggAQghgMg");
	this.shape_42.setTransform(259.8894,606.8784,2.3556,2.4327);

	this.shape_43 = new cjs.Shape();
	this.shape_43.graphics.f("#FFE6D5").s().p("AgWA4QgggLgOgbQgNgaAPgXQAagoA5AQQA6AQAAAuQAAAdggAQQgSAJgTAAQgOAAgOgFg");
	this.shape_43.setTransform(259.8894,606.8784,2.3556,2.4327);

	this.shape_44 = new cjs.Shape();
	this.shape_44.graphics.f().s("#000000").ss(1.4,0,0,11.3).p("AAShCQAiAIATAaQATAagHAbQgHAbgeAOQgdAOgigJQgigIgTgaQgTgaAHgbQAIgcAdgNQAdgOAiAJg");
	this.shape_44.setTransform(259.905,606.8697,2.3556,2.4327);

	this.instance_14 = new lib.Tween29("synched",0);
	this.instance_14.setTransform(328.55,536.85,1.3333,1.3333,0,0,0,25.7,-16.4);
	this.instance_14._off = true;

	this.timeline.addTween(cjs.Tween.get({}).to({state:[{t:this.shape_38},{t:this.shape_37},{t:this.shape_36},{t:this.shape_35},{t:this.shape_34},{t:this.shape_33},{t:this.shape_32},{t:this.shape_31},{t:this.shape_30},{t:this.shape_29}]}).to({state:[{t:this.shape_38},{t:this.shape_37},{t:this.shape_36},{t:this.shape_35},{t:this.shape_34},{t:this.shape_33},{t:this.shape_32},{t:this.shape_31},{t:this.shape_30},{t:this.shape_29}]},144).to({state:[{t:this.shape_44},{t:this.shape_43},{t:this.shape_42},{t:this.shape_41},{t:this.shape_40},{t:this.shape_39},{t:this.shape_38},{t:this.shape_37},{t:this.shape_36},{t:this.shape_35},{t:this.shape_34},{t:this.shape_33},{t:this.shape_32},{t:this.shape_31},{t:this.shape_30},{t:this.shape_29}]},24).to({state:[{t:this.instance_14}]},95).to({state:[{t:this.instance_14}]},9).to({state:[{t:this.instance_14}]},51).to({state:[{t:this.instance_14}]},12).to({state:[{t:this.instance_14}]},239).to({state:[{t:this.instance_14}]},98).to({state:[{t:this.instance_14}]},4).to({state:[{t:this.instance_14}]},6).to({state:[{t:this.instance_14}]},6).to({state:[{t:this.instance_14}]},7).to({state:[{t:this.instance_14}]},33).to({state:[{t:this.instance_14}]},6).wait(9));
	this.timeline.addTween(cjs.Tween.get(this.instance_14).wait(263).to({_off:false},0).to({regX:25.8,regY:-16.3,rotation:51.4694,x:328.6,y:537},9).wait(51).to({startPosition:0},0).to({regX:25.7,rotation:6.4688},12).wait(239).to({rotation:6.4688},0).wait(98).to({startPosition:0},0).to({regY:-16.4,scaleX:1.3332,scaleY:1.3332,rotation:51.4682,x:328.65,y:536.95},4).to({regY:-16.3,scaleX:1.3333,scaleY:1.3333,rotation:6.4688,x:328.6,y:537},6).to({scaleX:1.3332,scaleY:1.3332,rotation:61.4386},6).to({scaleX:1.3333,scaleY:1.3333,rotation:6.4688},7).wait(33).to({rotation:6.4688},0).to({scaleX:1.3332,scaleY:1.3332,rotation:60.6673,x:328.55},6).wait(9));

	// chmp_svg
	this.instance_15 = new lib.chmpsvg("synched",0);
	this.instance_15.setTransform(747.95,638,2.8498,2.9836,0,0,0,21.8,193.8);
	this.instance_15.alpha = 0;
	this.instance_15._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_15).wait(323).to({_off:false},0).to({x:747.9,alpha:1},11).wait(85).to({startPosition:0},0).to({alpha:0},12).to({_off:true},1).wait(311));

	// croissant_svg
	this.instance_16 = new lib.croissantsvg("synched",0);
	this.instance_16.setTransform(954.65,191.15,1,1,0,0,0,122.1,60.9);
	this.instance_16.alpha = 0;
	this.instance_16._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_16).wait(431).to({_off:false},0).to({alpha:1},9).wait(106).to({startPosition:0},0).to({alpha:0},4).wait(1).to({startPosition:0},0).to({_off:true},1).wait(191));

	// weight_svg
	this.instance_17 = new lib.weightsvg("synched",0);
	this.instance_17.setTransform(1045.1,380.75,1,1,0,0,0,108.2,46.2);
	this.instance_17.alpha = 0;
	this.instance_17._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_17).wait(450).to({_off:false},0).to({alpha:1},8).wait(88).to({startPosition:0},0).to({alpha:0},4).wait(1).to({startPosition:0},0).to({_off:true},1).wait(191));

	// arrow2_svg
	this.instance_18 = new lib.arrow2svg("synched",0);
	this.instance_18.setTransform(830.15,551.05,1,1,0,0,0,57.1,95.8);
	this.instance_18.alpha = 0;
	this.instance_18._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_18).wait(470).to({_off:false},0).to({alpha:1},8).wait(68).to({startPosition:0},0).to({alpha:0},4).wait(1).to({startPosition:0},0).to({_off:true},1).wait(191));

	// emoji_svg
	this.instance_19 = new lib.emojisvg("synched",0);
	this.instance_19.setTransform(1078.7,658.75,1,1,0,0,0,67.2,67.3);
	this.instance_19.alpha = 0;
	this.instance_19._off = true;

	this.timeline.addTween(cjs.Tween.get(this.instance_19).wait(490).to({_off:false},0).to({alpha:1},7).wait(49).to({startPosition:0},0).to({alpha:0},4).wait(1).to({startPosition:0},0).to({_off:true},1).wait(191));

	this._renderFirstFrame();

}).prototype = p = new lib.AnMovieClip();
p.nominalBounds = new cjs.Rectangle(646,398,507.4000000000001,390.9);
// library properties:
lib.properties = {
	id: '93F29AEBD1DB8F42BC5A007E858F897B',
	width: 1200,
	height: 800,
	fps: 24,
	color: "#FFFFFF",
	opacity: 1.00,
	manifest: [],
	preloads: []
};



// bootstrap callback support:

(lib.Stage = function(canvas) {
	createjs.Stage.call(this, canvas);
}).prototype = p = new createjs.Stage();

p.setAutoPlay = function(autoPlay) {
	this.tickEnabled = autoPlay;
}
p.play = function() { this.tickEnabled = true; this.getChildAt(0).gotoAndPlay(this.getTimelinePosition()) }
p.stop = function(ms) { if(ms) this.seek(ms); this.tickEnabled = false; }
p.seek = function(ms) { this.tickEnabled = true; this.getChildAt(0).gotoAndStop(lib.properties.fps * ms / 1000); }
p.getDuration = function() { return this.getChildAt(0).totalFrames / lib.properties.fps * 1000; }

p.getTimelinePosition = function() { return this.getChildAt(0).currentFrame / lib.properties.fps * 1000; }

an.bootcompsLoaded = an.bootcompsLoaded || [];
if(!an.bootstrapListeners) {
	an.bootstrapListeners=[];
}

an.bootstrapCallback=function(fnCallback) {
	an.bootstrapListeners.push(fnCallback);
	if(an.bootcompsLoaded.length > 0) {
		for(var i=0; i<an.bootcompsLoaded.length; ++i) {
			fnCallback(an.bootcompsLoaded[i]);
		}
	}
};

an.compositions = an.compositions || {};
an.compositions['93F29AEBD1DB8F42BC5A007E858F897B'] = {
	getStage: function() { return exportRoot.stage; },
	getLibrary: function() { return lib; },
	getSpriteSheet: function() { return ss; },
	getImages: function() { return img; }
};

an.compositionLoaded = function(id) {
	an.bootcompsLoaded.push(id);
	for(var j=0; j<an.bootstrapListeners.length; j++) {
		an.bootstrapListeners[j](id);
	}
}

an.getComposition = function(id) {
	return an.compositions[id];
}


an.makeResponsive = function(isResp, respDim, isScale, scaleType, domContainers) {
	var lastW, lastH, lastS=1;
	window.addEventListener('resize', resizeCanvas);
	resizeCanvas();
	function resizeCanvas() {
		var w = lib.properties.width, h = lib.properties.height;
		var iw = window.innerWidth, ih=window.innerHeight;
		var pRatio = window.devicePixelRatio || 1, xRatio=iw/w, yRatio=ih/h, sRatio=1;
		if(isResp) {
			if((respDim=='width'&&lastW==iw) || (respDim=='height'&&lastH==ih)) {
				sRatio = lastS;
			}
			else if(!isScale) {
				if(iw<w || ih<h)
					sRatio = Math.min(xRatio, yRatio);
			}
			else if(scaleType==1) {
				sRatio = Math.min(xRatio, yRatio);
			}
			else if(scaleType==2) {
				sRatio = Math.max(xRatio, yRatio);
			}
		}
		domContainers[0].width = w;
		domContainers[0].height = h;
		domContainers.forEach(function(container) {
			container.style.width = w * sRatio + 'px';
			container.style.height = h * sRatio + 'px';
		});
		stage.scaleX = pRatio*sRatio;
		stage.scaleY = pRatio*sRatio;
		lastW = iw; lastH = ih; lastS = sRatio;
		stage.tickOnUpdate = false;
		stage.update();
		stage.tickOnUpdate = true;
	}
}
an.handleSoundStreamOnTick = function(event) {
	if(!event.paused){
		var stageChild = stage.getChildAt(0);
		if(!stageChild.paused || stageChild.ignorePause){
			stageChild.syncStreamSounds();
		}
	}
}
an.handleFilterCache = function(event) {
	if(!event.paused){
		var target = event.target;
		if(target){
			if(target.filterCacheList){
				for(var index = 0; index < target.filterCacheList.length ; index++){
					var cacheInst = target.filterCacheList[index];
					if((cacheInst.startFrame <= target.currentFrame) && (target.currentFrame <= cacheInst.endFrame)){
						cacheInst.instance.cache(cacheInst.x, cacheInst.y, cacheInst.w, cacheInst.h);
					}
				}
			}
		}
	}
}


})(createjs = createjs||{}, AdobeAn = AdobeAn||{});
var createjs, AdobeAn;