Frame 1
strVersion = getVersion.split(" ")[1].split(",")[0];
isFlash5 = parseInt(strVersion) >= 5;
strPhrase1 = phrase1;
strPhrase2 = phrase2;
strAA = aa;
strB64 = b64;
strBase = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
if ((typeof(strB64) != "undefined") && (strB64 != "")) {
decodeArray = strB64.split("\r");
j = 0;
while (j < 3) {
strTemp = decodeArray[j];
strRaw = "";
iSrc = 0;
i = 0;
while (i < strTemp.length) {
iData = strBase.indexOf(strTemp.charAt(i));
if ((iData != -1) && (iData < 64)) {
iStep = iSrc % 4;
if (iStep == 0) {
bStock = (iData & 63) << 2;
}
if (iStep == 1) {
iTemp = bStock | ((iData & 48) >> 4);
strRaw = strRaw + (((iTemp < 16) ? "%0" : "%") + iTemp.toString(16));
bStock = (iData & 15) << 4;
}
if (iStep == 2) {
iTemp = bStock | ((iData & 60) >> 2);
strRaw = strRaw + (((iTemp < 16) ? "%0" : "%") + iTemp.toString(16));
bStock = (iData & 3) << 6;
}
if (iStep == 3) {
iTemp = bStock | (iData & 63);
strRaw = strRaw + (((iTemp < 16) ? "%0" : "%") + iTemp.toString(16));
}
iSrc++;
}
i++;
}
decodeArray[j] = unescape(strRaw);
j++;
}
}
strPhrase1 = decodeArray[0];
strPhrase2 = decodeArray[1];
strAA = decodeArray[2];
if (typeof(mode) == "undefined") {
mode = "";
}
if (mode == "flash4") {
isFlash5 = false;
}
if (mode == "create") {
gotoAndPlay (27);
}
Frame 25
if (_framesloaded < 230) {
gotoAndPlay (2);
}
gotoAndPlay (48);
Frame 26
gotoAndPlay (2);
Frame 27
strURL = _url;
if (strURL.indexOf("?", 0) != -1) {
strURL = strURL.split("?")[0];
}
Frame 37
stop();
Frame 38
prevFrame();
Frame 48
if ((typeof(strPhrase1) != "undefined") && (strPhrase1 != "")) {
if (strPhrase1.indexOf("\r\n", 0) >= 0) {
strPhrase1 = strPhrase1.split(newline).join("");
}
if ((strPhrase1.indexOf("\r", 0) == -1) && (strPhrase1.indexOf(newline, 0) == -1)) {
strPhrase1 = newline + strPhrase1;
}
strOutput1 = strPhrase1;
}
if ((typeof(strPhrase2) != "undefined") && (strPhrase2 != "")) {
strOutput2 = strPhrase2;
}
if ((typeof(strAA) != "undefined") && (strAA != "")) {
if (strAA.indexOf("\r\n", 0) >= 0) {
strAA = strAA.split(newline).join("");
}
iCrLfCount = 0;
i = 0;
while (i < strAA.length) {
iCrLfCount = iCrLfCount + (("\r\n".indexOf(strAA.substr(i, 1), 0) != -1) ? 1 : 0);
i++;
}
}
Frame 75
if (isFlash5) {
gotoAndPlay (135);
}
Frame 132
stop();
Frame 133
prevFrame();
Frame 189
if ((typeof(strAA) != "undefined") && (strAA != "")) {
softMona.strOutputAA = strAA;
bag._visible = false;
}
Frame 237
dY = -2;
bag._rotation = 0;
Frame 238
iX = getProperty("softMona", _x);
iY = getProperty("softMona", _y);
iY = iY + (dY++);
iX = iX + 12;
setProperty("softMona", _x , iX);
setProperty("softMona", _y , iY);
setProperty("bag", _x , getProperty("bag", _x) + 12);
setProperty("bag", _y , getProperty("bag", _y) + dY);
Frame 239
if (iY < 560) {
gotoAndPlay (238);
}
Frame 255
if (mode == "create") {
gotoAndPlay (27);
}
stop();
Symbol 16 Button
on (release) {
strBase = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
encodeArray = new Array(strInput1, strInput2, strInputAA);
i = 0;
while (i < 3) {
strTemp = escape(encodeArray[i]);
strB64 = "";
iSrc = 0;
while (0 < strTemp.length) {
if (strTemp.charAt(0) == "%") {
iData = parseInt("0x" + strTemp.substr(1, 2));
strTemp = strTemp.substr(3);
} else {
iData = strTemp.charCodeAt(0);
strTemp = strTemp.substr(1);
}
iStep = iSrc % 3;
if (iStep == 0) {
strB64 = strB64 + strBase.charAt(iData >> 2);
iStock = (iData & 3) << 4;
}
if (iStep == 1) {
strB64 = strB64 + strBase.charAt(iStock | (iData >> 4));
iStock = (iData & 15) << 2;
}
if (iStep == 2) {
strB64 = strB64 + strBase.charAt(iStock | (iData >> 6));
strB64 = strB64 + strBase.charAt(iData & 63);
iStock = 0;
}
iSrc++;
}
if ((iSrc % 3) != 0) {
strB64 = strB64 + strBase.charAt(iStock);
strB64 = strB64 + (((iSrc % 3) == 2) ? "=" : "==");
}
encodeArray[i] = strB64;
i++;
}
strQuery = (strURL + "?b64=") + escape(encodeArray.join("\r"));
getURL (strQuery, "_self");
stop();
}
Symbol 18 Button
on (release) {
strPhrase1 = strInput1;
strPhrase2 = strInput2;
strAA = strInputAA;
gotoAndPlay (48);
}