Combined Code
frame 1 {
stop();
owner_URL = 'http://www.meetandfuckgames.com/';
onEnterFrame = function () {
if (_currentframe != 1) {
return undefined;
}
percent_shadow = 'Loading: ' + int(100 * getBytesLoaded() / getBytesTotal()) + '%';
percent = percent_shadow;
bar.SetValue(getBytesLoaded() / getBytesTotal());
if (getBytesLoaded() == getBytesTotal()) {
gotoAndStop(3);
}
};
MNF_btn.onPress = function () {
if (id == undefined) {
getURL(owner_URL, '_blank');
} else {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=939775-0000&PA=' + id, '_blank');
}
};
}
movieClip 10 {
}
movieClip 12 {
}
// unknown tag 88 length 287
movieClip 3737 __Packages.AnimManager {
#initclip
if (!_global.AnimManager) {
var v1 = function (anim_mc_, btns_mc_) {
this.anim_mc = anim_mc_;
this.btns_mc = btns_mc_;
this.gravi = new Gravitation(1);
this.gravi.move_draw = 0.5;
this.acts = new Array();
this.anim_swings = new Array();
};
_global.AnimManager = v1;
var v2 = v1.prototype;
v2.AddAct = function (AnimActObject) {
var new_act = new AnimAct(AnimActObject);
this.acts.push(new_act);
(eval(String(this.btns_mc) + '.' + new_act.btn_name)).onPress = function () {
var v3 = this._parent.anim_manager;
if (v3 == undefined) {
v3 = this._parent._parent.anim_manager;
}
var v2 = 0;
while (v2 < v3.acts.length) {
if (this._name == v3.acts[v2].btn_name) {
this._parent.btn_id = v2;
break;
}
++v2;
}
this._parent.border._x = this._x;
this._parent.border._y = this._y;
v3.setAct(this._name);
this.postOnPress();
};
if (this.acts.length == 1) {
(eval(String(this.btns_mc) + '.' + new_act.btn_name)).onPress();
}
};
v2.AddSwing = function (AnimSwingObject) {
this.anim_swings.push(new AnimSwing(AnimSwingObject));
};
v2.setAct = function (btn_name) {
if (btn_name == this.act.btn_name) {
return undefined;
}
var btn_name_found = false;
var i = 0;
while (i < this.acts.length) {
if (this.acts[i].btn_name == btn_name) {
this.act = this.acts[i];
btn_name_found = true;
break;
}
++i;
}
if (!btn_name_found) {
return undefined;
}
(eval(String(this.anim_mc._parent) + '.hint')).removeMovieClip();
if (this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
this.gravi.control_mode = 0;
this.CreateHint(640, 480, this.anim_mc._parent, this.act.mouse_movement, this.act.pixel_start, this.act.pixel_width);
} else {
this.gravi.control_mode = 1;
}
if (this.act.frame_enter != undefined) {
this.frame = this.act.frame_enter;
}
this.gravi.auto_speed = this.act.auto_speed;
if (this.act.type == AnimAct.TYPE_CUM_PENDULUM) {
this.gravi.auto_fade_out_speed = this.act.auto_fade_out_speed;
this.state = 0;
this.timer = 0;
} else {
if (this.act.type == AnimAct.TYPE_CUM_LINEAR) {
this.state = 0;
}
}
this.Update(this.anim_mc._parent._xmouse, this.anim_mc._parent._ymouse);
this.act.setFaceByStr(this.anim_mc, this.act.face_settings);
};
v2.Update = function (_xmouse, _ymouse) {
if (this.act == undefined) {
return undefined;
}
if (this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
if (this.act.mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
this.gravi.move_goto = (_ymouse - this.act.pixel_start) / this.act.pixel_width;
} else {
this.gravi.move_goto = (_xmouse - this.act.pixel_start) / this.act.pixel_width;
}
if (this.gravi.move_goto < 0) {
this.gravi.move_goto = 0;
} else {
if (this.gravi.move_goto > 1) {
this.gravi.move_goto = 1;
}
}
if (this.act.reverse_mouse_control) {
this.gravi.move_goto = 1 - this.gravi.move_goto;
}
}
this.UpdateSwings(true, this.gravi.swing_draw[0]);
this.gravi.Update();
if (this.act.type == AnimAct.TYPE_LINEAR) {
this.frame += 1;
if (this.frame >= this.act.frame_end) {
this.frame -= this.act.frame_end - this.act.frame_start;
}
} else {
if (this.act.type == AnimAct.TYPE_CUM_LINEAR) {
this.frame += 1;
if (this.frame >= this.act.frame_end) {
if (this.state == 0) {
this.state = 1;
this.act.setFaceByStr(this.anim_mc, this.act.face_settings_after_cum);
}
this.frame -= this.act.frame_end - this.act.frame_start;
}
} else {
if (this.act.type == AnimAct.TYPE_PENDULUM || this.act.type == AnimAct.TYPE_PENDULUM_MANUAL) {
this.frame = int(this.gravi.move_draw * (this.act.frame_end - this.act.frame_start) + this.act.frame_start);
} else {
if (this.act.type == AnimAct.TYPE_CUM_PENDULUM) {
if (this.state == 0) {
++this.timer;
if (this.timer >= 50) {
this.state = 1;
this.gravi.control_mode = 2;
}
} else {
if (this.state == 1) {
if (this.gravi.auto_move_fade_k < 0.5) {
this.act.playCum(this.anim_mc);
this.state = 2;
}
} else {
if (this.state == 2) {
if (this.gravi.control_mode == 1) {
this.act.setFaceByStr(this.anim_mc, this.act.face_settings_after_cum);
this.state = 3;
}
}
}
}
this.frame = int(this.gravi.move_draw * (this.act.frame_end - this.act.frame_start) + this.act.frame_start);
}
}
}
}
this.anim_mc.gotoAndStop(int(this.frame));
this.UpdateSwings(false, this.gravi.swing_draw[0]);
};
v2.UpdateSwings = function (update_before, gravi_swing_draw) {
var i = 0;
while (i < this.anim_swings.length) {
if (this.anim_swings[i].update_before_gravi == update_before) {
var clip = eval(String(this.anim_mc) + '.' + this.anim_swings[i].clip_name);
var last_frame = this.anim_swings[i].last_frame;
var first_frame = this.anim_swings[i].first_frame;
if (this.anim_swings[i].reverse) {
clip.gotoAndStop(int((1 - gravi_swing_draw) * (last_frame - first_frame) + first_frame));
} else {
clip.gotoAndStop(int(gravi_swing_draw * (last_frame - first_frame) + first_frame));
}
}
++i;
}
};
v2.CreateHint = function (swf_width, swf_height, owner_mc, mouse_movement, pixel_start, pixel_width) {
var hint_mc = owner_mc.createEmptyMovieClip('hint', owner_mc.getNextHighestDepth());
this.DrawArrow(swf_width, swf_height, hint_mc, mouse_movement, pixel_start, pixel_width);
var mouse_icon_mc = hint_mc.createEmptyMovieClip('mouse_icon', hint_mc.getNextHighestDepth());
this.DrawMouseIcon(mouse_icon_mc);
mouse_icon_mc._visible = false;
hint_mc.anim = 0;
hint_mc.mouse_movement = mouse_movement;
hint_mc.pixel_start = pixel_start;
hint_mc.pixel_width = pixel_width;
hint_mc.swf_width = swf_width;
hint_mc.swf_height = swf_height;
hint_mc.onEnterFrame = function () {
if (!mouse_icon_mc._visible) {
mouse_icon_mc._visible = true;
}
hint_mc.anim += 0.05;
if (hint_mc.anim >= 1) {
hint_mc.anim -= 1;
}
if (hint_mc.mouse_movement == AnimAct.HORIZONTAL_MOVEMENT) {
hint_mc.mouse_icon._x = hint_mc.pixel_start + hint_mc.pixel_width / 2 + Math.sin(6.283185307179586 * hint_mc.anim) * hint_mc.pixel_width / 2;
hint_mc.mouse_icon._y = hint_mc.swf_height / 2 - 70;
} else {
if (hint_mc.mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
hint_mc.mouse_icon._x = hint_mc.swf_width / 2 + 70;
hint_mc.mouse_icon._y = hint_mc.pixel_start + hint_mc.pixel_width / 2 + Math.sin(6.283185307179586 * hint_mc.anim) * hint_mc.pixel_width / 2;
}
}
hint_mc._alpha -= 1;
if (hint_mc._alpha <= 0) {
hint_mc.removeMovieClip();
}
};
};
v2.DrawArrow = function (swf_width, swf_height, mc, mouse_movement, pixel_start, pixel_width) {
mc.lineStyle(2, 10066329);
mc.beginFill(16777215, 100);
var v1 = 25;
if (mouse_movement == AnimAct.HORIZONTAL_MOVEMENT) {
var v4 = pixel_start;
var v3 = swf_height / 2;
mc.moveTo(v4, v3);
mc.lineTo(v4 + 1.5 * v1, v3 - v1);
mc.lineTo(v4 + 1.5 * v1, v3 - 0.5 * v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 - 0.5 * v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 - v1);
mc.lineTo(v4 + pixel_width, v3);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 + v1);
mc.lineTo(v4 + pixel_width - 1.5 * v1, v3 + 0.5 * v1);
mc.lineTo(v4 + 1.5 * v1, v3 + 0.5 * v1);
mc.lineTo(v4 + 1.5 * v1, v3 + v1);
mc.lineTo(v4, v3);
} else {
if (mouse_movement == AnimAct.VERTICAL_MOVEMENT) {
var v4 = swf_width / 2;
var v3 = pixel_start;
mc.moveTo(v4, v3);
mc.lineTo(v4 + v1, v3 + 1.5 * v1);
mc.lineTo(v4 + 0.5 * v1, v3 + 1.5 * v1);
mc.lineTo(v4 + 0.5 * v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 + v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4, v3 + pixel_width);
mc.lineTo(v4 - v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 - 0.5 * v1, v3 + pixel_width - 1.5 * v1);
mc.lineTo(v4 - 0.5 * v1, v3 + 1.5 * v1);
mc.lineTo(v4 - v1, v3 + 1.5 * v1);
mc.lineTo(v4, v3);
}
}
};
v2.DrawMouseIcon = function (mc) {
mc.lineStyle(2, 10066329);
mc.beginFill(16777215, 100);
var v1 = 40;
mc.moveTo(-v1 / 2, 0);
mc.curveTo(-v1 / 2, -v1 / 1.5, 0, -v1 / 1.5);
mc.curveTo(v1 / 2, -v1 / 1.5, v1 / 2, 0);
mc.curveTo(v1 / 3, 0.75 * v1, 0, 0.75 * v1);
mc.curveTo(-v1 / 3, 0.75 * v1, -v1 / 2, 0);
mc.endFill();
mc.moveTo(-v1 / 2, 0);
mc.lineTo(v1 / 2, 0);
mc.moveTo(0, 0);
mc.lineTo(0, -v1 / 1.5);
};
ASSetPropFlags(_global.AnimManager.prototype, null, 1);
}
#endinitclip
}
movieClip 3738 __Packages.Gravitation {
#initclip
if (!_global.Gravitation) {
var v1 = function (swings_num) {
this.move_speeds = new Array();
this.swing_draw = new Array();
this.swing_speed = new Array();
this.swing_fadeout = new Array();
this.auto_move_fade_k = 1;
var v2;
this.move_draw = 0.5;
this.prev_move_draw = 0.5;
this.prev_prev_move_draw = 0.5;
v2 = 0;
while (v2 < 24) {
this.move_speeds.push(0);
++v2;
}
v2 = 0;
while (v2 < swings_num) {
this.swing_draw.push(0.5);
this.swing_speed.push(0);
this.swing_fadeout.push(0.1);
++v2;
}
this.move_delay = 3;
this.move_speed_overal = 0;
this.auto_anim_angle = 0;
this.control_mode = 0;
this.auto_fade_out_speed = 0.005;
this.face_frame = 1;
this.auto_speed = 0.2;
this.anchor = undefined;
};
_global.Gravitation = v1;
var v2 = v1.prototype;
v2.Update = function () {
var v5;
var v3;
var v4 = _root.time_scale;
if (v4 == undefined) {
v4 = 1;
}
if (this.control_mode > 0) {
if (this.control_mode == 2) {
this.auto_move_fade_k -= this.auto_fade_out_speed;
if (this.auto_move_fade_k < 0.15) {
this.control_mode = 1;
this.auto_move_fade_k = 0.15;
}
}
this.auto_anim_angle += this.auto_move_fade_k * Math.PI * this.auto_speed * v4;
if (this.auto_anim_angle >= 6.283185307179586) {
this.auto_anim_angle -= 6.283185307179586;
}
this.move_goto = (this.auto_move_fade_k * Math.sin(this.auto_anim_angle) + 1) / 2;
}
this.actual_delay = this.move_delay - this.move_speed_overal * 10;
if (this.actual_delay < 1.5) {
this.actual_delay = 1.5;
}
this.move_speed = v4 * (this.move_goto - this.move_draw) / this.actual_delay;
v5 = 1 / this.actual_delay;
this.prev_prev_move_draw = this.prev_move_draw;
this.prev_move_draw = this.move_draw;
this.move_draw += this.move_speed;
if (this.move_draw > 1) {
this.move_draw = 1;
} else {
if (this.move_draw < 0) {
this.move_draw = 0;
}
}
this.anchor = undefined;
if (this.move_draw < this.prev_move_draw && this.prev_move_draw >= this.prev_prev_move_draw) {
this.anchor = 1;
} else {
if (this.move_draw > this.prev_move_draw && this.prev_move_draw <= this.prev_prev_move_draw) {
this.anchor = -1;
}
}
this.move_speeds.push(Math.abs(this.move_speed));
this.move_speeds.splice(0, 1);
this.move_speed_overal = 0;
v3 = 0;
while (v3 < this.move_speeds.length) {
this.move_speed_overal += this.move_speeds[v3];
++v3;
}
this.move_speed_overal /= this.move_speeds.length;
this.swing_goto = (this.move_speed + v5) / 2 * v5;
v3 = 0;
while (v3 < this.swing_draw.length) {
if (Math.abs(this.swing_goto - this.swing_draw[v3]) > 0.001666666666666667 || Math.abs(this.swing_speed[v3]) > 0.001666666666666667) {
this.swing_speed[v3] += (this.swing_goto - this.swing_draw[v3]) / 10 + 1.5 * this.move_speed_overal * (this.swing_goto - this.swing_draw[v3]);
this.swing_draw[v3] += this.swing_speed[v3];
this.swing_draw[v3] += (this.swing_goto - this.swing_draw[v3]) * this.swing_fadeout[v3];
if (this.swing_draw[v3] < 0) {
this.swing_draw[v3] = 0;
} else {
if (this.swing_draw[v3] > 1) {
this.swing_draw[v3] = 1;
}
}
} else {
this.swing_draw[v3] = 0.5;
}
++v3;
}
if (this.move_speed_overal > 0.14 && this.face_frame < 3) {
this.face_frame = 3;
}
if (this.move_speed_overal > 0.07000000000000001 && this.face_frame < 2) {
this.face_frame = 2;
}
if (this.move_speed_overal < 0.05 && this.face_frame > 1) {
this.face_frame = 1;
}
if (this.move_speed_overal < 0.1 && this.face_frame > 2) {
this.face_frame = 2;
}
};
ASSetPropFlags(_global.Gravitation.prototype, null, 1);
}
#endinitclip
}
movieClip 3739 __Packages.AnimAct {
#initclip
if (!_global.AnimAct) {
var v1 = function (AnimActObject) {
this.btn_name = AnimActObject.btn_name;
this.type = AnimActObject.type;
this.frame_start = AnimActObject.frame_start;
this.frame_end = AnimActObject.frame_end;
this.frame_enter = AnimActObject.frame_enter;
if (this.frame_enter == undefined) {
this.frame_enter = this.frame_start;
}
this.auto_speed = AnimActObject.auto_speed;
this.auto_fade_out_speed = AnimActObject.auto_fade_out_speed;
this.face_settings = this.TossJunkChars(AnimActObject.face_settings);
this.cum_clips = this.TossJunkChars(AnimActObject.cum_clips);
this.face_settings_after_cum = this.TossJunkChars(AnimActObject.face_settings_after_cum);
this.mouse_movement = AnimActObject.mouse_movement;
this.pixel_start = AnimActObject.pixel_start;
this.pixel_width = AnimActObject.pixel_width;
this.reverse_mouse_control = Boolean(AnimActObject.reverse_mouse_control);
};
_global.AnimAct = v1;
var v2 = v1.prototype;
v2.TossJunkChars = function (str) {
var v1 = 0;
while (v1 < str.length) {
if (str.charAt(v1) == '\t' || str.charAt(v1) == '\r' || str.charAt(v1) == '\n' || str.charAt(v1) == ' ') {
str = str.substr(0, v1) + str.substr(v1 + 1, str.length);
--v1;
}
++v1;
}
return str;
};
v2.setFaceByStr = function (anim_mc, data_str) {
var data_item = '';
var i = 0;
while (i <= data_str.length) {
if (data_str.charAt(i) == ',' || i == data_str.length) {
var n = data_item.indexOf('=');
var path = data_item.substr(0, n);
var frame = Number(data_item.substr(n + 1, data_item.length));
(eval(String(anim_mc) + '.' + path)).gotoAndStop(frame);
data_item = '';
} else {
data_item += data_str.charAt(i);
}
++i;
}
};
v2.playCum = function (anim_mc) {
var data_str = this.cum_clips;
var data_item = '';
var i = 0;
while (i <= data_str.length) {
if (data_str.charAt(i) == ',' || i == data_str.length) {
(eval(String(anim_mc) + '.' + data_item)).play();
data_item = '';
} else {
data_item += data_str.charAt(i);
}
++i;
}
};
v1.TYPE_PENDULUM = 0;
v1.TYPE_LINEAR = 1;
v1.TYPE_CUM_PENDULUM = 2;
v1.TYPE_CUM_LINEAR = 3;
v1.TYPE_PENDULUM_MANUAL = 4;
v1.VERTICAL_MOVEMENT = 0;
v1.HORIZONTAL_MOVEMENT = 1;
ASSetPropFlags(_global.AnimAct.prototype, null, 1);
}
#endinitclip
}
movieClip 3740 __Packages.AnimSwing {
#initclip
if (!_global.AnimSwing) {
var v1 = function (AnimSwingObject) {
this.clip_name = AnimSwingObject.clip_name;
this.first_frame = Number(AnimSwingObject.first_frame);
this.last_frame = Number(AnimSwingObject.last_frame);
this.reverse = Boolean(AnimSwingObject.reverse);
if (AnimSwingObject.update_before_gravi == undefined) {
this.update_before_gravi = false;
} else {
this.update_before_gravi = Boolean(AnimSwingObject.update_before_gravi);
}
};
_global.AnimSwing = v1;
var v2 = v1.prototype;
ASSetPropFlags(_global.AnimSwing.prototype, null, 1);
}
#endinitclip
}
movieClip 21 trans_screen {
frame 1 {
var next_screen;
}
frame 10 {
_parent.setScreen(next_screen);
}
frame 20 {
removeMovieClip(this);
}
}
movieClip 26 {
}
movieClip 27 {
}
movieClip 30 {
}
movieClip 31 {
}
movieClip 34 {
}
movieClip 42 {
}
movieClip 46 {
}
movieClip 48 {
frame 1 {
if (first_run != undefined) {
return undefined;
} else {
first_run = true;
}
t._alpha = 50;
stop();
if (_root.global_sound == undefined) {
_root.global_sound = new Sound();
_root.global_sound.setVolume(100);
}
if (_root.global_sound.getVolume() == 30) {
gotoAndStop(2);
} else {
if (_root.global_sound.getVolume() == 0) {
gotoAndStop(1);
}
}
spot.onPress = function () {
if (_currentframe == 1) {
_root.global_sound.setVolume(30);
gotoAndStop(2);
} else {
if (_currentframe == 2) {
_root.global_sound.setVolume(0);
gotoAndStop(3);
} else {
_root.global_sound.setVolume(100);
gotoAndStop(1);
}
}
};
spot.onRollOver = function () {
t._alpha = 100;
};
spot.onReleaseOutside = function () {
t._alpha = 50;
};
spot.onRollOut = spot.onReleaseOutside;
}
}
movieClip 50 mainmenu {
frame 1 {
stop();
play_btn.onPress = function () {
_root.gotoScreen('screen1');
};
MNF_btn.onPress = function () {
getURL('http://www.meetandfuckgames.com/', '_blank');
};
}
}
movieClip 55 {
frame 1 {
_visible = false;
}
}
// unknown tag 88 length 282
movieClip 101 {
}
movieClip 122 {
}
movieClip 148 {
}
movieClip 176 {
}
movieClip 195 screen1 {
frame 1 {
_root.varscreen1 = false;
_root.varscreen2 = false;
_root.endgamevar = false;
}
frame 35 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 85 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 99 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 114 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 129 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 143 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 157 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 212 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 238 {
stop();
_root.gotoScreen('screen2');
}
}
movieClip 249 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 65 {
randomFlag();
}
frame 96 {
randomFlag();
}
}
movieClip 250 {
}
movieClip 252 {
}
movieClip 275 {
}
movieClip 298 {
}
movieClip 325 {
}
movieClip 352 {
}
movieClip 353 {
}
movieClip 365 {
}
movieClip 367 {
}
movieClip 369 {
}
movieClip 371 {
}
movieClip 373 {
}
movieClip 375 {
}
movieClip 377 {
}
movieClip 379 {
}
movieClip 381 {
}
movieClip 383 {
}
movieClip 385 {
}
movieClip 387 {
}
movieClip 389 {
}
movieClip 391 {
}
movieClip 393 {
}
movieClip 395 {
}
movieClip 397 {
}
movieClip 399 {
}
movieClip 401 {
}
movieClip 404 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 407 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 99 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 409 {
}
movieClip 411 {
}
movieClip 413 {
}
movieClip 415 {
}
movieClip 416 {
}
movieClip 418 {
}
movieClip 420 {
}
movieClip 421 {
}
movieClip 423 {
}
movieClip 425 {
}
movieClip 426 {
}
movieClip 427 {
}
movieClip 461 {
}
movieClip 464 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 467 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 99 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 468 {
}
movieClip 484 {
}
movieClip 490 {
}
movieClip 493 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 496 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 99 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 498 {
}
movieClip 500 {
}
movieClip 502 {
}
movieClip 504 {
}
movieClip 506 {
}
movieClip 508 {
}
movieClip 512 {
}
movieClip 514 {
}
movieClip 516 {
}
movieClip 518 {
}
movieClip 520 {
}
movieClip 522 {
}
movieClip 524 {
}
movieClip 526 {
}
movieClip 528 {
}
movieClip 530 {
}
movieClip 532 {
}
movieClip 534 {
}
movieClip 536 {
}
movieClip 538 {
}
movieClip 540 {
}
movieClip 542 {
}
movieClip 544 {
}
movieClip 546 {
}
movieClip 548 {
}
movieClip 556 {
}
movieClip 561 {
}
movieClip 563 {
}
movieClip 565 {
}
movieClip 567 {
}
movieClip 569 {
}
movieClip 570 {
}
movieClip 572 {
}
movieClip 574 {
}
movieClip 576 {
}
movieClip 578 {
}
movieClip 580 {
}
movieClip 582 {
}
movieClip 584 {
}
movieClip 586 {
}
movieClip 588 {
}
movieClip 590 {
}
movieClip 592 {
}
movieClip 594 {
}
movieClip 596 {
}
movieClip 598 {
}
movieClip 600 {
}
movieClip 602 {
}
movieClip 604 {
}
movieClip 606 {
}
movieClip 608 {
}
movieClip 610 {
}
movieClip 615 {
}
movieClip 618 {
}
movieClip 621 {
}
movieClip 623 {
}
movieClip 625 {
}
movieClip 626 {
}
movieClip 627 {
}
movieClip 631 {
}
movieClip 634 {
}
movieClip 642 {
}
movieClip 643 {
}
movieClip 646 {
}
movieClip 660 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 110 {
randomFlag();
}
}
movieClip 663 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 15 {
randomFlag();
}
frame 32 {
randomFlag();
}
}
movieClip 665 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 12 {
randomFlag();
}
frame 26 {
randomFlag();
}
}
movieClip 667 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 20 {
randomFlag();
}
frame 44 {
randomFlag();
}
}
movieClip 669 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 14 {
randomFlag();
}
frame 25 {
randomFlag();
}
}
movieClip 670 {
}
movieClip 671 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 20 {
randomFlag();
}
frame 43 {
randomFlag();
}
}
movieClip 672 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 26 {
randomFlag();
}
frame 56 {
randomFlag();
}
}
movieClip 673 {
}
movieClip 674 {
}
movieClip 675 {
}
movieClip 679 {
}
movieClip 683 {
}
movieClip 686 {
}
movieClip 689 screen2 {
frame 31 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 71 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 107 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 122 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 137 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 151 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 165 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 178 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 191 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 204 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 218 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 250 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 261 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 273 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 301 {
stop();
_root.gotoScreen('screen3');
}
}
movieClip 692 {
}
movieClip 701 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 64 {
randomFlag();
}
frame 125 {
randomFlag();
}
}
movieClip 703 {
}
movieClip 704 {
}
movieClip 706 {
frame 1 {
stop();
}
frame 70 {
stop();
_parent.play();
}
}
movieClip 710 {
}
movieClip 711 {
}
movieClip 713 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 716 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 99 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 718 {
}
movieClip 720 {
}
movieClip 721 {
}
movieClip 722 {
}
movieClip 723 {
}
movieClip 724 {
}
movieClip 733 {
}
movieClip 739 {
}
movieClip 748 {
}
movieClip 749 screen3 {
frame 10 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 22 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 26 {
stop();
painting.play();
}
frame 34 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 48 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 61 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 73 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 85 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 98 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 111 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 115 {
stop();
_root.gotoScreen('screen4');
}
}
movieClip 766 {
}
movieClip 768 {
}
movieClip 770 {
}
movieClip 774 {
}
movieClip 776 {
}
movieClip 778 {
}
movieClip 785 {
}
movieClip 788 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 64 {
randomFlag();
}
frame 125 {
randomFlag();
}
}
movieClip 798 {
}
movieClip 802 {
}
movieClip 807 {
}
movieClip 817 {
}
movieClip 819 {
}
movieClip 828 {
}
movieClip 830 {
}
movieClip 832 {
}
movieClip 855 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 115 {
randomFlag();
}
}
movieClip 858 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 35 {
randomFlag();
}
frame 69 {
randomFlag();
}
}
movieClip 861 {
}
movieClip 865 {
}
movieClip 868 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 115 {
randomFlag();
}
}
movieClip 870 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 30 {
randomFlag();
}
frame 59 {
randomFlag();
}
}
movieClip 873 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 115 {
randomFlag();
}
}
movieClip 875 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 20 {
randomFlag();
}
frame 39 {
randomFlag();
}
}
movieClip 877 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 15 {
randomFlag();
}
frame 29 {
randomFlag();
}
}
movieClip 878 {
}
movieClip 880 {
}
movieClip 882 {
}
movieClip 884 {
}
movieClip 886 {
}
movieClip 888 {
}
movieClip 918 {
}
movieClip 928 {
}
movieClip 944 {
}
movieClip 946 {
}
movieClip 948 {
}
movieClip 969 {
}
movieClip 978 {
frame 1 {
stop();
}
frame 2 {
_parent.sperm.play();
}
frame 40 {
_parent._parent.cumscr.play();
}
frame 91 {
gotoAndPlay('frame');
}
}
movieClip 980 {
frame 1 {
stop();
}
frame 10 {
stop();
}
}
movieClip 1069 {
}
movieClip 1071 {
frame 1 {
_visible = false;
}
}
movieClip 1072 {
}
movieClip 1076 {
}
movieClip 1077 {
}
movieClip 1079 {
frame 1 {
function changeValue(d_value) {
if (value >= 1) {
return undefined;
}
++i_val;
value_buf += d_value;
if (i_val == buf_vals) {
value_buf = 0;
i_val = 0;
}
value += d_value;
if (value >= 1) {
value = 1;
if (i_val != 0) {
sendIncreament(value_buf + 0.001);
}
_parent.onBarFilled();
} else {
if (value < 0) {
value = 0;
}
}
stripe._x = -(1 - value) * stripe._width;
stripe1._x = -(1 - value) * stripe1._width;
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
}
}
movieClip 1102 {
}
movieClip 1103 {
frame 1 {
function onBarFilled() {
cum_btn._visible = true;
btn_manually._visible = true;
}
cum_btn._visible = false;
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 50;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel._visible = false;
_parent.cumscr.gotoAndPlay(2);
};
}
}
movieClip 1107 {
}
movieClip 1116 {
frame 1 {
onEnterFrame = function () {
gotoAndStop(random(8) + 1);
};
}
}
movieClip 1117 {
}
movieClip 1118 {
frame 1 {
stop();
}
frame 31 {
stop();
}
frame 47 {
stop();
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
_root.gamevar1 = true;
}
}
movieClip 1120 {
}
movieClip 1123 screen4 {
frame 1 {
stop();
next_btn._visible = false;
mc_btn._visible = false;
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen20');
} else {
_root.gotoScreen('screen5');
}
};
anim_manager = new AnimManager(act, panel);
anim_manager.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 100, 'frame_end': 121, 'auto_speed': 0.04, 'face_settings': 'head=1,head1=1'});
anim_manager.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 60, 'frame_end': 121, 'auto_speed': 0.06, 'face_settings': 'head=2,head1=2'});
anim_manager.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 30, 'frame_end': 121, 'auto_speed': 0.14, 'face_settings': 'head=3,head1=3'});
anim_manager.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'head=4,head1=4'});
anim_manager.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': 'head=3,head1=3', 'cum_clips': 'cum1', 'face_settings_after_cum': 'head=1,head1=1'});
anim_manager.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'head=2,head1=1'});
anim_manager.AddSwing({'clip_name': 'boob', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'skirt1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager.AddSwing({'clip_name': 'skirt2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head.hair', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head1.hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager.AddSwing({'clip_name': 'head1.hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
onEnterFrame = function () {
anim_manager.Update(_xmouse, _ymouse);
};
}
}
movieClip 1124 {
}
movieClip 1137 {
}
movieClip 1140 screen5 {
frame 9 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 22 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 33 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 45 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 57 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 69 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 78 {
stop();
_root.gotoScreen('screen6');
}
}
movieClip 1142 {
}
movieClip 1167 {
}
movieClip 1169 {
}
movieClip 1185 {
}
movieClip 1194 {
}
movieClip 1196 {
}
movieClip 1198 {
}
movieClip 1200 {
}
movieClip 1202 {
}
movieClip 1204 {
}
movieClip 1206 {
}
movieClip 1208 {
}
movieClip 1210 {
}
movieClip 1212 {
}
movieClip 1214 {
}
movieClip 1216 {
}
movieClip 1218 {
}
movieClip 1220 {
}
movieClip 1222 {
}
movieClip 1224 {
}
movieClip 1226 {
}
movieClip 1228 {
}
movieClip 1230 {
}
movieClip 1232 {
}
movieClip 1234 {
}
movieClip 1236 {
}
movieClip 1238 {
}
movieClip 1239 {
}
movieClip 1241 {
}
movieClip 1243 {
}
movieClip 1245 {
}
movieClip 1247 {
}
movieClip 1249 {
}
movieClip 1251 {
}
movieClip 1253 {
}
movieClip 1255 {
}
movieClip 1257 {
}
movieClip 1259 {
}
movieClip 1261 {
}
movieClip 1263 {
}
movieClip 1265 {
}
movieClip 1267 {
}
movieClip 1269 {
}
movieClip 1271 {
}
movieClip 1273 {
}
movieClip 1275 {
}
movieClip 1277 {
}
movieClip 1279 {
}
movieClip 1281 {
}
movieClip 1283 {
}
movieClip 1285 {
}
movieClip 1287 {
}
movieClip 1288 {
}
movieClip 1289 {
}
movieClip 1297 {
}
movieClip 1298 {
}
movieClip 1301 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 125 {
randomFlag();
}
}
movieClip 1302 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 50 {
randomFlag();
}
frame 95 {
randomFlag();
}
}
movieClip 1303 {
}
movieClip 1311 {
}
movieClip 1313 {
}
movieClip 1315 {
}
movieClip 1317 {
}
movieClip 1318 {
}
movieClip 1320 {
}
movieClip 1322 {
}
movieClip 1324 {
}
movieClip 1326 {
}
movieClip 1328 {
}
movieClip 1330 {
}
movieClip 1332 {
}
movieClip 1333 {
}
movieClip 1334 {
}
movieClip 1335 {
}
movieClip 1336 {
}
movieClip 1338 {
}
movieClip 1339 {
}
movieClip 1340 {
}
movieClip 1342 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 60 {
randomFlag();
}
frame 120 {
randomFlag();
}
}
movieClip 1345 {
frame 1 {
randomFlag = function () {
gotoAndPlay('flag' + (random(2) + 1));
};
randomFlag();
}
frame 99 {
randomFlag();
}
frame 200 {
randomFlag();
}
}
movieClip 1346 {
}
movieClip 1348 {
}
movieClip 1349 {
}
movieClip 1350 {
}
movieClip 1352 {
}
movieClip 1354 {
}
movieClip 1355 {
}
movieClip 1357 {
}
movieClip 1359 {
}
movieClip 1360 {
}
movieClip 1361 {
}
movieClip 1362 {
}
movieClip 1367 {
}
movieClip 1374 {
}
movieClip 1379 {
}
movieClip 1380 screen6 {
frame 9 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 22 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 40 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 53 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 66 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 80 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 94 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 107 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 120 {
stop();
next_btn.onPress = function () {
play();
};
}
frame 125 {
stop();
_root.varscreen1 = false;
_root.gotoScreen('screen7');
}
}
movieClip 1383 {
}
movieClip 1384 {
}
movieClip 1386 {
}
movieClip 1388 {
}
movieClip 1394 {
}
movieClip 1396 {
frame 1 {
onEnterFrame = function () {
if (_root.varscreen1 == true) {
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
}
if (_root.varscreen1 == false) {
_parent.next_btn._visible = false;
_parent.mc_btn._visible = false;
}
};
}
}
movieClip 1397 screen7 {
frame 1 {
next_btn.onPress = function () {
if (_root.endgamevar == true) {
_root.gotoScreen('screen20');
} else {
_root.gotoScreen('screen12');
}
};
btn1.onPress = function () {
_root.gotoScreen('screen8');
};
btn2.onPress = function () {
_root.gotoScreen('screen9');
};
btn3.onPress = function () {
_root.gotoScreen('screen10');
};
btn4.onPress = function () {
_root.gotoScreen('screen11');
};
}
}
movieClip 1402 {
}
movieClip 1407 {
}
movieClip 1409 {
}
movieClip 1416 {
}
movieClip 1418 {
}
movieClip 1419 {
}
movieClip 1420 {
}
movieClip 1421 {
}
movieClip 1427 {
}
movieClip 1429 {
}
movieClip 1431 {
}
movieClip 1433 {
}
movieClip 1435 {
}
movieClip 1440 {
}
movieClip 1442 {
}
movieClip 1444 {
}
movieClip 1451 {
}
movieClip 1474 {
}
movieClip 1476 {
}
movieClip 1478 {
}
movieClip 1480 {
}
movieClip 1482 {
}
movieClip 1491 {
}
movieClip 1497 {
}
movieClip 1499 {
}
movieClip 1502 {
}
movieClip 1505 {
}
movieClip 1506 {
frame 1 {
stop();
}
}
movieClip 1520 {
}
movieClip 1525 {
}
movieClip 1532 {
frame 1 {
stop();
}
frame 2 {
_parent.sperm.play();
}
frame 40 {
_parent._parent._parent.var2 = true;
}
frame 92 {
gotoAndPlay('frame');
}
}
movieClip 1534 {
frame 1 {
stop();
}
frame 10 {
stop();
}
}
movieClip 1542 {
}
movieClip 1544 {
}
movieClip 1561 {
}
movieClip 1595 {
frame 1 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 2 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 3 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 4 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 5 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 6 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 7 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 8 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 9 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 10 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 11 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 12 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 13 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 14 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 15 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 16 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 17 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 18 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 19 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 20 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 21 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 22 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 23 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 24 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 25 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 26 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 27 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 28 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 29 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 30 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 31 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 32 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 33 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 34 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 35 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 36 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 37 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 38 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 39 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 40 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 41 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 42 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 43 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 44 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 45 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 46 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 47 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 48 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 49 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 50 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 51 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 52 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 53 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 54 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 55 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 56 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 57 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 58 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 59 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 60 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 61 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 62 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 63 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 64 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 65 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 66 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 67 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 68 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 69 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 70 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 71 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 72 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 73 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 74 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 75 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 76 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 77 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 78 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 79 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 80 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 81 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 82 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 83 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 84 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 85 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 86 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 87 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 88 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 89 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 90 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 91 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 92 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 93 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 94 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 95 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 96 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 97 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 98 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 99 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 100 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 101 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 102 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 103 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 104 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 105 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 106 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 107 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 108 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 109 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 110 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 111 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 112 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 113 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 114 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 115 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 116 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 117 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 118 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 119 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 120 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
frame 121 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
_parent.wings.gotoAndStop(_currentframe);
}
}
movieClip 1597 {
}
movieClip 1599 {
}
movieClip 1601 {
}
movieClip 1608 {
}
movieClip 1634 {
}
movieClip 1651 {
}
movieClip 1652 {
}
movieClip 1657 {
}
movieClip 1668 {
}
movieClip 1671 {
}
movieClip 1681 {
}
movieClip 1683 {
}
movieClip 1691 {
frame 1 {
stop();
}
frame 2 {
stop();
_parent._parent.cum_act3.cum.play();
}
}
movieClip 1726 {
frame 1 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 2 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 3 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 4 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 5 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 6 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 7 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 8 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 9 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 10 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 11 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 12 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 13 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 14 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 15 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 16 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 17 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 18 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 19 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 20 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 21 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 22 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 23 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 24 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 25 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 26 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 27 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 28 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 29 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 30 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 31 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 32 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 33 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 34 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 35 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 36 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 37 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 38 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 39 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 40 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 41 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 42 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 43 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 44 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 45 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 46 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 47 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 48 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 49 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 50 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 51 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 52 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 53 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 54 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 55 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 56 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 57 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 58 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 59 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 60 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 61 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 62 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 63 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 64 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 65 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 66 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 67 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 68 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 69 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 70 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 71 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 72 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 73 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 74 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 75 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 76 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 77 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 78 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 79 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 80 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 81 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 82 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 83 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 84 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 85 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 86 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 87 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 88 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 89 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 90 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 91 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 92 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 93 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 94 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 95 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 96 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 97 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 98 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 99 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 100 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 101 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 102 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 103 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 104 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 105 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 106 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 107 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 108 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 109 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 110 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 111 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 112 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 113 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 114 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 115 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 116 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 117 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 118 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 119 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 120 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 121 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
}
movieClip 1750 {
}
movieClip 1752 {
}
movieClip 1754 {
}
movieClip 1756 {
}
movieClip 1758 {
}
movieClip 1760 {
}
movieClip 1762 {
}
movieClip 1764 {
}
movieClip 1766 {
}
movieClip 1768 {
}
movieClip 1818 {
}
movieClip 1819 {
}
movieClip 1820 {
}
movieClip 1821 {
}
movieClip 1848 {
}
movieClip 1850 {
}
movieClip 1859 {
}
movieClip 1861 {
}
movieClip 1863 {
}
movieClip 1873 {
}
movieClip 1883 {
}
movieClip 1886 {
}
movieClip 1891 {
}
movieClip 1911 {
}
movieClip 1913 {
}
movieClip 1915 {
}
movieClip 1917 {
}
movieClip 1920 {
}
movieClip 1922 {
}
movieClip 1925 {
frame 1 {
_visible = false;
}
}
movieClip 1978 {
frame 1 {
stop();
}
frame 18 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm1._visible = true;
}
frame 32 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm2._visible = true;
}
frame 39 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm3._visible = true;
}
frame 49 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm4._visible = true;
}
frame 66 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm5._visible = true;
}
frame 77 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm6._visible = true;
}
frame 79 {
stop();
}
frame 79 {
_parent._parent._parent.var4 = true;
}
}
movieClip 2031 {
}
movieClip 2041 {
}
movieClip 2043 {
}
movieClip 2044 {
}
movieClip 2047 {
}
movieClip 2049 {
}
movieClip 2057 {
}
movieClip 2059 {
}
movieClip 2063 {
}
movieClip 2069 {
}
movieClip 2071 {
}
movieClip 2074 {
frame 1 {
_visible = false;
}
}
movieClip 2101 {
frame 1 {
stop();
}
frame 16 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm7._visible = true;
}
frame 21 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm8._visible = true;
}
frame 31 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm9._visible = true;
}
frame 45 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm10._visible = true;
}
frame 46 {
_parent._parent._parent.var3 = true;
}
frame 46 {
stop();
}
}
movieClip 2102 {
}
movieClip 2141 {
frame 1 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 2 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 3 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 4 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 5 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 6 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 7 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 8 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 9 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 10 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 11 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 12 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 13 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 14 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 15 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 16 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 17 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 18 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 19 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 20 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 21 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 22 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 23 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 24 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 25 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 26 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 27 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 28 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 29 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 30 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 31 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 32 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 33 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 34 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 35 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 36 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 37 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 38 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 39 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 40 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 41 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 42 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 43 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 44 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 45 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 46 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 47 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 48 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 49 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 50 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 51 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 52 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 53 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 54 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 55 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 56 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 57 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 58 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 59 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 60 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 61 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 62 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 63 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 64 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 65 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 66 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 67 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 68 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 69 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 70 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 71 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 72 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 73 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 74 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 75 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 76 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 77 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 78 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 79 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 80 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 81 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 82 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 83 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 84 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 85 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 86 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 87 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 88 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 89 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 90 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 91 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 92 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 93 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 94 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 95 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 96 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 97 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 98 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 99 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 100 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 101 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 102 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 103 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 104 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 105 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 106 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 107 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 108 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 109 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 110 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 111 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 112 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 113 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 114 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 115 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 116 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 117 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 118 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 119 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 120 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 121 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
}
movieClip 2142 {
}
movieClip 2143 {
}
movieClip 2144 {
frame 1 {
function changeValue(d_value) {
if (value >= 1) {
return undefined;
}
++i_val;
value_buf += d_value;
if (i_val == buf_vals) {
value_buf = 0;
i_val = 0;
}
value += d_value;
if (value >= 1) {
value = 1;
if (i_val != 0) {
sendIncreament(value_buf + 0.001);
}
_parent.onBarFilled();
} else {
if (value < 0) {
value = 0;
}
}
stripe._x = -(1 - value) * stripe._width;
stripe1._x = -(1 - value) * stripe1._width;
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
}
}
movieClip 2150 {
}
movieClip 2151 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
_parent.panel2.cum_btn._visible = true;
_parent.panel3.cum_btn._visible = true;
_parent.panel4.cum_btn._visible = true;
}
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 50;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2161 {
}
movieClip 2163 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel2._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2164 {
}
movieClip 2166 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel4._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2167 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel3._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2169 {
frame 1 {
onEnterFrame = function () {
if (_parent.var2 == true && _parent.var3 == true && _parent.var4 == true) {
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
}
};
}
}
movieClip 2170 {
frame 1 {
_visible = false;
}
}
movieClip 2171 screen8 {
frame 1 {
stop();
act.mc.boob2.boobs.boobs1.sperm1._visible = false;
act.mc.boob2.boobs.boobs1.sperm2._visible = false;
act.mc.boob2.boobs.boobs1.sperm3._visible = false;
act.mc.boob2.boobs.boobs1.sperm4._visible = false;
act.mc.boob2.boobs.boobs1.sperm5._visible = false;
act.mc.boob2.boobs.boobs1.sperm6._visible = false;
act.mc.boob2.boobs.boobs1.sperm7._visible = false;
act.mc.boob2.boobs.boobs1.sperm8._visible = false;
act.mc.boob2.boobs.boobs1.sperm9._visible = false;
act.mc.boob2.boobs.boobs1.sperm10._visible = false;
next_btn._visible = false;
mc_btn._visible = false;
next_btn.onPress = function () {
_root.gotoScreen('screen7');
_root.varscreen1 = true;
};
anim_manager1 = new AnimManager(act, panel1);
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager(act.act2, panel2);
panel2.anim_manager = anim_manager2;
anim_manager3 = new AnimManager(act.act3, panel3);
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager(act.act4, panel4);
panel4.anim_manager = anim_manager4;
anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'act2.head=1'});
anim_manager1.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.06, 'face_settings': 'act2.head=2'});
anim_manager1.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.12, 'face_settings': 'act2.head=3'});
anim_manager1.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'act2.head=4'});
anim_manager1.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'act2.head=1'});
anim_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager3.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager4.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager1.AddSwing({'clip_name': 'mc.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'mc11.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'skirt', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'ringears', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': '_parent.mc.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': '_parent.mc11.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager3.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
onEnterFrame = function () {
anim_manager1.Update(_xmouse, _ymouse);
anim_manager2.Update(_xmouse, _ymouse);
anim_manager3.Update(_xmouse, _ymouse);
anim_manager4.Update(_xmouse, _ymouse);
};
}
}
movieClip 2178 {
}
movieClip 2179 {
}
movieClip 2183 {
}
movieClip 2184 {
}
movieClip 2185 {
}
movieClip 2186 {
}
movieClip 2187 {
}
movieClip 2196 {
}
movieClip 2198 {
}
movieClip 2200 {
}
movieClip 2201 {
}
movieClip 2203 {
}
movieClip 2208 {
}
movieClip 2210 {
}
movieClip 2212 {
}
movieClip 2217 {
}
movieClip 2234 {
}
movieClip 2236 {
}
movieClip 2238 {
}
movieClip 2240 {
}
movieClip 2242 {
}
movieClip 2252 {
}
movieClip 2254 {
}
movieClip 2257 {
}
movieClip 2259 {
}
movieClip 2260 {
frame 1 {
stop();
}
}
movieClip 2268 {
}
movieClip 2272 {
frame 1 {
stop();
}
frame 2 {
_parent.sperm.play();
}
frame 40 {
_parent._parent._parent.var2 = true;
}
frame 92 {
gotoAndPlay('frame');
}
}
movieClip 2273 {
frame 1 {
stop();
}
frame 10 {
stop();
}
}
movieClip 2274 {
}
movieClip 2287 {
}
movieClip 2295 {
}
movieClip 2307 {
frame 1 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 2 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 3 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 4 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 5 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 6 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 7 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 8 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 9 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 10 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 11 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 12 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 13 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 14 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 15 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 16 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 17 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 18 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 19 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 20 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 21 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 22 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 23 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 24 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 25 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 26 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 27 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 28 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 29 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 30 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 31 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 32 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 33 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 34 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 35 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 36 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 37 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 38 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 39 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 40 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 41 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 42 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 43 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 44 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 45 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 46 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 47 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 48 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 49 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 50 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 51 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 52 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 53 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 54 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 55 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 56 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 57 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 58 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 59 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 60 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 61 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 62 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 63 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 64 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 65 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 66 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 67 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 68 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 69 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 70 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 71 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 72 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 73 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 74 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 75 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 76 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 77 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 78 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 79 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 80 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 81 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 82 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 83 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 84 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 85 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 86 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 87 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 88 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 89 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 90 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 91 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 92 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 93 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 94 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 95 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 96 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 97 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 98 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 99 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 100 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 101 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 102 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 103 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 104 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 105 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 106 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 107 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 108 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 109 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 110 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 111 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 112 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 113 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 114 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 115 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 116 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 117 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 118 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 119 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 120 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 121 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
}
movieClip 2309 {
}
movieClip 2311 {
}
movieClip 2313 {
}
movieClip 2318 {
}
movieClip 2336 {
}
movieClip 2349 {
}
movieClip 2350 {
}
movieClip 2354 {
}
movieClip 2364 {
}
movieClip 2366 {
}
movieClip 2370 {
}
movieClip 2371 {
}
movieClip 2377 {
frame 1 {
stop();
}
frame 2 {
stop();
_parent._parent.cum_act3.cum.play();
}
}
movieClip 2386 {
frame 1 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 2 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 3 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 4 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 5 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 6 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 7 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 8 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 9 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 10 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 11 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 12 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 13 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 14 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 15 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 16 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 17 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 18 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 19 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 20 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 21 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 22 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 23 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 24 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 25 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 26 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 27 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 28 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 29 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 30 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 31 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 32 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 33 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 34 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 35 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 36 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 37 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 38 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 39 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 40 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 41 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 42 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 43 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 44 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 45 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 46 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 47 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 48 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 49 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 50 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 51 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 52 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 53 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 54 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 55 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 56 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 57 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 58 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 59 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 60 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 61 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 62 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 63 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 64 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 65 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 66 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 67 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 68 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 69 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 70 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 71 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 72 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 73 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 74 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 75 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 76 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 77 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 78 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 79 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 80 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 81 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 82 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 83 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 84 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 85 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 86 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 87 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 88 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 89 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 90 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 91 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 92 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 93 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 94 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 95 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 96 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 97 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 98 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 99 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 100 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 101 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 102 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 103 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 104 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 105 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 106 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 107 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 108 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 109 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 110 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 111 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 112 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 113 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 114 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 115 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 116 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 117 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 118 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 119 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 120 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 121 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
}
movieClip 2403 {
}
movieClip 2404 {
}
movieClip 2405 {
}
movieClip 2406 {
}
movieClip 2407 {
}
movieClip 2408 {
}
movieClip 2409 {
}
movieClip 2410 {
}
movieClip 2412 {
}
movieClip 2413 {
}
movieClip 2440 {
}
movieClip 2441 {
}
movieClip 2442 {
}
movieClip 2443 {
}
movieClip 2451 {
}
movieClip 2465 {
}
movieClip 2478 {
}
movieClip 2480 {
}
movieClip 2484 {
}
movieClip 2485 {
}
movieClip 2486 {
}
movieClip 2490 {
}
movieClip 2499 {
}
movieClip 2501 {
}
movieClip 2504 {
}
movieClip 2520 {
}
movieClip 2521 {
}
movieClip 2522 {
}
movieClip 2524 {
}
movieClip 2525 {
}
movieClip 2526 {
}
movieClip 2527 {
frame 1 {
_visible = false;
}
}
movieClip 2564 {
frame 1 {
stop();
}
frame 18 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm1._visible = true;
}
frame 32 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm2._visible = true;
}
frame 39 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm3._visible = true;
}
frame 49 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm4._visible = true;
}
frame 66 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm5._visible = true;
}
frame 77 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm6._visible = true;
}
frame 79 {
stop();
}
frame 79 {
_parent._parent._parent.var4 = true;
}
}
movieClip 2601 {
}
movieClip 2606 {
}
movieClip 2608 {
}
movieClip 2609 {
}
movieClip 2611 {
}
movieClip 2612 {
}
movieClip 2619 {
}
movieClip 2620 {
}
movieClip 2622 {
}
movieClip 2627 {
}
movieClip 2628 {
}
movieClip 2629 {
frame 1 {
_visible = false;
}
}
movieClip 2630 {
frame 1 {
stop();
}
frame 16 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm7._visible = true;
}
frame 21 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm8._visible = true;
}
frame 31 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm9._visible = true;
}
frame 45 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm10._visible = true;
}
frame 46 {
_parent._parent._parent.var3 = true;
}
frame 46 {
stop();
}
}
movieClip 2631 {
}
movieClip 2659 {
frame 1 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 2 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 3 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 4 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 5 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 6 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 7 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 8 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 9 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 10 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 11 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 12 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 13 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 14 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 15 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 16 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 17 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 18 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 19 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 20 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 21 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 22 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 23 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 24 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 25 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 26 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 27 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 28 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 29 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 30 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 31 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 32 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 33 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 34 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 35 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 36 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 37 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 38 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 39 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 40 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 41 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 42 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 43 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 44 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 45 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 46 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 47 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 48 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 49 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 50 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 51 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 52 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 53 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 54 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 55 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 56 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 57 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 58 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 59 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 60 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 61 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 62 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 63 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 64 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 65 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 66 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 67 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 68 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 69 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 70 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 71 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 72 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 73 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 74 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 75 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 76 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 77 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 78 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 79 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 80 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 81 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 82 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 83 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 84 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 85 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 86 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 87 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 88 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 89 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 90 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 91 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 92 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 93 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 94 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 95 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 96 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 97 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 98 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 99 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 100 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 101 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 102 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 103 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 104 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 105 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 106 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 107 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 108 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 109 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 110 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 111 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 112 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 113 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 114 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 115 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 116 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 117 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 118 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 119 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 120 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 121 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
}
movieClip 2661 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
_parent.panel2.cum_btn._visible = true;
_parent.panel3.cum_btn._visible = true;
_parent.panel4.cum_btn._visible = true;
}
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 50;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2666 {
}
movieClip 2667 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel2._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2668 {
}
movieClip 2670 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel4._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2671 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel3._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 2672 {
frame 1 {
onEnterFrame = function () {
if (_parent.var2 == true && _parent.var3 == true && _parent.var4 == true) {
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
}
};
}
}
movieClip 2673 screen9 {
frame 1 {
stop();
act.mc.boob2.boobs.boobs1.sperm1._visible = false;
act.mc.boob2.boobs.boobs1.sperm2._visible = false;
act.mc.boob2.boobs.boobs1.sperm3._visible = false;
act.mc.boob2.boobs.boobs1.sperm4._visible = false;
act.mc.boob2.boobs.boobs1.sperm5._visible = false;
act.mc.boob2.boobs.boobs1.sperm6._visible = false;
act.mc.boob2.boobs.boobs1.sperm7._visible = false;
act.mc.boob2.boobs.boobs1.sperm8._visible = false;
act.mc.boob2.boobs.boobs1.sperm9._visible = false;
act.mc.boob2.boobs.boobs1.sperm10._visible = false;
next_btn._visible = false;
mc_btn._visible = false;
next_btn.onPress = function () {
_root.gotoScreen('screen7');
_root.varscreen1 = true;
};
anim_manager1 = new AnimManager(act, panel1);
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager(act.act2, panel2);
panel2.anim_manager = anim_manager2;
anim_manager3 = new AnimManager(act.act3, panel3);
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager(act.act4, panel4);
panel4.anim_manager = anim_manager4;
anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'act2.head=1'});
anim_manager1.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.06, 'face_settings': 'act2.head=2'});
anim_manager1.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.12, 'face_settings': 'act2.head=3'});
anim_manager1.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'act2.head=4'});
anim_manager1.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'act2.head=1'});
anim_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager3.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager4.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager1.AddSwing({'clip_name': 'mc.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'mc11.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'skirt1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'skirt2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'skirt3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'ringears', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': '_parent.mc.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': '_parent.mc11.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager3.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
onEnterFrame = function () {
anim_manager1.Update(_xmouse, _ymouse);
anim_manager2.Update(_xmouse, _ymouse);
anim_manager3.Update(_xmouse, _ymouse);
anim_manager4.Update(_xmouse, _ymouse);
};
}
}
movieClip 2680 {
}
movieClip 2681 {
}
movieClip 2685 {
}
movieClip 2686 {
}
movieClip 2687 {
}
movieClip 2688 {
}
movieClip 2689 {
}
movieClip 2695 {
}
movieClip 2697 {
}
movieClip 2699 {
}
movieClip 2700 {
}
movieClip 2702 {
}
movieClip 2708 {
}
movieClip 2710 {
}
movieClip 2712 {
}
movieClip 2717 {
}
movieClip 2734 {
}
movieClip 2735 {
}
movieClip 2737 {
}
movieClip 2739 {
}
movieClip 2741 {
}
movieClip 2759 {
}
movieClip 2764 {
}
movieClip 2766 {
}
movieClip 2769 {
}
movieClip 2771 {
}
movieClip 2772 {
frame 1 {
stop();
}
}
movieClip 2782 {
}
movieClip 2791 {
}
movieClip 2795 {
frame 1 {
stop();
}
frame 2 {
_parent.sperm.play();
}
frame 40 {
_parent._parent._parent.var2 = true;
}
frame 92 {
gotoAndPlay('frame');
}
}
movieClip 2796 {
frame 1 {
stop();
}
frame 10 {
stop();
}
}
movieClip 2797 {
}
movieClip 2806 {
}
movieClip 2818 {
}
movieClip 2829 {
frame 1 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 2 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 3 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 4 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 5 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 6 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 7 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 8 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 9 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 10 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 11 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 12 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 13 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 14 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 15 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 16 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 17 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 18 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 19 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 20 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 21 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 22 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 23 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 24 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 25 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 26 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 27 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 28 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 29 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 30 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 31 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 32 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 33 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 34 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 35 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 36 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 37 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 38 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 39 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 40 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 41 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 42 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 43 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 44 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 45 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 46 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 47 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 48 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 49 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 50 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 51 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 52 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 53 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 54 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 55 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 56 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 57 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 58 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 59 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 60 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 61 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 62 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 63 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 64 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 65 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 66 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 67 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 68 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 69 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 70 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 71 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 72 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 73 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 74 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 75 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 76 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 77 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 78 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 79 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 80 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 81 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 82 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 83 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 84 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 85 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 86 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 87 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 88 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 89 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 90 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 91 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 92 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 93 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 94 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 95 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 96 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 97 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 98 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 99 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 100 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 101 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 102 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 103 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 104 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 105 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 106 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 107 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 108 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 109 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 110 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 111 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 112 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 113 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 114 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 115 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 116 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 117 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 118 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 119 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 120 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 121 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
}
movieClip 2831 {
}
movieClip 2833 {
}
movieClip 2835 {
}
movieClip 2840 {
}
movieClip 2858 {
}
movieClip 2867 {
}
movieClip 2868 {
}
movieClip 2872 {
}
movieClip 2882 {
}
movieClip 2884 {
}
movieClip 2888 {
}
movieClip 2889 {
}
movieClip 2895 {
frame 1 {
stop();
}
frame 2 {
stop();
_parent._parent.cum_act3.cum.play();
}
}
movieClip 2905 {
frame 1 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 2 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 3 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 4 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 5 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 6 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 7 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 8 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 9 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 10 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 11 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 12 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 13 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 14 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 15 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 16 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 17 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 18 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 19 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 20 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 21 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 22 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 23 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 24 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 25 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 26 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 27 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 28 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 29 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 30 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 31 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 32 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 33 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 34 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 35 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 36 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 37 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 38 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 39 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 40 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 41 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 42 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 43 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 44 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 45 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 46 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 47 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 48 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 49 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 50 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 51 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 52 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 53 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 54 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 55 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 56 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 57 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 58 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 59 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 60 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 61 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 62 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 63 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 64 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 65 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 66 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 67 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 68 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 69 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 70 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 71 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 72 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 73 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 74 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 75 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 76 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 77 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 78 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 79 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 80 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 81 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 82 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 83 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 84 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 85 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 86 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 87 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 88 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 89 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 90 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 91 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 92 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 93 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 94 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 95 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 96 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 97 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 98 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 99 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 100 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 101 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 102 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 103 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 104 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 105 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 106 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 107 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 108 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 109 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 110 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 111 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 112 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 113 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 114 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 115 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 116 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 117 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 118 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 119 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 120 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 121 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
}
movieClip 2924 {
}
movieClip 2925 {
}
movieClip 2926 {
}
movieClip 2927 {
}
movieClip 2928 {
}
movieClip 2929 {
}
movieClip 2930 {
}
movieClip 2931 {
}
movieClip 2933 {
}
movieClip 2934 {
}
movieClip 2968 {
}
movieClip 2969 {
}
movieClip 2970 {
}
movieClip 2971 {
}
movieClip 2981 {
}
movieClip 2986 {
}
movieClip 2989 {
}
movieClip 2991 {
}
movieClip 2995 {
}
movieClip 2996 {
}
movieClip 2997 {
}
movieClip 3008 {
}
movieClip 3017 {
}
movieClip 3019 {
}
movieClip 3022 {
}
movieClip 3037 {
}
movieClip 3038 {
}
movieClip 3039 {
}
movieClip 3041 {
}
movieClip 3042 {
}
movieClip 3043 {
}
movieClip 3044 {
frame 1 {
_visible = false;
}
}
movieClip 3081 {
frame 1 {
stop();
}
frame 18 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm1._visible = true;
}
frame 32 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm2._visible = true;
}
frame 39 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm3._visible = true;
}
frame 49 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm4._visible = true;
}
frame 66 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm5._visible = true;
}
frame 77 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm6._visible = true;
}
frame 79 {
stop();
}
frame 79 {
_parent._parent._parent.var4 = true;
}
}
movieClip 3119 {
}
movieClip 3129 {
}
movieClip 3131 {
}
movieClip 3132 {
}
movieClip 3134 {
}
movieClip 3135 {
}
movieClip 3142 {
}
movieClip 3143 {
}
movieClip 3145 {
}
movieClip 3150 {
}
movieClip 3151 {
}
movieClip 3152 {
frame 1 {
_visible = false;
}
}
movieClip 3153 {
frame 1 {
stop();
}
frame 16 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm7._visible = true;
}
frame 21 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm8._visible = true;
}
frame 31 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm9._visible = true;
}
frame 45 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm10._visible = true;
}
frame 46 {
_parent._parent._parent.var3 = true;
}
frame 46 {
stop();
}
}
movieClip 3154 {
}
movieClip 3183 {
frame 1 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 2 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 3 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 4 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 5 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 6 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 7 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 8 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 9 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 10 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 11 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 12 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 13 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 14 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 15 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 16 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 17 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 18 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 19 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 20 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 21 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 22 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 23 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 24 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 25 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 26 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 27 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 28 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 29 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 30 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 31 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 32 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 33 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 34 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 35 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 36 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 37 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 38 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 39 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 40 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 41 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 42 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 43 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 44 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 45 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 46 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 47 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 48 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 49 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 50 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 51 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 52 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 53 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 54 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 55 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 56 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 57 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 58 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 59 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 60 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 61 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 62 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 63 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 64 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 65 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 66 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 67 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 68 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 69 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 70 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 71 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 72 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 73 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 74 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 75 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 76 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 77 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 78 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 79 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 80 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 81 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 82 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 83 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 84 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 85 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 86 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 87 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 88 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 89 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 90 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 91 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 92 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 93 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 94 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 95 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 96 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 97 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 98 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 99 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 100 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 101 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 102 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 103 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 104 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 105 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 106 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 107 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 108 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 109 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 110 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 111 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 112 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 113 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 114 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 115 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 116 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 117 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 118 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 119 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 120 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 121 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
}
movieClip 3184 {
}
movieClip 3185 {
}
movieClip 3186 {
frame 1 {
function changeValue(d_value) {
if (value >= 1) {
return undefined;
}
++i_val;
value_buf += d_value;
if (i_val == buf_vals) {
value_buf = 0;
i_val = 0;
}
value += d_value;
if (value >= 1) {
value = 1;
if (i_val != 0) {
sendIncreament(value_buf + 0.001);
}
_parent.onBarFilled();
} else {
if (value < 0) {
value = 0;
}
}
stripe._x = -(1 - value) * stripe._width;
stripe1._x = -(1 - value) * stripe1._width;
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
}
}
movieClip 3193 {
}
movieClip 3194 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
_parent.panel2.cum_btn._visible = true;
_parent.panel3.cum_btn._visible = true;
_parent.panel4.cum_btn._visible = true;
}
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 50;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3199 {
}
movieClip 3201 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel2._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3202 {
}
movieClip 3204 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel4._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3205 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel3._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3206 {
frame 1 {
onEnterFrame = function () {
if (_parent.var2 == true && _parent.var3 == true && _parent.var4 == true) {
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
}
};
}
}
movieClip 3207 {
frame 1 {
_visible = false;
}
}
movieClip 3208 screen10 {
frame 1 {
stop();
act.mc.boob2.boobs.boobs1.sperm1._visible = false;
act.mc.boob2.boobs.boobs1.sperm2._visible = false;
act.mc.boob2.boobs.boobs1.sperm3._visible = false;
act.mc.boob2.boobs.boobs1.sperm4._visible = false;
act.mc.boob2.boobs.boobs1.sperm5._visible = false;
act.mc.boob2.boobs.boobs1.sperm6._visible = false;
act.mc.boob2.boobs.boobs1.sperm7._visible = false;
act.mc.boob2.boobs.boobs1.sperm8._visible = false;
act.mc.boob2.boobs.boobs1.sperm9._visible = false;
act.mc.boob2.boobs.boobs1.sperm10._visible = false;
next_btn._visible = false;
mc_btn._visible = false;
next_btn.onPress = function () {
_root.gotoScreen('screen7');
_root.varscreen1 = true;
};
anim_manager1 = new AnimManager(act, panel1);
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager(act.act2, panel2);
panel2.anim_manager = anim_manager2;
anim_manager3 = new AnimManager(act.act3, panel3);
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager(act.act4, panel4);
panel4.anim_manager = anim_manager4;
anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'act2.head=1'});
anim_manager1.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.06, 'face_settings': 'act2.head=2'});
anim_manager1.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.12, 'face_settings': 'act2.head=3'});
anim_manager1.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'act2.head=4'});
anim_manager1.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'act2.head=1'});
anim_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager3.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager4.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager1.AddSwing({'clip_name': 'mc.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'mc11.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'dress1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'dress2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'belt', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair6', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'ringears', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': '_parent.mc.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': '_parent.mc11.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager3.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
onEnterFrame = function () {
anim_manager1.Update(_xmouse, _ymouse);
anim_manager2.Update(_xmouse, _ymouse);
anim_manager3.Update(_xmouse, _ymouse);
anim_manager4.Update(_xmouse, _ymouse);
};
}
}
movieClip 3215 {
}
movieClip 3216 {
}
movieClip 3220 {
}
movieClip 3221 {
}
movieClip 3222 {
}
movieClip 3223 {
}
movieClip 3224 {
}
movieClip 3236 {
}
movieClip 3238 {
}
movieClip 3240 {
}
movieClip 3241 {
}
movieClip 3243 {
}
movieClip 3248 {
}
movieClip 3250 {
}
movieClip 3252 {
}
movieClip 3257 {
}
movieClip 3274 {
}
movieClip 3276 {
}
movieClip 3277 {
}
movieClip 3279 {
}
movieClip 3281 {
}
movieClip 3289 {
}
movieClip 3293 {
}
movieClip 3295 {
}
movieClip 3297 {
}
movieClip 3299 {
}
movieClip 3300 {
frame 1 {
stop();
}
}
movieClip 3312 {
}
movieClip 3324 {
}
movieClip 3326 {
}
movieClip 3330 {
frame 1 {
stop();
}
frame 2 {
_parent.sperm.play();
}
frame 40 {
_parent._parent._parent.var2 = true;
}
frame 92 {
gotoAndPlay('frame');
}
}
movieClip 3331 {
frame 1 {
stop();
}
frame 10 {
stop();
}
}
movieClip 3332 {
}
movieClip 3344 {
}
movieClip 3355 {
frame 1 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 2 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 3 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 4 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 5 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 6 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 7 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 8 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 9 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 10 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 11 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 12 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 13 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 14 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 15 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 16 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 17 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 18 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 19 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 20 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 21 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 22 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 23 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 24 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 25 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 26 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 27 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 28 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 29 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 30 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 31 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 32 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 33 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 34 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 35 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 36 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 37 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 38 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 39 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 40 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 41 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 42 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 43 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 44 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 45 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 46 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 47 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 48 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 49 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 50 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 51 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 52 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 53 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 54 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 55 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 56 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 57 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 58 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 59 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 60 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 61 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 62 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 63 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 64 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 65 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 66 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 67 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 68 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 69 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 70 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 71 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 72 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 73 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 74 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 75 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 76 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 77 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 78 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 79 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 80 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 81 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 82 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 83 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 84 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 85 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 86 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 87 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 88 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 89 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 90 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 91 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 92 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 93 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 94 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 95 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 96 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 97 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 98 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 99 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 100 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 101 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 102 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 103 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 104 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 105 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 106 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 107 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 108 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 109 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 110 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 111 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 112 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 113 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 114 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 115 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 116 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 117 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 118 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 119 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 120 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
frame 121 {
_parent.act3.hand.gotoAndStop(_currentframe);
_parent.mc.gotoAndStop(_currentframe);
_parent.mc11.gotoAndStop(_currentframe);
}
}
movieClip 3357 {
}
movieClip 3359 {
}
movieClip 3361 {
}
movieClip 3366 {
}
movieClip 3384 {
}
movieClip 3396 {
}
movieClip 3397 {
}
movieClip 3401 {
}
movieClip 3411 {
}
movieClip 3413 {
}
movieClip 3417 {
}
movieClip 3418 {
}
movieClip 3424 {
frame 1 {
stop();
}
frame 2 {
stop();
_parent._parent.cum_act3.cum.play();
}
}
movieClip 3434 {
frame 1 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 2 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 3 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 4 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 5 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 6 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 7 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 8 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 9 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 10 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 11 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 12 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 13 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 14 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 15 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 16 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 17 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 18 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 19 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 20 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 21 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 22 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 23 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 24 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 25 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 26 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 27 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 28 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 29 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 30 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 31 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 32 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 33 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 34 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 35 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 36 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 37 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 38 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 39 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 40 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 41 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 42 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 43 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 44 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 45 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 46 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 47 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 48 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 49 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 50 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 51 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 52 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 53 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 54 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 55 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 56 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 57 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 58 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 59 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 60 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 61 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 62 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 63 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 64 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 65 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 66 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 67 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 68 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 69 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 70 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 71 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 72 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 73 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 74 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 75 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 76 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 77 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 78 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 79 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 80 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 81 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 82 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 83 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 84 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 85 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 86 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 87 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 88 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 89 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 90 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 91 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 92 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 93 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 94 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 95 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 96 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 97 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 98 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 99 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 100 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 101 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 102 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 103 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 104 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 105 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 106 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 107 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 108 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 109 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 110 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 111 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 112 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 113 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 114 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 115 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 116 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 117 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 118 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 119 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 120 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
frame 121 {
hand.hand_mc.gotoAndStop(_currentframe);
_parent.cum_act3.gotoAndStop(_currentframe);
_parent.mc22.gotoAndStop(_currentframe);
}
}
movieClip 3454 {
}
movieClip 3455 {
}
movieClip 3456 {
}
movieClip 3457 {
}
movieClip 3458 {
}
movieClip 3459 {
}
movieClip 3460 {
}
movieClip 3461 {
}
movieClip 3463 {
}
movieClip 3464 {
}
movieClip 3497 {
}
movieClip 3498 {
}
movieClip 3499 {
}
movieClip 3500 {
}
movieClip 3512 {
}
movieClip 3514 {
}
movieClip 3518 {
}
movieClip 3519 {
}
movieClip 3520 {
}
movieClip 3527 {
}
movieClip 3536 {
}
movieClip 3538 {
}
movieClip 3541 {
}
movieClip 3557 {
}
movieClip 3558 {
}
movieClip 3559 {
}
movieClip 3561 {
}
movieClip 3562 {
}
movieClip 3563 {
}
movieClip 3564 {
frame 1 {
_visible = false;
}
}
movieClip 3601 {
frame 1 {
stop();
}
frame 18 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm1._visible = true;
}
frame 32 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm2._visible = true;
}
frame 39 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm3._visible = true;
}
frame 49 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm4._visible = true;
}
frame 66 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm5._visible = true;
}
frame 77 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm6._visible = true;
}
frame 79 {
stop();
}
frame 79 {
_parent._parent._parent.var4 = true;
}
}
movieClip 3639 {
}
movieClip 3647 {
}
movieClip 3649 {
}
movieClip 3650 {
}
movieClip 3652 {
}
movieClip 3653 {
}
movieClip 3659 {
}
movieClip 3660 {
}
movieClip 3662 {
}
movieClip 3667 {
}
movieClip 3668 {
}
movieClip 3669 {
frame 1 {
_visible = false;
}
}
movieClip 3670 {
frame 1 {
stop();
}
frame 16 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm7._visible = true;
}
frame 21 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm8._visible = true;
}
frame 31 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm9._visible = true;
}
frame 45 {
_parent._parent._parent.act.mc.boob2.boobs.boobs1.sperm10._visible = true;
}
frame 46 {
_parent._parent._parent.var3 = true;
}
frame 46 {
stop();
}
}
movieClip 3671 {
}
movieClip 3698 {
frame 1 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 2 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 3 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 4 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 5 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 6 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 7 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 8 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 9 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 10 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 11 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 12 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 13 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 14 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 15 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 16 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 17 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 18 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 19 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 20 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 21 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 22 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 23 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 24 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 25 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 26 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 27 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 28 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 29 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 30 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 31 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 32 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 33 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 34 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 35 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 36 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 37 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 38 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 39 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 40 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 41 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 42 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 43 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 44 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 45 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 46 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 47 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 48 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 49 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 50 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 51 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 52 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 53 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 54 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 55 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 56 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 57 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 58 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 59 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 60 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 61 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 62 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 63 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 64 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 65 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 66 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 67 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 68 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 69 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 70 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 71 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 72 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 73 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 74 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 75 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 76 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 77 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 78 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 79 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 80 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 81 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 82 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 83 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 84 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 85 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 86 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 87 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 88 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 89 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 90 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 91 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 92 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 93 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 94 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 95 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 96 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 97 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 98 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 99 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 100 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 101 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 102 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 103 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 104 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 105 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 106 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 107 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 108 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 109 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 110 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 111 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 112 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 113 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 114 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 115 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 116 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 117 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 118 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 119 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 120 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
frame 121 {
act4.leg1.gotoAndStop(_currentframe);
act4.hand1.gotoAndStop(_currentframe);
mc.boob2.gotoAndStop(_currentframe);
mc11.boob2.gotoAndStop(_currentframe);
}
}
movieClip 3699 {
}
movieClip 3700 {
}
movieClip 3701 {
frame 1 {
function changeValue(d_value) {
if (value >= 1) {
return undefined;
}
++i_val;
value_buf += d_value;
if (i_val == buf_vals) {
value_buf = 0;
i_val = 0;
}
value += d_value;
if (value >= 1) {
value = 1;
if (i_val != 0) {
sendIncreament(value_buf + 0.001);
}
_parent.onBarFilled();
} else {
if (value < 0) {
value = 0;
}
}
stripe._x = -(1 - value) * stripe._width;
stripe1._x = -(1 - value) * stripe1._width;
}
var value = 0;
var value_buf = 0;
var buf_vals = 24;
var i_val = 0;
changeValue(0);
}
}
movieClip 3708 {
}
movieClip 3709 {
frame 1 {
function onBarFilled() {
btn_manually._visible = true;
_parent.panel2.cum_btn._visible = true;
_parent.panel3.cum_btn._visible = true;
_parent.panel4.cum_btn._visible = true;
}
btn_manually._visible = false;
var i = 0;
var btn_id = 0;
while (eval('btn_' + i) != undefined) {
if (i > 1) {
(eval('btn_' + i)).enabled = false;
(eval('btn_' + i))._alpha = 50;
}
++i;
}
var btns_count = i;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3714 {
}
movieClip 3716 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel2._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3717 {
}
movieClip 3719 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel4._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3720 {
frame 1 {
cum_btn._visible = false;
var i = 0;
var btn_id = 0;
onEnterFrame = function () {
if (bar.value < btn_id / (btns_count - 1)) {
bar.changeValue(0.001);
if (bar.value >= btn_id / (btns_count - 1)) {
(eval('btn_' + (btn_id + 1))).enabled = true;
(eval('btn_' + (btn_id + 1)))._alpha = 100;
}
}
};
cum_btn.postOnPress = function () {
_parent.panel3._visible = false;
};
btn_1.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_2.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
btn_3.postOnPress = function () {
_root.gotoScreen('screen_demo');
};
}
}
movieClip 3721 {
frame 1 {
onEnterFrame = function () {
if (_parent.var2 == true && _parent.var3 == true && _parent.var4 == true) {
_parent.next_btn._visible = true;
_parent.mc_btn._visible = true;
}
};
}
}
movieClip 3722 {
frame 1 {
_visible = false;
}
}
movieClip 3723 screen11 {
frame 1 {
stop();
act.mc.boob2.boobs.boobs1.sperm1._visible = false;
act.mc.boob2.boobs.boobs1.sperm2._visible = false;
act.mc.boob2.boobs.boobs1.sperm3._visible = false;
act.mc.boob2.boobs.boobs1.sperm4._visible = false;
act.mc.boob2.boobs.boobs1.sperm5._visible = false;
act.mc.boob2.boobs.boobs1.sperm6._visible = false;
act.mc.boob2.boobs.boobs1.sperm7._visible = false;
act.mc.boob2.boobs.boobs1.sperm8._visible = false;
act.mc.boob2.boobs.boobs1.sperm9._visible = false;
act.mc.boob2.boobs.boobs1.sperm10._visible = false;
next_btn._visible = false;
mc_btn._visible = false;
next_btn.onPress = function () {
_root.gotoScreen('screen7');
_root.varscreen1 = true;
};
anim_manager1 = new AnimManager(act, panel1);
panel1.anim_manager = anim_manager1;
anim_manager2 = new AnimManager(act.act2, panel2);
panel2.anim_manager = anim_manager2;
anim_manager3 = new AnimManager(act.act3, panel3);
panel3.anim_manager = anim_manager3;
anim_manager4 = new AnimManager(act.act4, panel4);
panel4.anim_manager = anim_manager4;
anim_manager1.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': 'act2.head=1'});
anim_manager1.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.06, 'face_settings': 'act2.head=2'});
anim_manager1.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.12, 'face_settings': 'act2.head=3'});
anim_manager1.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.22, 'face_settings': 'act2.head=4'});
anim_manager1.AddAct({'btn_name': 'btn_manually', 'type': AnimAct.TYPE_PENDULUM_MANUAL, 'frame_start': 1, 'frame_end': 121, 'mouse_movement': AnimAct.VERTICAL_MOVEMENT, 'reverse_mouse_control': 1, 'pixel_start': 140, 'pixel_width': 200, 'face_settings': 'act2.head=1'});
anim_manager2.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager2.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager3.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager3.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager4.AddAct({'btn_name': 'btn_0', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 20, 'auto_speed': 0.04, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_1', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 60, 'auto_speed': 0.05, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_2', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 90, 'auto_speed': 0.11, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'btn_3', 'type': AnimAct.TYPE_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.21, 'face_settings': ''});
anim_manager4.AddAct({'btn_name': 'cum_btn', 'type': AnimAct.TYPE_CUM_PENDULUM, 'frame_start': 1, 'frame_end': 121, 'auto_speed': 0.2, 'auto_fade_out_speed': 0.004, 'face_settings': '', 'cum_clips': 'cum1', 'face_settings_after_cum': ''});
anim_manager1.AddSwing({'clip_name': 'mc.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'mc11.boob2.boobs', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager1.AddSwing({'clip_name': 'skirt', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair1', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': 'hair2', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair3', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair4', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'hair5', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': 'ringears', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 1, 'reverse': 1});
anim_manager2.AddSwing({'clip_name': '_parent.mc.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager2.AddSwing({'clip_name': '_parent.mc11.boob2.boobs.boobs1', 'first_frame': 1, 'last_frame': 121, 'update_before_gravi': 0, 'reverse': 0});
anim_manager3.AddSwing({'clip_name': 'balls', 'first_frame': 1, 'last_frame': 61, 'update_before_gravi': 0, 'reverse': 0});
onEnterFrame = function () {
anim_manager1.Update(_xmouse, _ymouse);
anim_manager2.Update(_xmouse, _ymouse);
anim_manager3.Update(_xmouse, _ymouse);
anim_manager4.Update(_xmouse, _ymouse);
};
}
}
movieClip 3729 {
}
movieClip 3731 {
}
movieClip 3735 screen_demo {
frame 1 {
MNF_btn.onPress = function () {
if (_root.id == undefined) {
getURL('http://www.meetandfuckgames.com', '_blank');
} else {
getURL('http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=939775-0000&PA=' + _root.id, '_blank');
}
};
}
}
movieClip 3736 {
}
frame 3 {
function setScreen(clip_name) {
if (screen != undefined) {
removeMovieClip(screen);
}
attachMovie(clip_name, 'screen', 0);
}
function gotoScreen(clip_name) {
if (trans != undefined) {
removeMovieClip(trans);
}
(attachMovie('trans_screen', 'trans', 1)).next_screen = clip_name;
}
setScreen('mainmenu');
}