STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228128
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/17728999?noj=FRM17728999-14DC" width="1" height="1"></div>

thebestgameevar.swf

This is the info page for
Flash #81989

(Click the ID number above for more basic data on this flash file.)


ActionScript [AS1/AS2]
Frame 1
score.text = 0; health.text = 100;
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.score.text++; unloadMovie (this); } }
Instance of Symbol 23 MovieClip in Frame 1
onClipEvent (load) { enemyspeed = 2; enemystepsright = 0; enemystepsleft = 0; enemydir = "left"; } onClipEvent (enterFrame) { if (this.hitTest(_root.char.attackpoint)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.bulleter)) { enemyspeed = 0; enemystepsright = 0; enemystepsleft = 0; dead = true; this.gotoAndStop("dead"); } if (this.hitTest(_root.char) && (!dead)) { _root.char.jumping = false; _root.dead = true; } if (!dead) { if (enemydir == "right") { enemystepsright = enemystepsright + 1; this._xscale = -100; this._x = this._x + enemyspeed; } else if (enemydir == "left") { enemystepsleft = enemystepsleft + 1; this._xscale = 100; this._x = this._x - enemyspeed; } if (enemystepsright == 100) { enemystepsright = 0; enemydir = "left"; } else if (enemystepsleft == 100) { enemystepsleft = 0; enemydir = "right"; } } }
Instance of Symbol 40 MovieClip "char" in Frame 1
onClipEvent (load) { jumping = false; speed = 0; healthX = _root.health._x; scoreX = _root.score._x; Xpos = this._x; Ypos = this._y; maxmove = 15; _root.maxshoottime = 100; } onClipEvent (enterFrame) { _x = (Xpos - _root._x); _root.score._x = scoreX - _root._x; _root.health._x = healthX - _root._x; if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) { this._y = this._y + 6; } if (!_root.shooting) { _root.timer = 0; _root.mvsp = _xscale / 20; } if (_root.dead) { this.gotoAndStop("dead"); } else { speed = speed * 0.85; if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (speed > 0) { dir = "right"; } else if (speed < 0) { dir = "left"; } if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) { _root.health._x = _root.health._x + speed; _root.score._x = _root.score._x + speed; this._x = this._x + speed; _root._x = _root._x - speed; } if (Key.isDown(37)) { if (speed > (-maxmove)) { speed--; } this.gotoAndStop("run"); this._xscale = -100; } else if (Key.isDown(39)) { if (speed < maxmove) { speed++; } this._xscale = 100; this.gotoAndStop("run"); } else if (Key.isDown(17)) { this.gotoAndStop("attack"); attacking = true; speed = 0; } else if (Key.isDown(32)) { if ((_root.gotgun == true) && (!_root.shooting)) { _root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25}); _root.shooting = true; with (_root.bulleter) { onEnterFrame = function () { if (_root.timer > _root.maxshoottime) { _root.shooting = false; unloadMovie(this); } _root.timer++; _x = _x + _root.mvsp; }; } attacking = true; speed = 0; this.gotoAndStop("shoot"); } } else if (((speed < 1) && (speed > -1)) && (!attacking)) { speed = 0; this.gotoAndStop("idle"); } if (Key.isDown(38) && (!jumping)) { jumping = true; } if (jumping) { this.gotoAndStop("jump"); this._y = this._y - jump; jump = jump - 0.5; if (jump < 0) { falling = true; } if (jump < -15) { jump = -15; } } if (_root.ground.hitTest(this._x, this._y, true) && (falling)) { jump = 12; jumping = false; falling = false; } } } onClipEvent (keyUp) { if (Key.getCode() == 17) { attacking = false; } }
Instance of Symbol 38 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { _root.gotgun = true; unloadMovie (this); } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Instance of Symbol 11 MovieClip in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.char)) { if (_root.health.text <= 0) { _root.dead = true; } if (!_root.dead) { _root._x = 0; _root.health.text = _root.health.text - 5; _root.char._x = _root.char.startX; _root.char._y = _root.char.startY + (Stage.height / 2); _root.char.speed = 0; } } }
Symbol 22 MovieClip Frame 2
stop();
Symbol 23 MovieClip Frame 1
stop();
Symbol 23 MovieClip Frame 2
stop();
Symbol 36 MovieClip Frame 53
stop();
Symbol 40 MovieClip Frame 1
stop();
Symbol 40 MovieClip Frame 2
stop();
Symbol 40 MovieClip Frame 3
stop();
Symbol 40 MovieClip Frame 4
stop();
Symbol 40 MovieClip Frame 5
stop();
Symbol 40 MovieClip Frame 6
stop();

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [bullet]Uses:1
Symbol 3 GraphicUsed by:Timeline
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:Timeline
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:Timeline
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:Timeline
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:Timeline
Symbol 16 GraphicUsed by:21
Symbol 17 GraphicUsed by:21
Symbol 18 GraphicUsed by:21
Symbol 19 GraphicUsed by:21
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:16 17 18 19 20Used by:23
Symbol 22 MovieClipUsed by:23
Symbol 23 MovieClipUses:21 22Used by:Timeline
Symbol 24 FontUsed by:25 41
Symbol 25 EditableTextUses:24Used by:Timeline
Symbol 26 GraphicUsed by:27 28 29 30 36 39
Symbol 27 MovieClipUses:26Used by:40
Symbol 28 MovieClipUses:26Used by:40
Symbol 29 MovieClipUses:26Used by:40
Symbol 30 MovieClipUses:26Used by:40
Symbol 31 GraphicUsed by:36
Symbol 32 GraphicUsed by:36
Symbol 33 GraphicUsed by:36
Symbol 34 GraphicUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:26 31 32 33 34 35Used by:40
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:39  Timeline
Symbol 39 MovieClipUses:26 38Used by:40
Symbol 40 MovieClipUses:27 28 29 30 36 39Used by:Timeline
Symbol 41 EditableTextUses:24Used by:Timeline
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 SoundUsed by:Timeline

Instance Names

"rightblock"Frame 1Symbol 5 MovieClip
"leftblock"Frame 1Symbol 7 MovieClip
"ground"Frame 1Symbol 15 MovieClip
"health"Frame 1Symbol 25 EditableText
"char"Frame 1Symbol 40 MovieClip
"score"Frame 1Symbol 41 EditableText

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 2 as "bullet"

Labels

"walk"Symbol 23 MovieClip Frame 1
"dead"Symbol 23 MovieClip Frame 2
"idle"Symbol 40 MovieClip Frame 1
"run"Symbol 40 MovieClip Frame 2
"jump"Symbol 40 MovieClip Frame 3
"attack"Symbol 40 MovieClip Frame 4
"dead"Symbol 40 MovieClip Frame 5
"shoot"Symbol 40 MovieClip Frame 6




http://swfchan.com/17/81989/info.shtml
Created: 1/4 -2019 15:33:54 Last modified: 1/4 -2019 15:33:54 Server time: 14/05 -2024 16:19:11