Combined Code
movieClip 115 GameOver {
frame 71 {
stop();
}
}
movieClip 121 {
frame 28 {
stop();
}
}
movieClip 123 GetReady {
frame 1 {
stop();
}
frame 69 {
stop();
var listener = new Object();
listener.onKeyDown = function () {
var v2 = Key.getCode();
if (v2 == 32) {
_parent.startN = 20;
spst.play();
play();
listener = null;
}
};
Key.addListener(listener);
}
frame 80 {
stop();
this.removeMovieClip();
}
}
movieClip 125 Block1 {
}
movieClip 133 Block2 {
frame 1 {
stop();
}
}
movieClip 139 bubble {
frame 1 {
stop();
}
}
movieClip 141 {
}
button 145 {
on (release) {
loadNextSong();
}
}
movieClip 148 {
}
movieClip 153 {
frame 1 {
stop();
}
}
movieClip 156 {
frame 1 {
stop();
}
}
movieClip 160 {
frame 21 {
gotoAndPlay(1);
}
frame 22 {
stop();
}
}
movieClip 163 {
}
movieClip 165 {
}
movieClip 166 {
frame 1 {
function loadNew(n) {
sn = n;
song.stop();
var v3 = song.getVolume();
clearInterval(interval);
if (n == 5) {
if (cat) {
song = new Sound(this);
song.attachSound('slaughterhouse');
song.start(0, 1);
}
songinfo.displaytext.text = artists[sn] + ' - ' + songNames[sn];
} else {
song.loadSound('http://www.newgrounds.com/audio/download/' + songList[n], true);
interval = setInterval(percent, 100);
}
song.setVolume(v3);
}
function percent() {
var v1 = Math.ceil(100 * song.getBytesLoaded() / song.getBytesTotal());
songinfo.displaytext.text = artists[sn] + ' - ' + songNames[sn] + ' - ' + v1.toString() + '% loaded';
if (v1 >= 100) {
songinfo.displaytext.text = artists[sn] + ' - ' + songNames[sn];
clearInterval(interval);
}
}
function loadNextSong() {
++songN;
if (songN >= songList.length) {
songN = 0;
}
loadNew(songN);
}
function moveText() {
songinfo._x -= 2;
if (songinfo._x + songinfo.displaytext.text.length * 5 <= -100) {
songinfo._x = 200;
}
}
function resetVolume() {
var v1 = (slider._x - min) * (100 / (max - min));
song.setVolume(v1 / 2);
if (v1) {
spkr.gotoAndPlay('soundon');
} else {
spkr.gotoAndStop('soundoff');
}
gv = v1;
}
function setsVol(n) {
clearInterval(sIn);
sIn = setInterval(volum, 20, n);
sVol = n;
}
function volum(n) {
var v1 = gv - n;
if (v1 > 6) {
v1 = 6;
} else {
if (v1 < -6) {
v1 = -6;
}
}
slider._x -= v1;
resetVolume();
if (n == gv) {
clearInterval(sIn);
}
}
function addCat() {
cat = true;
songList.push('Secret1');
songNames.push('Secret Song #1');
artists.push('Catoblepas');
songN = 5;
loadNew(songN);
}
var song = new Sound(this);
var cat = false;
var songN = 0;
var songList = ['199974', '100395', '185891', '165190', '18731'];
var songNames = ['Kick A** Blues', 'Saturday Morning Funk', 'Death Took Me Under', 'Imagine This (Remix)', 'Endless Handbag'];
var artists = ['thatcomposerguy', 'YunVeroz', 'Nc321', 'JohnDare', 'FDA'];
var interval;
var min = 40;
var max = 130;
var sn;
var gv;
song.onSoundComplete = function () {
loadNextSong();
};
songinfo.setMask(bmpBox);
loadNew(songN);
setsVol(100);
}
instance slider of movieClip 148 {
onClipEvent (press) {
this.startDrag(false, _parent.min, _y, _parent.max, _y);
}
onClipEvent (release) {
this.stopDrag();
_parent.resetVolume();
}
}
instance of movieClip 153 {
onClipEvent (press) {
var vl = _parent.gv;
if (vl <= 25) {
_parent.setsVol(0);
} else {
if (vl <= 50) {
_parent.setsVol(25);
} else {
if (vl <= 75) {
_parent.setsVol(50);
} else {
_parent.setsVol(75);
}
}
}
gotoAndStop(1);
}
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
gotoAndStop(1);
}
}
instance of movieClip 156 {
onClipEvent (press) {
var vl = _parent.gv;
if (vl >= 75) {
_parent.setsVol(100);
} else {
if (vl >= 50) {
_parent.setsVol(75);
} else {
if (vl >= 25) {
_parent.setsVol(50);
} else {
_parent.setsVol(25);
}
}
}
gotoAndStop(1);
}
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
gotoAndStop(1);
}
}
instance spkr of movieClip 160 {
onClipEvent (release) {
_parent.setsVol(0);
}
}
}
movieClip 167 music_player {
}
movieClip 171 {
}
movieClip 173 {
frame 1 {
_parent.attachBlock(_x, _y, 2);
swapDepths(99);
this.removeMovieClip();
}
}
movieClip 175 {
frame 1 {
_parent.attachBlock(_x, _y, 1);
swapDepths(99);
this.removeMovieClip();
}
}
movieClip 178 {
frame 20 {
stop();
}
}
movieClip 179 {
frame 1 {
swapDepths(95);
}
frame 55 {
stop();
_parent.startN = 51;
trace(_parent.startN);
swapDepths(999);
this.removeMovieClip();
}
}
movieClip 182 {
frame 1 {
swapDepths(100);
_visible = false;
}
}
movieClip 183 Arkanoid {
frame 1 {
function attachBlock(x, y, n) {
++bNum;
++bn;
var v1 = blockCont.attachMovie('Block' + n, 'Block' + bNum, bNum);
v1._x = x;
v1._y = y;
v1.health = n;
v1.point = new flash.geom.Point(x, y);
}
function resetBall() {
--lives;
if (lives <= 0) {
attachMovie('GameOver', 'GameOver', 4);
GameOver._x = _width / 2 - 100;
GameOver._y = _height / 2 - 30;
_parent._parent.stats['life' + (lives + 1)].gotoAndStop(2);
ball.remove();
ball = null;
done = true;
return undefined;
} else {
_parent._parent.stats['life' + (lives + 1)].gotoAndStop(2);
ball.remove();
ball = null;
ball = new as.Ball(_width / 2, _height / 2, 'arkanoid_ball', 1, this);
}
}
function starter() {
if (startN == 50) {
if (getReady._currentframe == 1) {
getReady.play();
}
} else {
--startN;
}
if (startN <= 0) {
go = true;
getReady.removeMovieClip();
clearInterval(interval);
}
}
var done = false;
var go = false;
var lives = 3;
var listener = new Object();
var startN = 120;
var interval = setInterval(starter, 40);
var getReady = attachMovie('GetReady', 'GetReady', 4);
getReady._x = _width / 2 - 100;
getReady._y = _height / 2 - 30;
var bn = 0;
var speed = 8;
var wide = _width - 20;
var joke = false;
var ball = new as.Ball(_width / 2, _height / 2, 'arkanoid_ball', 1, this);
var bNum = 5;
var blockCont = createEmptyMovieClip('blockCont', 3);
this.onEnterFrame = function () {
if (!go) {
return undefined;
}
ball.onFrame();
if (!bn) {
resetBall();
}
if (Key.isDown(39)) {
paddle._x += speed;
if (paddle._x + paddle._width / 2 > wide) {
paddle._x = wide - paddle._width / 2;
}
}
if (Key.isDown(37)) {
paddle._x -= speed;
if (paddle._x - paddle._width / 2 < 0) {
paddle._x = paddle._width / 2;
}
}
};
listener.onKeyDown = function () {
if (startN > 0) {
return undefined;
}
if (Key.getCode() == 32) {
if (done) {
_root.resGame();
return undefined;
}
if (go) {
pau._visible = true;
go = false;
trace(go);
return undefined;
trace(go);
} else {
pau._visible = false;
go = true;
return undefined;
}
}
};
Key.addListener(listener);
}
}
movieClip 186 arkanoid_ball {
frame 1 {
stop();
}
}
movieClip 253 catoMovie {
frame 40 {
gotoAndPlay('loop');
}
}
frame 1 {
function itemHandler1(obj, item) {
getURL('http://newgrounds.com', '');
}
var menu = new ContextMenu();
menu.hideBuiltInItems();
menu.customItems.push(new ContextMenuItem('Newgrounds', itemHandler1));
_root.menu = menu;
}
frame 1 {
function musicOn(o) {
player = o;
musicMove = true;
}
function setBubble(b, m, s) {
if (b) {
bubble = m;
bubble.textbox.text = users[s - 1].toString();
extraX = men._x + men.thumbs._x;
extraY = men._y + men.thumbs._y;
follow = true;
} else {
bubble._x = -100 - extraX;
bubble._y = -100 - extraY;
follow = false;
}
}
function restart() {
gotoAndStop(1);
men.gotoAndStop(102);
}
function resGame() {
display.unloadArkanoid();
display.loadArkanoid();
display.stats.prevFrame();
display.stats.nextFrame();
}
function addTrack() {
player.main.addCat();
}
stop();
_root.disp = new MovieClip();
var bubble;
var extraX;
var extraY;
var follow;
var musicMove = false;
var player;
var users = ['50VMP', '23450', 'ActiveObjectX', 'Adman1993', 'Aeonstars', 'AlmightyHans', 'Ani-x', 'Ansel', 'AsthmaticHamster', 'AwesomeSaurus', 'Bezman', 'BiffTheTimid', 'BizarroJoe', 'BlackMarketKraig', 'BlueHippo', 'BoMToons', 'Brumak', 'BryceMilburn', 'Catoblepas', 'Chillyphilly', 'Chluaid', 'ConAir', 'Connor1234', 'Coolio-Niato', 'Dante224', 'DarkShadow8181', 'DeadSpread83', 'Dekuboy', 'DeuceNine', 'Djnet', 'Doomshock', 'DragonBerry', 'Egoraptor', 'El-Presidente', 'Element-2', 'Enjoyshaun', 'FetusDoctor', 'Funy-mony', 'Gi-Go', 'GMagnum', 'Hammi', 'HandsomeJake', 'Henry-nougat', 'JackSmack', 'JadeTheAssassin', 'JakBaronKing', 'JAZZA', 'Jeinu', 'Jonas', 'JonBro', 'JoSilver', 'Just2pale', 'Kajenx', 'Kirbopher', 'KnoxFan25', 'Krinkels', 'KupaMan', 'Kuro', 'Lalo', 'LazyMuffin', 'LiLg', 'Luis', 'Maxxor', 'MiddleFingerRings', 'Mogly', 'MRat', 'Mynamewontfitin', 'NathanielMilburn', 'NegativeONE', 'Nogfish', 'Notorious', 'Occluded', 'Pako', 'Pezboy440', 'Pezzo', 'Poxpower', 'PunchOrBePunched', 'Reyals', 'RickMarin', 'rtil', 'Rucklo', 'S1nt3ch', 'SamIam', 'SardonicSamurai', 'Senti', 'ShirtTurtle', 'Sk8erGirl14', 'Spikrodd', 'Spite-Skater', 'Sunglasses', 'SwiftstylerX', 'Techno', 'TehSlapHappy', 'Temariix', 'The-Swain', 'TheCriminalDuder', 'TheEmoKiller', 'TheHappySheep', 'TheSnakeSkull', 'TimFrommeyer', 'TrippingMetal', 'TurkeyOnAStick', 'Tystarr', 'UMREE', 'UnderARock', 'Vortex00', 'Vousielle', 'Zombie-Pimp'];
_root.userN = new Number(0);
this.onEnterFrame = function () {
if (follow) {
bubble._x = _xmouse - extraX;
if (bubble._currentframe == 2) {
if (bubble._x + bubble._width + bubble._parent._x < 750) {
var v1 = bubble.textbox.text;
bubble.gotoAndStop(1);
bubble.textbox.text = v1;
}
} else {
if (bubble._x + bubble._width + bubble._parent._x > 750) {
var v1 = bubble.textbox.text;
bubble.gotoAndStop(2);
bubble.textbox.text = v1;
}
}
bubble._y = _ymouse - extraY;
}
if (musicMove) {
player.main.moveText();
}
display.frame();
};
}
movieClip 258 {
}
movieClip 262 {
}
movieClip 267 {
}
movieClip 274 {
}
button 280 {
on (release) {
play();
}
}
movieClip 283 {
frame 1 {
function recalc() {
percent = _root.getBytesLoaded() / _root.getBytesTotal();
loadermask._xscale = 100 * percent;
if (percent >= 1) {
gotoAndPlay('done');
clearInterval(i);
}
}
stop();
var i = setInterval(recalc, 20);
var percent = 0;
}
frame 65 {
stop();
}
frame 78 {
_parent.gotoAndPlay('start-tour');
}
}
movieClip 288 {
}
movieClip 290 {
}
movieClip 293 {
frame 11 {
stop();
}
}
button 300 {
on (release) {
gotoAndPlay(110);
}
}
movieClip 416 {
frame 23 {
gotoAndPlay('loopy');
}
}
button 425 {
on (release) {
gotoAndPlay('set2');
_root.setBubble(false, bubble, 0);
}
}
movieClip 432 {
}
movieClip 434 {
}
button 436 {
on (release) {
gotoAndPlay('about');
}
}
movieClip 440 {
}
movieClip 442 {
}
button 443 {
on (release) {
gotoAndPlay('shirt');
}
}
button 446 {
on (release) {
gotoAndPlay(1);
}
}
button 449 {
on (release) {
gotoAndPlay('shirt');
}
}
button 453 {
on (release) {
gotoAndPlay('set1');
if (bubble != undefined) {
_root.setBubble(false, bubble, 0);
}
}
}
movieClip 564 {
}
movieClip 566 {
}
button 567 {
on (release) {
gotoAndPlay('set1');
}
}
movieClip 572 {
}
movieClip 592 {
}
button 598 {
on (release) {
getURL('http://www.newgrounds.com', _blank);
}
}
movieClip 602 {
}
movieClip 604 {
}
button 606 {
on (release) {
gotoAndPlay('set1');
}
}
button 620 {
on (release) {
getURL('http://www.newgrounds.com/store/product/sketchbook-tour-shirt', _blank);
}
}
button 622 {
on (release) {
getURL('http://www.newgrounds.com/store/product/sketchbook-tour-shirt', _blank);
}
}
button 623 {
on (release) {
getURL('http://underarock.newgrounds.com', _blank);
}
}
movieClip 626 {
frame 1 {
_root.musicMove = true;
}
frame 110 {
stop();
var bubble = attachMovie('bubble', 'bubble', 1);
bubble._x = -400;
bubble._y = -400;
var buttons = [];
var a;
for (a in this) {
if (typeof this[a] == 'object' && a.substr(0, 1) == 'b') {
buttons.push(a);
this[a].number = Number(a.substr(1, 2));
this[a].onRollOver = function () {
_root.setBubble(true, bubble, this.number);
};
this[a].onRollOut = function () {
_root.setBubble(false, bubble, 0);
};
this[a].onRelease = function () {
_root.setBubble(false, bubble, 0);
bubble.removeMovieClip();
_root.userN = this.number;
_root.nextFrame();
buttons = [];
a = null;
};
}
}
}
frame 167 {
stop();
var bubble = attachMovie('bubble', 'bubble', 1);
bubble._x = -400;
bubble._y = -400;
var buttons = [];
var a;
for (a in this) {
if (typeof this[a] == 'object' && a.substr(0, 1) == 'b') {
buttons.push(a);
this[a].number = Number(a.substr(1, 3));
this[a].onRollOver = function () {
_root.setBubble(true, bubble, this.number);
};
this[a].onRollOut = function () {
_root.setBubble(false, bubble, 0);
};
this[a].onRelease = function () {
_root.setBubble(false, bubble, 0);
bubble.removeMovieClip();
_root.userN = this.number;
_root.nextFrame();
buttons = [];
a = null;
};
}
}
}
frame 216 {
stop();
}
frame 246 {
stop();
}
}
movieClip 627 {
frame 46 {
stop();
}
frame 97 {
if (!_root.musicMove) {
var m = _root.attachMovie('music_player', 'music_player', 99);
_root.musicOn(m);
m._x = 541.1;
m._y = -1.5;
}
}
frame 115 {
stop();
}
}
movieClip 2410 __Packages.as.Ball {
#initclip
if (!_global.as) {
_global.as = new Object();
}
if (!_global.as.Ball) {
var v1 = function (x, y, m, n, s) {
this.point = new flash.geom.Point(x, y);
this.graphic = s.attachMovie(m, m + n, n);
this.graphic._x = x;
this.graphic._y = y;
this.wide = this.graphic._width;
this.high = this.graphic._height;
this.contWide = s._width;
this.contHigh = s._height;
this.container = s;
this.radd2 = this.graphic._width / Math.SQRT2;
this.sound1 = new Sound(_root);
this.sound1.attachSound('blip1');
this.sound2 = new Sound(_root);
this.sound2.attachSound('blip2');
this.extraX = s._x + s._parent._x;
this.extraY = s._y + s._parent._y;
};
as.Ball = v1;
var v2 = v1.prototype;
v2.onFrame = function () {
if (this.graphic.hitTest(this.container.paddle)) {
if (this.point.y < this.container.paddle._y) {
if (this.hit) {
this.ySpeed = -Math.abs(this.ySpeed);
this.xSpeed += (this.point.x - this.container.paddle._x) / 20;
if (this.xSpeed > 14) {
this.xSpeed = 14;
} else {
if (this.xSpeed < -14) {
this.xSpeed = -14;
}
}
this.sound2.start(0, 1);
this.hit = false;
}
}
} else {
this.hit = true;
}
this.checkHit();
this.point.x += this.xSpeed;
this.point.y += this.ySpeed;
if (this.point.x + this.wide > this.contWide) {
this.point.x = this.contWide - this.wide;
this.xSpeed = -Math.abs(this.xSpeed);
} else {
if (this.point.x - this.wide / 2 < 0) {
this.point.x = this.wide / 2;
this.xSpeed = Math.abs(this.xSpeed);
}
}
if (this.point.y - this.high / 2 < 0) {
this.point.y = this.high / 2;
this.ySpeed = Math.abs(this.ySpeed);
}
if (this.point.y + this.high > this.contHigh) {
this.point.y = this.contHigh - this.high;
this.container.resetBall();
}
this.graphic._x = this.point.x;
this.graphic._y = this.point.y;
};
v2.checkHit = function () {
var v5;
for (v5 in this.container.blockCont) {
if (this.graphic.hitTest(this.container.blockCont[v5])) {
var v2 = this.container.blockCont[v5];
var v4 = this.point.x + this.extraX;
var v3 = this.point.y + this.extraY;
if (v2.hitTest(v4, v3 - this.high, true)) {
if (v2.hitTest(v4, v3 + this.high, true)) {
this.ySpeed = -this.ySpeed;
} else {
this.ySpeed = Math.abs(this.ySpeed);
}
--v2.health;
this.sound1.start(0, 1);
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4 - this.wide, v3, true)) {
if (v2.hitTest(v4 + this.wide, v3, true)) {
this.xSpeed = -this.xSpeed;
} else {
this.xSpeed = Math.abs(this.xSpeed);
}
this.sound1.start(0, 1);
--v2.health;
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4 + this.wide, v3, true)) {
this.xSpeed = -Math.abs(this.xSpeed);
--v2.health;
this.sound1.start(0, 1);
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4, v3 + this.high, true)) {
this.ySpeed = -Math.abs(this.ySpeed);
this.sound1.start(0, 1);
--v2.health;
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4 + this.radd2, v3 + this.radd2, true)) {
this.xSpeed = -Math.abs(this.xSpeed);
this.ySpeed = -Math.abs(this.ySpeed);
this.sound1.start(0, 1);
--v2.health;
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4 - this.radd2, v3 + this.radd2, true)) {
this.xSpeed = Math.abs(this.xSpeed);
this.ySpeed = -Math.abs(this.ySpeed);
this.sound1.start(0, 1);
--v2.health;
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4 + this.radd2, v3 - this.radd2, true)) {
this.xSpeed = -Math.abs(this.xSpeed);
this.ySpeed = Math.abs(this.ySpeed);
this.sound1.start(0, 1);
--v2.health;
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
} else {
if (v2.hitTest(v4 - this.radd2, v3 - this.radd2, true)) {
this.xSpeed = Math.abs(this.xSpeed);
this.ySpeed = Math.abs(this.ySpeed);
this.sound1.start(0, 1);
--v2.health;
if (v2.health <= 0) {
v2.removeMovieClip();
--this.container.bn;
} else {
v2.play();
}
}
}
}
}
}
}
}
}
}
}
};
v2.remove = function () {
this.graphic.removeMovieClip();
this.point = null;
this.high = null;
this.wide = null;
this.xSpeed = null;
this.ySpeed = null;
this.container = null;
this.contWide = null;
this.contHigh = null;
this.onFrame = null;
this.remove = null;
};
v2.xSpeed = 6;
v2.ySpeed = 6;
v2.hit = true;
ASSetPropFlags(as.Ball.prototype, null, 1);
}
#endinitclip
}
movieClip 2411 __Packages.as.User {
#initclip
if (!_global.as) {
_global.as = new Object();
}
if (!_global.as.User) {
var v1 = function (u, s, l, p, p2) {
this.username = u;
this.signup = s;
this.level = l;
this.locate = p;
this.pic = p2;
};
as.User = v1;
var v2 = v1.prototype;
ASSetPropFlags(as.User.prototype, null, 1);
}
#endinitclip
}
movieClip 633 {
}
movieClip 645 {
frame 15 {
stop();
}
}
movieClip 647 {
}
movieClip 648 {
frame 12 {
stop();
}
}
movieClip 649 {
frame 44 {
_root.nextFrame();
}
}
movieClip 758 {
frame 1 {
stop();
}
}
movieClip 977 {
frame 1 {
stop();
}
}
button 983 {
on (release) {
changeUser(1);
}
}
button 989 {
on (release) {
changeUser(-1);
}
}
button 994 {
on (release) {
_root.restart();
}
}
button 1015 {
on (release) {
_parent.catoMovieFunc();
}
}
button 1054 {
on (press) {
getURL('http://www.youtube.com/watch?v=cTPTRi0HgA0&eurl=http://krinkels.newgrounds.com', _blank);
}
}
button 1059 {
on (press) {
_parent.swapLazy();
}
}
movieClip 1108 {
frame 1 {
stop();
}
}
button 1114 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/450625', '_blank');
}
}
button 1115 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/447514', '_blank');
}
}
button 1116 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/444014', '_blank');
}
}
button 1117 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/443569', '_blank');
}
}
button 1123 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/435493', '_blank');
}
}
button 1124 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/408499', '_blank');
}
}
button 1125 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/372636', '_blank');
}
}
button 1126 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/350529', '_blank');
}
}
button 1132 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474538', '_blank');
}
}
button 1133 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/466307', '_blank');
}
}
button 1134 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/444509', '_blank');
}
}
button 1135 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/438864', '_blank');
}
}
button 1141 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453277', '_blank');
}
}
button 1142 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453219', '_blank');
}
}
button 1143 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/452667', '_blank');
}
}
button 1144 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437333', '_blank');
}
}
button 1150 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/460549', '_blank');
}
}
button 1151 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/418121', '_blank');
}
}
button 1152 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/396360', '_blank');
}
}
button 1153 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/381091', '_blank');
}
}
button 1159 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475710', '_blank');
}
}
button 1160 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/472819', '_blank');
}
}
button 1161 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/468487', '_blank');
}
}
button 1162 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462487', '_blank');
}
}
button 1168 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/314386', '_blank');
}
}
button 1169 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/299847', '_blank');
}
}
button 1170 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/294256', '_blank');
}
}
button 1171 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/258108', '_blank');
}
}
button 1177 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467553', '_blank');
}
}
button 1178 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/464161', '_blank');
}
}
button 1179 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/450074', '_blank');
}
}
button 1185 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/394244', '_blank');
}
}
button 1186 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/355416', '_blank');
}
}
button 1187 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/217814', '_blank');
}
}
button 1188 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/310494', '_blank');
}
}
button 1192 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/357760', '_blank');
}
}
button 1193 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/305490', '_blank');
}
}
button 1199 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/443723', '_blank');
}
}
button 1200 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437567', '_blank');
}
}
button 1201 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/370015', '_blank');
}
}
button 1202 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/436071', '_blank');
}
}
button 1208 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/446505', '_blank');
}
}
button 1209 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/429572', '_blank');
}
}
button 1210 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/382342', '_blank');
}
}
button 1211 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/411068', '_blank');
}
}
button 1214 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/427488', '_blank');
}
}
button 1220 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/350211', '_blank');
}
}
button 1221 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/304345', '_blank');
}
}
button 1222 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/250575', '_blank');
}
}
button 1223 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/282127', '_blank');
}
}
button 1229 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/469495', '_blank');
}
}
button 1230 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/436398', '_blank');
}
}
button 1231 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/458553', '_blank');
}
}
button 1237 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/441869', '_blank');
}
}
button 1238 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/435173', '_blank');
}
}
button 1239 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437352', '_blank');
}
}
button 1245 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453858', '_blank');
}
}
button 1246 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/425853', '_blank');
}
}
button 1247 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/393944', '_blank');
}
}
button 1248 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/408886', '_blank');
}
}
button 1254 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471031', '_blank');
}
}
button 1255 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/439181', '_blank');
}
}
button 1256 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/372824', '_blank');
}
}
button 1257 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/379415', '_blank');
}
}
button 1263 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474053', '_blank');
}
}
button 1264 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/466650', '_blank');
}
}
button 1265 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462091', '_blank');
}
}
button 1266 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/465668', '_blank');
}
}
button 1272 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/438089', '_blank');
}
}
button 1273 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/431838', '_blank');
}
}
button 1274 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/429242', '_blank');
}
}
button 1275 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/430969', '_blank');
}
}
button 1281 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473403', '_blank');
}
}
button 1282 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/408967', '_blank');
}
}
button 1283 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/347190', '_blank');
}
}
button 1284 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/381640', '_blank');
}
}
button 1290 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437400', '_blank');
}
}
button 1291 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/429549', '_blank');
}
}
button 1292 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/363628', '_blank');
}
}
button 1293 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/409920', '_blank');
}
}
button 1300 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/469482', '_blank');
}
}
button 1301 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467924', '_blank');
}
}
button 1302 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/459508', '_blank');
}
}
button 1303 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/463297', '_blank');
}
}
button 1309 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/476228', '_blank');
}
}
button 1310 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473427', '_blank');
}
}
button 1311 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471932', '_blank');
}
}
button 1312 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/472901', '_blank');
}
}
button 1318 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467546', '_blank');
}
}
button 1319 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/459282', '_blank');
}
}
button 1325 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/472611', '_blank');
}
}
button 1326 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467315', '_blank');
}
}
button 1327 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/446996', '_blank');
}
}
button 1328 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/451253', '_blank');
}
}
button 1333 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453962', '_blank');
}
}
button 1334 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453893', '_blank');
}
}
button 1335 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/444498', '_blank');
}
}
button 1341 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/476151', '_blank');
}
}
button 1342 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/460549', '_blank');
}
}
button 1343 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/354816', '_blank');
}
}
button 1344 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/451545', '_blank');
}
}
button 1350 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/442769', '_blank');
}
}
button 1351 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/435862', '_blank');
}
}
button 1352 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/369430', '_blank');
}
}
button 1353 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/399652', '_blank');
}
}
button 1359 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467548', '_blank');
}
}
button 1360 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/435736', '_blank');
}
}
button 1361 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/418886', '_blank');
}
}
button 1362 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/429680', '_blank');
}
}
button 1368 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474681', '_blank');
}
}
button 1369 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/405720', '_blank');
}
}
button 1370 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/391818', '_blank');
}
}
button 1371 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/397012', '_blank');
}
}
button 1377 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/470146', '_blank');
}
}
button 1378 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/460535', '_blank');
}
}
button 1384 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/451554', '_blank');
}
}
button 1385 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/441025', '_blank');
}
}
button 1386 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/416302', '_blank');
}
}
button 1387 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437431', '_blank');
}
}
button 1393 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/382188', '_blank');
}
}
button 1394 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/354181', '_blank');
}
}
button 1395 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/221949', '_blank');
}
}
button 1396 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/255552', '_blank');
}
}
button 1402 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/470809', '_blank');
}
}
button 1403 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/461638', '_blank');
}
}
button 1404 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/427488', '_blank');
}
}
button 1405 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/436875', '_blank');
}
}
button 1411 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/470023', '_blank');
}
}
button 1412 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/442218', '_blank');
}
}
button 1413 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462442', '_blank');
}
}
button 1419 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/390778', '_blank');
}
}
button 1420 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/380704', '_blank');
}
}
button 1421 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/305761', '_blank');
}
}
button 1422 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/320968', '_blank');
}
}
button 1428 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462921', '_blank');
}
}
button 1429 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/461163', '_blank');
}
}
button 1430 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/455097', '_blank');
}
}
button 1431 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/460682', '_blank');
}
}
button 1436 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/380952', '_blank');
}
}
button 1437 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/378396', '_blank');
}
}
button 1438 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/372543', '_blank');
}
}
button 1444 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/448663', '_blank');
}
}
button 1445 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/391295', '_blank');
}
}
button 1446 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/355463', '_blank');
}
}
button 1447 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/356168', '_blank');
}
}
button 1454 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467917', '_blank');
}
}
button 1455 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/452034', '_blank');
}
}
button 1456 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/446649', '_blank');
}
}
button 1457 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/449677', '_blank');
}
}
button 1461 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471182', '_blank');
}
}
button 1467 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/459658', '_blank');
}
}
button 1468 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437568', '_blank');
}
}
button 1469 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/400974', '_blank');
}
}
button 1470 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/416507', '_blank');
}
}
button 1476 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475384', '_blank');
}
}
button 1477 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/472726', '_blank');
}
}
button 1478 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/426270', '_blank');
}
}
button 1479 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437236', '_blank');
}
}
button 1485 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/393370', '_blank');
}
}
button 1486 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/331537', '_blank');
}
}
button 1487 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/331498', '_blank');
}
}
button 1488 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/331536', '_blank');
}
}
button 1494 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/461757', '_blank');
}
}
button 1495 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/458713', '_blank');
}
}
button 1496 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/431445', '_blank');
}
}
button 1497 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/446319', '_blank');
}
}
button 1503 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467839', '_blank');
}
}
button 1504 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467539', '_blank');
}
}
button 1505 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/450188', '_blank');
}
}
button 1506 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/461464', '_blank');
}
}
button 1512 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/470766', '_blank');
}
}
button 1513 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/447144', '_blank');
}
}
button 1514 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/447747', '_blank');
}
}
button 1520 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462253', '_blank');
}
}
button 1521 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/435364', '_blank');
}
}
button 1522 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/409732', '_blank');
}
}
button 1523 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/416500', '_blank');
}
}
button 1529 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/464881', '_blank');
}
}
button 1530 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/463779', '_blank');
}
}
button 1531 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/450065', '_blank');
}
}
button 1532 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462653', '_blank');
}
}
button 1538 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/446158', '_blank');
}
}
button 1539 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/445687', '_blank');
}
}
button 1540 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/436074', '_blank');
}
}
button 1541 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/440026', '_blank');
}
}
button 1547 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/423937', '_blank');
}
}
button 1548 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/401566', '_blank');
}
}
button 1549 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/387006', '_blank');
}
}
button 1550 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/387007', '_blank');
}
}
button 1556 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/445390', '_blank');
}
}
button 1557 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/413282', '_blank');
}
}
button 1558 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/384932', '_blank');
}
}
button 1559 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/398449', '_blank');
}
}
button 1565 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/414744', '_blank');
}
}
button 1566 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/393747', '_blank');
}
}
button 1567 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/331525', '_blank');
}
}
button 1568 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/387994', '_blank');
}
}
button 1574 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475917', '_blank');
}
}
button 1575 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/459168', '_blank');
}
}
button 1576 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/376306', '_blank');
}
}
button 1577 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/436474', '_blank');
}
}
button 1583 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474309', '_blank');
}
}
button 1584 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/466719', '_blank');
}
}
button 1590 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474929', '_blank');
}
}
button 1591 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467167', '_blank');
}
}
button 1592 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453271', '_blank');
}
}
button 1593 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/456066', '_blank');
}
}
button 1599 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475585', '_blank');
}
}
button 1600 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/466790', '_blank');
}
}
button 1601 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471242', '_blank');
}
}
button 1607 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/347245', '_blank');
}
}
button 1608 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/330498', '_blank');
}
}
button 1609 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/325215', '_blank');
}
}
button 1610 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/327163', '_blank');
}
}
button 1616 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/407965', '_blank');
}
}
button 1617 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/363206', '_blank');
}
}
button 1618 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/333212', '_blank');
}
}
button 1619 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/362709', '_blank');
}
}
button 1625 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/402884', '_blank');
}
}
button 1626 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/390387', '_blank');
}
}
button 1627 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/376336', '_blank');
}
}
button 1628 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/388399', '_blank');
}
}
button 1634 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/454063', '_blank');
}
}
button 1635 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/450625', '_blank');
}
}
button 1636 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/447574', '_blank');
}
}
button 1642 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/400478', '_blank');
}
}
button 1643 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/386323', '_blank');
}
}
button 1644 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/312872', '_blank');
}
}
button 1645 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/336075', '_blank');
}
}
button 1651 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475887', '_blank');
}
}
button 1652 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475149', '_blank');
}
}
button 1653 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/469495', '_blank');
}
}
button 1654 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471031', '_blank');
}
}
button 1660 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/386821', '_blank');
}
}
button 1661 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/381115', '_blank');
}
}
button 1662 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/310635', '_blank');
}
}
button 1663 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/360467', '_blank');
}
}
button 1669 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475774', '_blank');
}
}
button 1670 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475710', '_blank');
}
}
button 1671 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/461154', '_blank');
}
}
button 1672 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475634', '_blank');
}
}
button 1678 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473449', '_blank');
}
}
button 1679 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/455106', '_blank');
}
}
button 1680 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467551', '_blank');
}
}
button 1683 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/130933', '_blank');
}
}
button 1684 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/130599', '_blank');
}
}
button 1685 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/129976', '_blank');
}
}
button 1686 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/130369', '_blank');
}
}
button 1692 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/428554', '_blank');
}
}
button 1693 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/390010', '_blank');
}
}
button 1694 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/249325', '_blank');
}
}
button 1695 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/376316', '_blank');
}
}
button 1701 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/457682', '_blank');
}
}
button 1702 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/428564', '_blank');
}
}
button 1703 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/417920', '_blank');
}
}
button 1704 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/423078', '_blank');
}
}
button 1710 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/440766', '_blank');
}
}
button 1711 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/402884', '_blank');
}
}
button 1712 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/409272', '_blank');
}
}
button 1718 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/462474', '_blank');
}
}
button 1719 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/457689', '_blank');
}
}
button 1720 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/408167', '_blank');
}
}
button 1721 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/451163', '_blank');
}
}
button 1725 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/397114', '_blank');
}
}
button 1726 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/244094', '_blank');
}
}
button 1732 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/472307', '_blank');
}
}
button 1733 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/444627', '_blank');
}
}
button 1734 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/381908', '_blank');
}
}
button 1735 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/381929', '_blank');
}
}
button 1741 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/459741', '_blank');
}
}
button 1742 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/449395', '_blank');
}
}
button 1743 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/430238', '_blank');
}
}
button 1744 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/438992', '_blank');
}
}
button 1750 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/450271', '_blank');
}
}
button 1751 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/448135', '_blank');
}
}
button 1752 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437377', '_blank');
}
}
button 1758 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/175207', '_blank');
}
}
button 1759 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/165533', '_blank');
}
}
button 1760 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/110876', '_blank');
}
}
button 1761 {
on (release) {
getURL('http://www.newgrounds.com/audio/listen/117940', '_blank');
}
}
button 1767 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/191508', '_blank');
}
}
button 1768 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/187802', '_blank');
}
}
button 1769 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/177983', '_blank');
}
}
button 1770 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/184858', '_blank');
}
}
button 1776 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475523', '_blank');
}
}
button 1777 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474086', '_blank');
}
}
button 1778 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471802', '_blank');
}
}
button 1779 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473453', '_blank');
}
}
button 1785 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/476203', '_blank');
}
}
button 1786 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/445569', '_blank');
}
}
button 1787 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/454945', '_blank');
}
}
button 1794 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/431660', '_blank');
}
}
button 1795 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/362782', '_blank');
}
}
button 1796 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/417084', '_blank');
}
}
button 1802 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/347608', '_blank');
}
}
button 1803 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/274705', '_blank');
}
}
button 1804 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/206832', '_blank');
}
}
button 1805 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/266215', '_blank');
}
}
button 1809 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/348766', '_blank');
}
}
button 1810 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/341666', '_blank');
}
}
button 1816 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/401807', '_blank');
}
}
button 1817 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/377398', '_blank');
}
}
button 1818 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/371644', '_blank');
}
}
button 1823 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/454441', '_blank');
}
}
button 1824 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/410787', '_blank');
}
}
button 1825 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/379565', '_blank');
}
}
button 1831 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437583', '_blank');
}
}
button 1832 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/421250', '_blank');
}
}
button 1833 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/401837', '_blank');
}
}
button 1834 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/414620', '_blank');
}
}
button 1840 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471799', '_blank');
}
}
button 1841 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471217', '_blank');
}
}
button 1842 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/457072', '_blank');
}
}
button 1848 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/471196', '_blank');
}
}
button 1849 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/470710', '_blank');
}
}
button 1855 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/452987', '_blank');
}
}
button 1856 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/439209', '_blank');
}
}
button 1862 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/467521', '_blank');
}
}
button 1863 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/453548', '_blank');
}
}
button 1864 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/463278', '_blank');
}
}
button 1870 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473380', '_blank');
}
}
button 1871 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/460965', '_blank');
}
}
button 1872 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/440251', '_blank');
}
}
button 1873 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/440927', '_blank');
}
}
button 1879 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473975', '_blank');
}
}
button 1880 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473155', '_blank');
}
}
button 1881 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/472668', '_blank');
}
}
button 1882 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/473023', '_blank');
}
}
button 1888 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/431820', '_blank');
}
}
button 1889 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/422464', '_blank');
}
}
button 1890 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/310559', '_blank');
}
}
button 1891 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/348336', '_blank');
}
}
button 1894 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/367020', '_blank');
}
}
button 1900 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/448406', '_blank');
}
}
button 1901 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/448404', '_blank');
}
}
button 1902 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/430549', '_blank');
}
}
button 1903 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/431306', '_blank');
}
}
button 1909 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/475654', '_blank');
}
}
button 1914 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/358792', '_blank');
}
}
button 1919 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/402055', '_blank');
}
}
button 1920 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/357190', '_blank');
}
}
button 1921 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/326282', '_blank');
}
}
button 1927 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/468329', '_blank');
}
}
button 1928 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/460891', '_blank');
}
}
button 1932 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474886', '_blank');
}
}
button 1933 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/449430', '_blank');
}
}
button 1941 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/474093', '_blank');
}
}
button 1942 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/437489', '_blank');
}
}
button 1943 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/388318', '_blank');
}
}
button 1944 {
on (release) {
getURL('http://www.newgrounds.com/portal/view/396167', '_blank');
}
}
movieClip 1945 {
frame 1 {
stop();
}
}
movieClip 1946 {
}
movieClip 1947 {
}
movieClip 1949 {
frame 1 {
var bmp;
}
}
movieClip 1951 {
}
movieClip 1958 {
frame 45 {
stop();
}
}
movieClip 1965 {
frame 49 {
stop();
}
}
movieClip 1972 {
frame 49 {
stop();
}
}
movieClip 1975 {
frame 49 {
stop();
}
}
movieClip 1978 {
frame 49 {
stop();
}
}
movieClip 1981 {
frame 49 {
stop();
}
}
movieClip 1987 {
frame 49 {
stop();
}
}
movieClip 1990 {
frame 28 {
stop();
}
}
movieClip 1993 {
frame 28 {
stop();
}
}
movieClip 1996 {
frame 28 {
stop();
}
}
movieClip 1998 {
frame 28 {
stop();
}
}
movieClip 2002 {
frame 28 {
stop();
}
}
movieClip 2005 {
frame 28 {
stop();
}
}
movieClip 2008 {
frame 28 {
stop();
}
}
movieClip 2013 {
frame 28 {
stop();
}
}
movieClip 2016 {
frame 28 {
stop();
}
}
movieClip 2018 {
frame 28 {
stop();
}
}
movieClip 2021 {
frame 28 {
stop();
}
}
movieClip 2023 {
frame 28 {
stop();
}
}
movieClip 2026 {
frame 28 {
stop();
}
}
movieClip 2032 {
frame 28 {
stop();
}
}
movieClip 2036 {
frame 28 {
stop();
}
}
movieClip 2039 {
frame 28 {
stop();
}
}
movieClip 2043 {
frame 28 {
stop();
}
}
movieClip 2046 {
frame 28 {
stop();
}
}
movieClip 2049 {
frame 28 {
stop();
}
}
movieClip 2052 {
frame 28 {
stop();
}
}
movieClip 2055 {
frame 28 {
stop();
}
}
movieClip 2058 {
frame 28 {
stop();
}
}
movieClip 2061 {
frame 28 {
stop();
}
}
movieClip 2064 {
frame 28 {
stop();
}
}
movieClip 2067 {
frame 28 {
stop();
}
}
movieClip 2070 {
frame 28 {
stop();
}
}
movieClip 2074 {
frame 28 {
stop();
}
}
movieClip 2078 {
frame 28 {
stop();
}
}
movieClip 2081 {
frame 28 {
stop();
}
}
movieClip 2084 {
frame 28 {
stop();
}
}
movieClip 2087 {
frame 28 {
stop();
}
}
movieClip 2091 {
frame 28 {
stop();
}
}
movieClip 2094 {
frame 28 {
stop();
}
}
movieClip 2097 {
frame 28 {
stop();
}
}
movieClip 2100 {
frame 28 {
stop();
}
}
movieClip 2105 {
frame 28 {
stop();
}
}
movieClip 2108 {
frame 28 {
stop();
}
}
movieClip 2113 {
frame 28 {
stop();
}
}
movieClip 2117 {
frame 28 {
stop();
}
}
movieClip 2121 {
frame 28 {
stop();
}
}
movieClip 2125 {
frame 28 {
stop();
}
}
movieClip 2131 {
frame 28 {
stop();
}
}
movieClip 2134 {
frame 28 {
stop();
}
}
movieClip 2136 {
}
movieClip 2139 {
frame 28 {
stop();
}
}
movieClip 2143 {
frame 28 {
stop();
}
}
movieClip 2146 {
frame 28 {
stop();
}
}
movieClip 2149 {
frame 28 {
stop();
}
}
movieClip 2153 {
frame 28 {
stop();
}
}
movieClip 2170 {
frame 28 {
stop();
}
}
movieClip 2173 {
frame 28 {
stop();
}
}
movieClip 2176 {
frame 28 {
stop();
}
}
movieClip 2179 {
frame 28 {
stop();
}
}
movieClip 2182 {
frame 28 {
stop();
}
}
movieClip 2186 {
}
movieClip 2187 {
frame 28 {
stop();
}
}
movieClip 2193 {
frame 28 {
stop();
}
}
movieClip 2197 {
frame 28 {
stop();
}
}
movieClip 2200 {
frame 28 {
stop();
}
}
movieClip 2203 {
frame 28 {
stop();
}
}
movieClip 2206 {
frame 28 {
stop();
}
}
movieClip 2209 {
frame 28 {
stop();
}
}
movieClip 2212 {
frame 28 {
stop();
}
}
movieClip 2215 {
frame 28 {
stop();
}
}
movieClip 2218 {
frame 28 {
stop();
}
}
movieClip 2221 {
frame 28 {
stop();
}
}
movieClip 2225 {
frame 28 {
stop();
}
}
movieClip 2227 {
frame 28 {
stop();
}
}
movieClip 2231 {
frame 28 {
stop();
}
}
movieClip 2234 {
frame 28 {
stop();
}
}
movieClip 2237 {
frame 28 {
stop();
}
}
movieClip 2241 {
frame 28 {
stop();
}
}
movieClip 2248 {
frame 28 {
stop();
}
}
movieClip 2252 {
frame 28 {
stop();
}
}
movieClip 2256 {
frame 28 {
stop();
}
}
movieClip 2260 {
frame 28 {
stop();
}
}
movieClip 2268 {
frame 28 {
stop();
}
}
movieClip 2271 {
frame 28 {
stop();
}
}
movieClip 2274 {
frame 28 {
stop();
}
}
movieClip 2280 {
frame 28 {
stop();
}
}
movieClip 2283 {
frame 28 {
stop();
}
}
movieClip 2287 {
frame 28 {
stop();
}
}
movieClip 2290 {
frame 28 {
stop();
}
}
movieClip 2294 {
frame 28 {
stop();
}
}
movieClip 2297 {
frame 28 {
stop();
}
}
movieClip 2301 {
frame 28 {
stop();
}
}
movieClip 2304 {
frame 28 {
stop();
}
}
movieClip 2308 {
frame 33 {
stop();
}
}
movieClip 2313 {
frame 33 {
stop();
}
}
movieClip 2317 {
frame 33 {
stop();
}
}
movieClip 2321 {
frame 33 {
stop();
}
}
movieClip 2325 {
frame 33 {
stop();
}
}
movieClip 2329 {
frame 33 {
stop();
}
}
movieClip 2333 {
frame 33 {
stop();
}
}
movieClip 2336 {
frame 33 {
stop();
}
}
movieClip 2339 {
frame 33 {
stop();
}
}
movieClip 2343 {
frame 33 {
stop();
}
}
movieClip 2346 {
frame 33 {
stop();
}
}
movieClip 2349 {
frame 33 {
stop();
}
}
movieClip 2353 {
frame 33 {
stop();
}
}
movieClip 2356 {
frame 33 {
stop();
}
}
movieClip 2359 {
frame 33 {
stop();
}
}
movieClip 2365 {
frame 33 {
stop();
}
}
movieClip 2379 {
frame 45 {
stop();
}
}
movieClip 2380 {
frame 1 {
stop();
}
}
movieClip 2382 {
frame 1 {
}
}
movieClip 2384 {
}
movieClip 2388 {
frame 1 {
function roll(n) {
gotoAndStop(_currentframe + n);
if (_currentframe == 1 || _currentframe == 13) {
clearInterval(interval);
}
}
var rollover = false;
var rollout = false;
this.onRelease = function () {
getURL('http://' + _parent.user.username + '.newgrounds.com/', _blank);
};
this.onRollOver = function () {
_parent.tellRoll('over', 'visit');
};
this.onRollOut = function () {
_parent.tellRoll('out', 'visit');
};
}
frame 1 {
stop();
}
}
movieClip 2392 {
frame 1 {
function roll(n) {
gotoAndStop(_currentframe + n);
if (_currentframe == 1 || _currentframe == 13) {
clearInterval(interval);
}
}
var rollover = false;
var rollout = false;
this.onRelease = function () {
getURL('http://' + _parent.user.username + '.newgrounds.com/flash/', _blank);
};
this.onRollOver = function () {
_parent.tellRoll('over', 'see');
};
this.onRollOut = function () {
_parent.tellRoll('out', 'see');
};
}
frame 1 {
stop();
}
}
button 2394 {
on (press) {
_parent.rot = true;
gotoAndPlay(1);
}
}
button 2400 {
on (release) {
blackbox.play();
}
}
movieClip 2401 {
frame 7 {
stop();
}
}
movieClip 2406 {
}
button 2407 {
on (release) {
gotoAndStop(1);
}
}
movieClip 2408 {
frame 1 {
stop();
}
frame 12 {
stop();
}
}
movieClip 2409 {
frame 1 {
function frame() {
if (roll) {
if (roll_v) {
if (dir_v == 'over') {
visitup.nextFrame();
} else {
visitup.prevFrame();
if (visitup._currentframe <= 1) {
dir_v = 'over';
roll_v = false;
}
}
}
if (roll_s) {
if (dir_s == 'over') {
seemore.nextFrame();
} else {
seemore.prevFrame();
if (seemore._currentframe <= 1) {
dir_s = 'over';
roll_s = false;
}
}
}
}
}
function loadArkanoid() {
facts.gotoAndStop(109);
holder._visible = false;
latest.gotoAndStop(109);
seemore._visible = false;
stats.gotoAndStop(109);
sbt_container.attachMovie('Arkanoid', 'Arkanoid', 1);
stattext._visible = false;
subtitles._visible = false;
userpicmc._visible = false;
visitup._visible = false;
}
function loadIcon(s) {
holder.bmp = flash.display.BitmapData.loadBitmap(s + 'Icon');
holder.attachBitmap(holder.bmp, 1);
}
function loadPicture(s) {
s = s.toLowerCase();
sbt_container.bmp = flash.display.BitmapData.loadBitmap(s);
sbt_container.attachBitmap(sbt_container.bmp, 1);
}
function loadUser(n) {
user = allUsers[n];
facts.gotoAndStop(n + 1);
latest.gotoAndStop(n + 1);
loadPicture(user.pic);
stats.gotoAndStop(n + 1);
stats.signdate.text = user.signup;
stats.level.text = user.level;
stats.locate.text = user.locate;
subnum.text = (n + 1).toString() + ' of 108';
swain.stop();
swain.attachSound('v-' + user.username.toLowerCase());
swain.start(0, 1);
loadIcon(user.username);
if (user.username != '23450') {
blackbox._visible = false;
rotate._visible = false;
} else {
blackbox._visible = true;
blackbox.gotoAndStop(1);
rotate._visible = true;
rotate.gotoAndPlay(1);
}
if (cat) {
catoMovie.removeMovieClip();
cat = false;
}
}
function unloadArkanoid() {
holder._visible = true;
sbt_container.Arkanoid.removeMovieClip();
seemore._visible = true;
subtitles._visible = true;
stattext._visible = true;
userpicmc._visible = true;
visitup._visible = true;
ark = false;
}
function tellRoll(s, o) {
roll = true;
if (o == 'visit') {
roll_v = true;
dir_v = s;
} else {
roll_s = true;
dir_s = s;
}
}
function changeUser(n) {
number += n;
if (n < 0) {
if (number < 0) {
number = allUsers.length - 1;
}
} else {
if (n > 0) {
if (number > allUsers.length) {
number = 0;
}
}
}
if (number == allUsers.length) {
ark = true;
loadArkanoid();
} else {
if (ark) {
unloadArkanoid();
}
loadUser(number);
}
}
function catoMovieFunc() {
if (!cat) {
_root.addTrack();
catoMovie = sbt_container.attachMovie('catoMovie', 'catoMovie', 1);
cat = true;
}
}
function swapLazy() {
loadPicture('lazymuffin2');
var v2 = new Sound(_root);
v2.attachSound('kiss');
v2.start(0, 1);
}
stop();
var ark = false;
var dir_s = 'out';
var dir_v = 'out';
var number = _root.userN - 1;
var roll = false;
var roll_s = false;
var roll_v = false;
var user;
var swain = new Sound(_root);
var catoMovie;
var cat;
_root.disp = this;
var U_50VMP = new as.User('50VMP', '03.28.05', 18, 'CALIFORNIA, USA', '50VMP');
var U_23450 = new as.User('23450', '05.28.03', 27, 'GRAND PRARIE, ALBERTA', '23450');
var ActiveObjectX = new as.User('ActiveObjectX', '02.28.05', 17, 'CONNECTICUT, USA', 'ActiveObjectX');
var Adman1993 = new as.User('Adman1993', '06.26.05', 15, 'SURREY, ENGLAND', 'Adman1993');
var Aeonstars = new as.User('Aeonstars', '06.01.06', 21, 'MONTREAL, QUEBEC', 'Aeonstars');
var AlmightyHans = new as.User('AlmightyHans', '08.06.04', 11, 'CALIFORNIA, USA', 'AlmightyHans');
var Ani_x = new as.User('Ani-x', '02.18.04', 24, 'OHIO, USA', 'Ani-x');
var Ansel = new as.User('Ansel', '09.02.06', 18, 'MINNESOTA, USA', 'Ansel');
var AsthmaticHamster = new as.User('AsthmaticHamster', '11.14.00', 29, 'MONTREAL, QUEBEC', 'AsthmaticHamster');
var AwesomeSaurus = new as.User('AwesomeSaurus', '04.05.06', 8, 'NEW YORK, USA', 'AwesomeSaurus');
var Bezman = new as.User('Bezman', '08.16.01', 29, 'GLASGOW, SCOTLAND', 'Bezman');
var BiffTheTimid = new as.User('BiffTheTimid', '07.25.01', 24, 'PENNSYLVANIA, USA', 'BiffTheTimid');
var BizarroJoe = new as.User('BizarroJoe', '07.25.07', 19, 'LEON, SPAIN', 'BizarroJoe');
var BlackMarketKraig = new as.User('BlackMarketKraig', '12.08.04', 29, 'NEW YORK, USA', 'BlackMarketKraig');
var BlueHippo = new as.User('BlueHippo', '07.25.04', 36, 'TEXAS, USA', 'BlueHippo');
var BoMToons = new as.User('BoMToons', '11.29.05', 23, 'UTAH, USA', 'BoMToons');
var Brumak = new as.User('Brumak', '08.16.04', 8, 'NEW JERSEY, USA', 'Brumak');
var BryceMilburn = new as.User('BryceMilburn', '12.19.05', 16, 'GEORGIA, USA', 'BryceMilburn');
var Catoblepas = new as.User('Catoblepas', '10.28.05', 28, 'FINLAND', 'Catoblepas');
var Chillyphilly = new as.User('Chillyphilly', '08.25.05', 25, 'GLENBROOK, AUSTRALIA', 'Chillyphilly');
var Chluaid = new as.User('Chluaid', '03.26.04', 4, 'ASHFIELD, AUSTRALIA', 'Chluaid');
var ConAir = new as.User('ConAir', '04.01.04', 17, 'ILLINOIS, USA', 'ConAir');
var Connor1234 = new as.User('Connor1234', '04.30.07', 12, 'MISSOURI, USA', 'Connor1234');
var Coolio_Niato = new as.User('Coolio-Niato', '06.30.05', 24, 'TORONTO, CANADA', 'Coolio-Niato');
var Dante224 = new as.User('Dante224', '10.09.06', 17, 'ALABAMA, USA', 'Dante224');
var DarkShadow8181 = new as.User('DarkShadow8181', '04.28.05', 9, 'NEW YORK, USA', 'DarkShadow8181');
var DeadSpread83 = new as.User('DeadSpread83', '10.05.05', 14, 'TENNESSEE, USA', 'DeadSpread83');
var Dekuboy = new as.User('Dekuboy', '02.21.07', 19, 'PENNSYLVANIA, USA', 'Dekuboy');
var DeuceNine = new as.User('DeuceNine', '06.27.04', 16, 'FLORIDA, USA', 'DeuceNine');
var Djnet = new as.User('Djnet', '06.09.05', 17, 'OHIO, USA', 'Djnet');
var Doomshock = new as.User('Doomshock', '01.05.07', 15, 'NEW YORK, USA', 'Doomshock');
var DragonBerry = new as.User('DragonBerry', '08.02.07', 15, 'CALIFORNIA, USA', 'DragonBerry');
var Egoraptor = new as.User('Egoraptor', '09.16.01', 6, 'FLORIDA, USA', 'Egoraptor');
var El_Presidente = new as.User('El-Presidente', '06.02.05', 24, 'CONNECTICUT, USA', 'El-Presidente');
var Element_2 = new as.User('Element-2', '07.13.03', 16, 'PENNSYLVANIA, USA', 'Element-2');
var Enjoyshaun = new as.User('Enjoyshaun', '09.12.05', 10, 'LONDON, ENGLAND', 'Enjoyshaun');
var FetusDoctor = new as.User('FetusDoctor', '04.26.04', 23, 'MARYLAND, USA', 'FetusDoctor');
var Funy_mony = new as.User('Funy-mony', '08.11.04', 11, 'UTAH, USA', 'Funy-mony');
var Gi_Go = new as.User('Gi-Go', '01.31.04', 27, 'GEORGIA, USA', 'Gi-Go');
var GMagnum = new as.User('GMagnum', '08.06.06', 27, 'MARYLAND, USA', 'GMagnum');
var Hammi = new as.User('Hammi', '12.21.05', 8, 'OSLO, NORWAY', 'Hammi');
var HandsomeJake = new as.User('HandsomeJake', '02.10.06', 15, 'PENNSYLVANIA, USA', 'HandsomeJake');
var Henry_nougat = new as.User('Henry-nougat', '11.01.05', 7, 'WOLLONGONG, AUSTRALIA', 'Henry-nougat');
var JackSmack = new as.User('JackSmack', '11.11.04', 14, 'ILLINOIS, USA', 'JackSmack');
var JadeTheAssassin = new as.User('JadeTheAssassin', '04.05.04', 8, 'VANCOUVER, BC', 'JadeTheAssassin');
var JakBaronKing = new as.User('JakBaronKing', '09.27.07', 18, 'HAWAII, USA', 'JakBaronKing');
var JAZZA = new as.User('JAZZA', '10.31.03', 7, 'VICTORIA, AUSTRALIA', 'JAZZA');
var Jeinu = new as.User('Jeinu', '09.03.07', 2, 'TEXAS, USA', 'Jeinu');
var Jonas = new as.User('Jonas', '09.12.02', 18, 'MICHIGAN, USA', 'Jonas');
var JonBro = new as.User('JonBro', '07.08.05', 13, 'SOMEWHERESVILLE', 'JonBro');
var JoSilver = new as.User('JoSilver', '09.21.07', 13, 'NEW YORK, USA', 'JoSilver');
var Just2pale = new as.User('Just2pale', '05.27.04', 18, 'TEXAS, USA', 'Just2pale');
var Kajenx = new as.User('Kajenx', '12.01.06', 14, 'MINNESOTA, USA', 'Kajenx');
var Kirbopher = new as.User('Kirbopher', '07.21.04', 5, 'NEW YORK, USA', 'Kirbopher');
var KnoxFan25 = new as.User('KnoxFan25', '07.20.06', 9, 'NEW HAMPSHIRE, USA', 'KnoxFan25');
var Krinkels = new as.User('Krinkels', '12.18.99', 32, 'COLORADO, USA', 'Krinkels');
var KupaMan = new as.User('KupaMan', '10.20.02', 39, 'WASHINGTON, USA', 'KupaMan');
var Kuro = new as.User('Kuro', '02.06.05', 22, 'WELLINGTON, NZ', 'Kuro');
var Lalo = new as.User('Lalo', '07.30.05', 17, 'VERACRUZ, MX', 'Lalo');
var LazyMuffin = new as.User('LazyMuffin', '04.18.03', 16, 'TEL-AVIV, ISRAEL', 'LazyMuffin');
var LiLg = new as.User('LiLg', '02.25.03', 15, 'LOUISIANA, USA', 'LiLg');
var Luis = new as.User('Luis', '04.23.00', 2, 'VIRGINIA, USA', 'Luis');
var Maxxor = new as.User('Maxxor', '04.19.05', 22, 'SWEDEN', 'Maxxor');
var MiddleFingerRings = new as.User('MiddleFingerRings', '03.10.05', 17, 'ALAMBIE HEIGHTS, AU', 'MiddleFingerRings');
var Mogly = new as.User('Mogly', '09.05.04', 25, 'TORBAY, ENGLAND', 'Mogly');
var MRat = new as.User('MRat', '07.02.05', 14, 'OAKVILLE, ONTARIO', 'MRat');
var Mynamewontfitin = new as.User('Mynamewontfitin', '09.01.03', 19, 'NEW JERSEY, USA', 'Mynamewontfitin');
var NathanielMilburn = new as.User('NathanielMilburn', '04.08.06', 23, 'GEORGIA, USA', 'NathanielMilburn');
var NegativeONE = new as.User('NegativeONE', '02.15.03', 42, 'ONTARIO, CANADA', 'NegativeONE');
var Nogfish = new as.User('Nogfish', '03.30.05', 14, 'MARYLAND, USA', 'Nogfish');
var Notorious = new as.User('Notorious', '06.10.04', 27, 'IOWA, USA', 'Notorious');
var Occluded = new as.User('Occluded', '02.24.04', 27, 'NEW YORK, USA', 'Occluded');
var Pako = new as.User('Pako', '12.29.03', 22, 'ONTARIO, CANADA', 'Pako');
var Pezboy440 = new as.User('Pezboy440', '11.14.06', 17, 'OHIO, USA', 'Pezboy440');
var Pezzo = new as.User('Pezzo', '05.15.06', 11, 'MARYLAND, USA', 'Pezzo');
var Poxpower = new as.User('Poxpower', '12.02.00', 47, 'QUEBEC, CANADA', 'Poxpower');
var PunchOrBePunched = new as.User('PunchOrBePunched', '01.25.99', 10, 'VIRGINIA, USA', 'PunchOrBePunched');
var Reyals = new as.User('Reyals', '07.08.05', 20, 'NEW YORK, USA', 'Reyals');
var RickMarin = new as.User('RickMarin', '12.25.03', 13, 'FLORIDA, USA', 'RickMarin');
var rtil = new as.User('rtil', '02.27.05', 29, 'WASHINGTON, USA', 'rtil');
var Rucklo = new as.User('Rucklo', '10.11.04', 24, 'KARISTAD, SWEDEN', 'Rucklo');
var S1nt3ch = new as.User('S1nt3ch', '7.2.02', 9, 'NEW YORK, USA', 'S1nt3ch');
var SamIam = new as.User('SamIam', '04.13.06', 23, 'CALIFORNIA, USA', 'SamIam');
var SardonicSamurai = new as.User('SardonicSamurai', '9.15.05', 17, 'OHIO, USA', 'SardonicSamurai');
var Senti = new as.User('Senti', '12.1.03', 37, 'PENNSYLVANIA, USA', 'Senti');
var ShirtTurtle = new as.User('ShirtTurtle', '11.28.05', 17, 'BRISBANE, AUSTRALIA', 'ShirtTurtle');
var Sk8erGirl14 = new as.User('Sk8erGirl14', '5.5.03', 32, 'GEORGIA, USA', 'Sk8erGirl14');
var Spikrodd = new as.User('Spikrodd', '8.27.04', 9, 'SOUTH CAROLINA, USA', 'Spikrodd');
var Spite_Skater = new as.User('Spite-Skater', '10.8.05', 22, 'KANSAS, USA', 'Spite-Skater');
var Sunglasses = new as.User('Sunglasses', '3.13.06', 26, 'ILLINOIS, USA', 'Sunglasses');
var SwiftstylerX = new as.User('SwiftstylerX', '8.27.04', 17, 'MOOSE JAW, SK', 'SwiftstylerX');
var Techno = new as.User('Techno', '8.11.06', 18, 'NEW JERSEY, USA', 'Techno');
var TehSlapHappy = new as.User('TehSlapHappy', '6.25.05', 18, 'SOMEWHERE HAPPY', 'TehSlapHappy');
var Temariix = new as.User('Temariix', '12.29.04', 25, 'PENNSYLAVNIA, USA', 'Temariix');
var The_Swain = new as.User('The-Swain', '9.16.05', 7, 'FLORIDA, USA', 'The-Swain');
var TheCriminalDuder = new as.User('TheCriminalDuder', '12.4.06', 24, 'CHILLIWACK, CANADA', 'TheCriminalDuder');
var TheEmoKiller = new as.User('TheEmoKiller', '3.11.07', 5, 'FLORIDA, USA', 'TheEmoKiller');
var TheHappySheep = new as.User('TheHappySheep', '2.15.04', 17, 'SHEFFIELD, ENGLAND', 'TheHappySheep');
var TheSnakeSkull = new as.User('TheSnakeSkull', '07.17.06', 9, 'NORTH CAROLINA, USA', 'TheSnakeSkull');
var TimFrommeyer = new as.User('TimFrommeyer', '12.01.02', 38, 'DORTMUND, GERMANY', 'TimFrommeyer');
var TrippingMetal = new as.User('TrippingMetal', '7.6.05', 20, 'MISSOURI, USA', 'TrippingMetal');
var TurkeyOnAStick = new as.User('TurkeyOnAStick', '8.8.05', 14, 'NORFOLK, ENGLAND', 'TurkeyOnAStick');
var Tystarr = new as.User('Tystarr', '8.23.04', 26, 'NEW YORK, USA', 'Tystarr');
var UMREE = new as.User('UMREE', '9.23.06', 9, 'CALIFORNIA, USA', 'UMREE');
var UnderARock = new as.User('UnderARock', '3.23.07', 12, 'NEW YORK, USA', 'UnderARock');
var Vortex00 = new as.User('Vortex00', '4.14.07', 15, 'TEXAS, USA', 'Vortex00');
var Vousielle = new as.User('Vousielle', '7.18.07', 15, 'ILLINOIS, USA', 'Vousielle');
var Zombie_Pimp = new as.User('Zombie-Pimp', '8.20.05', 4, 'ONTARIO, CANADA', 'Zombie-Pimp');
var allUsers = [U_50VMP, U_23450, ActiveObjectX, Adman1993, Aeonstars, AlmightyHans, Ani_x, Ansel, AsthmaticHamster, AwesomeSaurus, Bezman, BiffTheTimid, BizarroJoe, BlackMarketKraig, BlueHippo, BoMToons, Brumak, BryceMilburn, Catoblepas, Chillyphilly, Chluaid, ConAir, Connor1234, Coolio_Niato, Dante224, DarkShadow8181, DeadSpread83, Dekuboy, DeuceNine, Djnet, Doomshock, DragonBerry, Egoraptor, El_Presidente, Element_2, Enjoyshaun, FetusDoctor, Funy_mony, Gi_Go, GMagnum, Hammi, HandsomeJake, Henry_nougat, JackSmack, JadeTheAssassin, JakBaronKing, JAZZA, Jeinu, Jonas, JonBro, JoSilver, Just2pale, Kajenx, Kirbopher, KnoxFan25, Krinkels, KupaMan, Kuro, Lalo, LazyMuffin, LiLg, Luis, Maxxor, MiddleFingerRings, Mogly, MRat, Mynamewontfitin, NathanielMilburn, NegativeONE, Nogfish, Notorious, Occluded, Pako, Pezboy440, Pezzo, Poxpower, PunchOrBePunched, Reyals, RickMarin, rtil, Rucklo, S1nt3ch, SamIam, SardonicSamurai, Senti, ShirtTurtle, Sk8erGirl14, Spikrodd, Spite_Skater, Sunglasses, SwiftstylerX, Techno, TehSlapHappy, Temariix, The_Swain, TheCriminalDuder, TheEmoKiller, TheHappySheep, TheSnakeSkull, TimFrommeyer, TrippingMetal, TurkeyOnAStick, Tystarr, UMREE, UnderARock, Vortex00, Vousielle, Zombie_Pimp];
loadUser(number);
}
instance rotate of movieClip 2401 {
onClipEvent (rollOver) {
_parent.mov = true;
}
onClipEvent (rollOut) {
_parent.mov = false;
}
onClipEvent (release) {
_parent.rot = true;
_parent.blackbox.play();
}
}
}