diff --git a/assets/css/player.css b/assets/css/player.css new file mode 100644 index 0000000..6155d91 --- /dev/null +++ b/assets/css/player.css @@ -0,0 +1,33 @@ +html, +body { + --padding: 40px; + display: initial; + overflow: hidden; + padding: var(--padding); + box-sizing: border-box; +} + +#player { + position: absolute; + bottom: var(--padding); +} + +#player pre, +#player p { + font-size: 16px; + color: rgb(var(--color-accent)); +} + +#player p { + margin: 0; + height: 23px; +} + +#player p:last-child::after { + content: "_"; + animation: blink 500ms alternate infinite; +} + +@keyframes blink { + to { opacity: 0; } +} \ No newline at end of file diff --git a/assets/css/style.css b/assets/css/style.css index d76af51..92313a4 100755 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1,7 +1,7 @@ :root { --color-background: 0,0,0; --color-contrast: 255,255,255; - --color-accent: 170,130,40; + --color-accent: 255,212,0; } html, @@ -30,21 +30,6 @@ a { font-size: 18px; } -#player pre, -#player p { - font-size: clamp(3vh,2vh,2vw); - color: rgb(var(--color-accent)); -} - -#player p:last-child::after { - content: "_"; - animation: blink 500ms alternate infinite; -} - -@keyframes blink { - to { opacity: 0; } -} - footer { position: fixed; box-sizing: border-box; diff --git a/assets/js/modules/PlayerManager.mjs b/assets/js/modules/PlayerManager.mjs index 2564146..ed07b96 100644 --- a/assets/js/modules/PlayerManager.mjs +++ b/assets/js/modules/PlayerManager.mjs @@ -2,8 +2,9 @@ import { default as PlayerWindow } from "./PlayerWindow.mjs"; import { default as Monkeydo } from "./monkeydo/Monkeydo.mjs"; export default class WindowManager { - constructor() { + constructor(mediaElement) { const self = this; + this.mediaElement = mediaElement; // Bi-directional communcation to player windows this.channels = { @@ -12,9 +13,12 @@ export default class WindowManager { "#art": new BroadcastChannel("#art") }; + for(const channel of Object.values(this.channels)) { + channel.addEventListener("message",event => this.message(event)); + } + // Monkeydo methods const methods = { - self: self, blank: (target) => { self.channels[target].postMessage(["BLANK",target]); }, @@ -26,11 +30,16 @@ export default class WindowManager { }, drawArt: (index,target = "#art") => { self.channels[target].postMessage(["DRAW_ART",index]); + }, + playCredits: () => { + self.players.credits.do(); } } - this.player = new Monkeydo(methods); - this.player.loop(-1); + this.players = { + lyrics: new Monkeydo(methods), + credits: new Monkeydo(methods) + } } playbackFailed(promiseObject = false) { @@ -62,8 +71,18 @@ export default class WindowManager { }); } - // Open player windows and start playback async play() { + for(const [key,player] of Object.entries(this.players)) { + const manifest = new URL(window.location.href + `monkeydo_${key}.json`); + + await player.load(manifest.toString()); + } + this.players.lyrics.do(); + this.mediaElement.play(); + } + + // Open player windows and start playback + async init() { const art = this.spawnPlayer("#art"); const credits = this.spawnPlayer("#credits"); const lyrics = this.spawnPlayer("#lyrics"); @@ -81,8 +100,18 @@ export default class WindowManager { }); // Load Monkeydo manifest and start playback - const manifest = new URL(window.location.href + "monkeydo.json"); - this.player.load(manifest.toString()).then(() => this.player.do()); + this.play(); }); } + + message(event) { + const type = event.data[0]; + const data = event.data[1]; + console.log(event); + + switch(type) { + case "PLAY": console.log("PLAY",event); break; + case "WINDOW_CLOSED": console.log("WINDOW_CLOSED",event); break; + } + } } \ No newline at end of file diff --git a/assets/js/modules/StillAlivePlayer.mjs b/assets/js/modules/StillAlivePlayer.mjs new file mode 100644 index 0000000..7a177a7 --- /dev/null +++ b/assets/js/modules/StillAlivePlayer.mjs @@ -0,0 +1,63 @@ +// Encoded in order from: https://blog.kazitor.com/2014/12/portal-ascii/ +const artset = [ + "%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C-%3A%3B%2F%2F%3B%3A%3D%2C%0A%20%20%20%20%20%20%20%20%20.%20%3AH%40%40%40MM%40M%23H%2F.%2C%2B%25%3B%2C%0A%20%20%20%20%20%20%2C%2FX%2B%20%2BM%40%40M%40MM%25%3D%2C-%25HMMM%40X%2F%2C%0A%20%20%20%20%20-%2B%40MM%3B%20%24M%40%40MH%2B-%2C%3BXMMMM%40MMMM%40%2B-%0A%20%20%20%20%3B%40M%40%40M-%20XM%40X%3B.%20-%2BXXXXXHHH%40M%40M%23%40%2F.%0A%20%20%2C%25MM%40%40MH%20%2C%40%25%3D%20%20%20%20%20%20%20%20%20%20%20%20.---%3D-%3D%3A%3D%2C.%0A%20%20-%40%23%40%40%40MX%20.%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%25HX%24%24%25%25%25%2B%3B%0A%20%3D-.%2F%40M%40M%24%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3B%40MMMM%40MM%3A%0A%20X%40%2F%20-%24MM%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2BMM%40%40%40M%24%0A%2C%40M%40H%3A%20%3A%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%20-X%23%40%40%40%40-%0A%2C%40%40%40MMX%2C%20.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2FH-%20%3B%40M%40M%3D%0A.H%40%40%40%40M%40%2B%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25MM%2B..%25%23%24.%0A%20%2FMMMM%40MMH%2F.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20XM%40MH%3B%20-%3B%0A%20%20%2F%25%2B%25%24XHH%40%24%3D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%20.H%40%40%40%40MX%2C%0A%20%20%20.%3D--------.%20%20%20%20%20%20%20%20%20%20%20-%25H.%2C%40%40%40%40%40MX%2C%0A%20%20%20.%25MM%40%40%40HHHXX%24%24%24%25%2B-%20.%3A%24MMX%20-M%40%40MM%25.%0A%20%20%20%20%20%3DXMMM%40MM%40MM%23H%3B%2C-%2BHMM%40M%2B%20%2FMMMX%3D%0A%20%20%20%20%20%20%20%3D%25%40M%40M%23%40%24-.%3D%24%40MM%40%40%40M%3B%20%25M%25%3D%0A%20%20%20%20%20%20%20%20%20%2C%3A%2B%24%2B-%2C%2FH%23MMMMMMM%40-%20-%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2B%2B%25%25%25%25%2B%2F%3A-.", + "%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2B%24HM%23%23%23%23%40H%25%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%2FH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%24%2C%0A%20%20%20%20%20%20%20%20%20%20%2C%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20.H%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%24%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2FX%2F%3B%3B%2BX%2F%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-XHHX-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%23%23%23%23%23%23%2C%0A%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20.M%23%23%23%23M.%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%23%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23-%20%20%20-%2F%2F-%20%20%20-%23%23%23%23%23%23%23%23%23%23%23%23%23%23%0AX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%25%2C%20%20%20%20%20%20%2C%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%0A-%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%20%20%20%20%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20%25%23%23%23%23%23%23%23%23%23%23%23%23%25%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%23%23%23%23%25%0A%20%20%25%23%23%23%23%23%23%23%23%23%23%3B%20%20%20%20%20%20%20%20%20%20%20%20%3B%23%23%23%23%23%23%23%23%23%23%25%0A%20%20%20%3B%23%23%23%23%23%23%23M%3D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DM%23%23%23%23%23%23%23%3B%0A%20%20%20%20.%2BM%23%23%23%40%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%40%23%23%23M%2B.%0A%20%20%20%20%20%20%20%3AXH.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.HX%3A", + "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2F%3B%3B%2F-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%3A%20%20%20%20%2F%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%3B%20%20%20%20%20%20%2F%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-X%20%20%20%20%20%20%20%20H.%0A.%2F%2F%3B%3B%3B%3A%3B%3B-%2C%20%20%20X%3D%20%20%20%20%20%20%20%20%3A%2B%20%20%20.-%3B%3A%3D%3B%3A%3B%25%3B.%0AM-%20%20%20%20%20%20%20%2C%3D%3B%3B%3B%23%3A%2C%20%20%20%20%20%20%2C%3A%23%3B%3B%3A%3D%2C%20%20%20%20%20%20%20%2C%40%0A%3A%25%20%20%20%20%20%20%20%20%20%20%20%3A%25.%3D%2F%2B%2B%2B%2B%2F%3D.%24%3D%20%20%20%20%20%20%20%20%20%20%20%25%3D%0A%20%2C%25%3B%20%20%20%20%20%20%20%20%20%25%2F%3A%2B%2F%3B%2C%2C%2F%2B%2B%3A%2B%2F%20%20%20%20%20%20%20%20%20%3B%2B.%0A%20%20%20%2C%2B%2F.%20%20%20%20%2C%3B%40%2B%2C%20%20%20%20%20%20%20%20%2C%25H%3B%2C%20%20%20%20%2C%2F%2B%2C%0A%20%20%20%20%20%20%3B%2B%3B%3B%2F%3D%20%40.%20%20.H%23%23X%20%20%20-X%20%3A%2F%2F%2F%2B%3B%0A%20%20%20%20%20%20%3B%2B%3D%3B%3B%3B.%40%2C%20%20.XM%40%24.%20%20%3DX.%2F%2F%3B%3D%25%2F.%0A%20%20%20%2C%3B%3A%20%20%20%20%20%20%3A%40%25%3D%20%20%20%20%20%20%20%20%3D%24H%3A%20%20%20%20%20.%2B%25-%0A%20%2C%25%3D%20%20%20%20%20%20%20%20%20%25%3B-%2F%2F%2F%3D%3D%2F%2F%2F-%2F%2F%20%20%20%20%20%20%20%20%20%3D%25%2C%0A%3B%2B%20%20%20%20%20%20%20%20%20%20%20%3A%25-%3B%3B%3B%3B%3B%3B%3B%3B-X-%20%20%20%20%20%20%20%20%20%20%20%2B%3A%0A%40-%20%20%20%20%20%20.-%3B%3B%3B%3BM-%20%20%20%20%20%20%20%20%3DM%2F%3B%3B%3B-.%20%20%20%20%20%20-X%0A%20%3A%3B%3B%3A%3A%3B%3B-.%20%20%20%20%25-%20%20%20%20%20%20%20%20%3A%2B%20%20%20%20%2C-%3B%3B-%3B%3A%3D%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2CX%20%20%20%20%20%20%20%20H.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%2F%20%20%20%20%20%20%25%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20%20%2B%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2F%2F%2F%2F%2C", + "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C---.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2FXM%23MMMX%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%25%23%23%23%23%23%23%23%23%23%23M%25%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%40%23%23%23%23%23%23%25%20%20%24%23%23%23%40%3D%0A%20%20%20%20%20%20.%2C--%2C%20%20%20%20%20%20%20%20%20-H%23%23%23%23%23%23%23%24%20%20%20%24%23%23%23M%3A%0A%20%20%20%2C%3B%24M%23%23%23MMX%3B%20%20%20%20%20.%3B%23%23%23%23%23%23%23%23%23%23%24%3BHM%23%23%23X%3D%0A%2C%2F%40%23%23%23%23%23%23%23%23%23%23%23H%3D%20%20%20%20%20%20%3B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A-%2B%23%23%23%23%23%23%23%23%23%23%23%23%23M%2F%2C%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%25M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3D%20%20%20%20%20%20%2F%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3A%0AH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%20%20%20%20%20%20.M%23%23%23%23%23%23%23%23%23%23%23%23%23%3B.%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%20%20%20%20%20%20%2C%40%23%23%23%23%23%23%23%23%23%23%23M%3A.%0AX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2C%20%20%20%20%20%20-%24%3DX%23%23%23%23%23%23%23%40%3A%0A%2F%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%25-%20%20%20%20%20%2B%23%23%23%23%23%23%24-%0A.%3B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%20%20%20.X%23%23%23%23%23%2B%2C%0A%20.%3BH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2F%20%20%20%20%20-X%23%23%23%23%2B.%0A%20%20%20%2C%3BX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2C%20%20%20%20%20%20%20.MM%2F%0A%20%20%20%20%20%20%2C%3A%2B%24H%40M%23%23%23%23%23%23%23M%23%24-%20%20%20%20.%24%24%3D%0A%20%20%20%20%20%20%20%20%20%20%20.%2C-%3D%3B%2B%24%40%23%23%23X%3A%20%20%20%20%3B%2F%3D.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C%2FX%24%3B%20%20%20.%3A%3A%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C%20%20%20%20..", + "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%24-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.H%23%23H%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2B%23%23%23%23%23%23%23%23%23H.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%24%23%23%23%23%23%23%23%23%23%23%23%23%40.%0A%20%20%20%20%20%20%20%20%20%20%20%20%3DH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%20%20-X%3A%0A%20%20%20%20%20%20%20%20%20%20.%24%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3A%20%20%40%23%40-%0A%20%20%20%20%20%2C%3B%20%20.M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3B%20%20H%23%23%23%3B%0A%20%20%20%3B%40%23%3A%20%20%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%20%20%2C%23%23%23%23%23%3A%0A%20-M%23%23%23.%20%20M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40.%20%20%3B%23%23%23%23%23%23H%0A%20M%23%23%23%23-%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%20%20%20%3D%40%23%23%23%23%23%23%23X%0A%20H%23%23%23%23%24%20%20%20-M%23%23%23%23%23%23%23%23%23%23%23%2B%20%20%20%3A%23%23%23%23%23%23%23%23%23M%2C%0A%20%20%2F%23%23%23%23X-%20%20%20%3D%23%23%23%23%23%23%23%23%25%20%20%20%3AM%23%23%23%23%23%23%23%23%40%2F.%0A%20%20%20%20%2C%3B%25H%40X%3B%20%20%20.%24%23%23%23X%20%20%20%3A%23%23MM%40%25%2B%3B%3A-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20..%0A%20%20-%2F%3B%3A-%2C.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2C-%3D%3D%2BM%23%23%23%23%23%23%23%23H%0A%20-%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40HX%25%25%2B%25%25%24%25%25%25%2B%3A%2C%2C%0A%20%20%20%20.-%2FH%25%25%25%2B%25%25%24H%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%40%2B%3D%3A%2F%2B%3A%0A%2FXHX%25%3A%23%23%23%23%23MH%25%3D%20%20%20%20%2C---%3A%3B%3B%3B%3B%2F%26%26XHM%2C%3A%23%23%23%24%0A%24%40%23MX%20%25%2B%3B-%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.", + "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AX-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AX%23%23%23%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%40%23%23%23%23%40%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3BM%23%23%23%23%23%23X%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%40%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%24%23%23%23%23%23%23%23%23%23%23%40%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DM%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.H%23%23%23%23%23%23%23%23%23%23%23%23%24%3D.%0A%20%20%20%20%20%20%20%20%20%2C%2F%3A%20%20%20%20%20%20%20%20%20%2CM%23%23%23%23%23%23%23%23%23%23M%3B.%0A%20%20%20%20%20%20-%2B%40%23%23%23%3B%20%20%20%20%20%20%20%3D%23%23%23%23%23%23%23%23%23%23M%3B%0A%20%20%20%3D%25M%23%23%23%23%23%23%23%3B%20%20%20%20%20%3A%23%23%23%23%23%23%23%23%23M%2F%0A-%24M%23%23%23%23%23%23%23%23%23%23%23%3B%20%20%20%3A%23%23%23%23%23%23%23%23%2F%0A%20%2C%3BX%23%23%23%23%23%23%23%23%23%23%23%3B%20%3D%23%23%23%23%23%23%23%24.%0A%20%20%20%20%20%3BH%23%23%23%23%23%23%23%23%23%2B%23%23%23%23%23%23M%3D%0A%20%20%20%20%20%20%20%2C%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%2FM%23%23%23%23%23%23%23%23%40-%0A%20%20%20%20%20%20%20%20%20%20%20%20%3BM%23%23%23%23%23%25%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%3A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%24M-", + "%20%20%20%20%20%20%20%20%20%20%20%20.%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%2FM%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20H%23%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%23%23%23H-%20%20%20%20%20%20%20%20%20%20-%40%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%24.%20%20-%3B%20%20.%25%23X%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20M%23%23%23%23%23%2B%3B%23H%20%3AM%23M.%0A..%20%20%20%20%20%20%20%20%20%20.%2B%2F%3B%25%23%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20-%2F%25H%25%2B%3B-%2C%20%20%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20.%3A%24M%23%23%23MH%24%25%2B%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%2C--%3D%3B-%0A%20%20%20%20%20%20%20%20-%2FH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%2B%3D.%0A%20%20%20%20%20%20%20%20%20%20%20.%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23X.%0A%20%20%20%20%20%20%20%20%20%3D%25M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%3B.%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%3B%3B%2F%25%25%3B%2C%0A%20%20%20%20%20%20%20%20%20-%25%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%3BH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%3D%0A%20%20%20%20%2C%25%23%23%23%23%23MH%24%25%3B%2B%23%23%23%23%23M%23%23%23-%2F%40%23%23%23%23%25%0A%20%20%3A%24H%25%2B%3B%3D-%20%20%20%20%20%20-%23%23%23%23X.%2CH%23%20%20%20-%2BM%23%23%40-%0A%20.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%23%23%23%3B%20%20%20%20%3B%20%20%20%20%20%20%3D%24%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%23H%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AXH%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3B-", + "%20%20%20%20%20%20%20%20%20%20%20.-%3B%2B%24XHHHHHHX%24%2B%3B-.%0A%20%20%20%20%20%20%20%20%2C%3BX%40%40X%25%2F%3B%3D----%3D%3A%2F%25X%40%40X%2F%2C%0A%20%20%20%20%20%20%3D%24%40%40%25%3D.%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3D%2BH%40X%3A%0A%20%20%20%20-XMX%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DXMX%3D%0A%20%20%20%2F%40%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DH%40%2B%0A%20%20%25%40X%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%24%40%24%0A%20%2B%40X.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%24%40%25%0A-%40%40%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%40%40%3D%0A%25%40%25%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%40%24%0AH%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3A%40H%0AH%40%3A%20%20%20%20%20%20%20%20%20%3AHHHHHHHHHHHHHHHHHHX%2C%20%20%20%20%3D%40H%0A%25%40%25%20%20%20%20%20%20%20%20%20%3B%40M%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40H-%20%20%20%2B%40%24%0A%3D%40%40%2C%20%20%20%20%20%20%20%20%3A%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%3D%20.%40%40%3A%0A%20%2B%40X%20%20%20%20%20%20%20%20%3A%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%40%40%3A%25%40%25%0A%20%20%24%40%24%2C%20%20%20%20%20%20%3B%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%40%40%24.%0A%20%20%20%2B%40%40HHHHHHH%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%2B%0A%20%20%20%20%3DX%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40X%3D%0A%20%20%20%20%20%20%3A%24%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%24%3A%0A%20%20%20%20%20%20%20%20%2C%3B%24%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40X%2F-%0A%20%20%20%20%20%20%20%20%20%20%20.-%3B%2B%24XXHHHHHX%24%2B%3B-.", + "%20%20%20%20%20%20%20%20%20%20%20%20%2C%3A%2F%2B%2F-%0A%20%20%20%20%20%20%20%20%20%20%20%20%2FM%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C-%3D%3B%2F%2F%3B-%0A%20%20%20%20%20%20%20.%3A%2F%3D%20%3BMH%2F%2C%20%20%20%20%2C%3D%2F%2B%25%24XH%40MM%23%40%3A%0A%20%20%20%20%20%20-%24%23%23%40%2B%24%23%23%23%40H%40MMM%23%23%23%23%23%23%23H%3A.%20%20%20%20-%2FH%23%0A%20.%2CH%40H%40%20X%23%23%23%23%23%23%40%20-H%23%23%23%23%23%40%2B-%20%20%20%20%20-%2BH%23%23%23%40X%0A%20%20.%2C%40%23%23H%3B%20%20%20%20%20%20%2BXM%23%23M%2F%2C%20%20%20%20%20%3D%25%40%23%23%23%40X%3B-%0AX%25-%20%20%3AM%23%23%23%23%23%23%23%23%23%23%24.%20%20%20%20.%3A%25M%23%23%23%40%25%3A%0AM%23%23H%2C%20%20%20%2BH%40%40%40%24%2F-.%20%20%2C%3B%24M%23%23%23%40%25%2C%20%20%20%20%20%20%20%20%20%20-%0AM%23%23%23%23M%3D%2C%2C---%2C.-%25%25H%23%23%23%23M%24%3A%20%20%20%20%20%20%20%20%20%20%2C%2B%40%23%23%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%2F.%20%20%20%20%20%20%20%20%20%3A%25H%23%23%40%24-%0AM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%2C%20%20%20%20%20%20%20%20%20%3BHM%23%23M%24%3D%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23.%20%20%20%20.%3D%24M%23%23M%24%3D%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H..%3BXM%23%23M%24%3D%20%20%20%20%20%20%20%20%20%20.%3A%2B%0AM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%25%3D%20%20%20%20%20%20%20%20%20%20%20%3D%2B%40MH%25%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%2F.%20%20%20%20%20%20%20%20%20%3D%2BH%23X%25%3D%0A%3D%2BM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%2C%20%20%20%20%20%20%2C%2FX%23H%2B%3A%2C%0A%20%20.%3BXM%23%23%23%23%23%23%23%23%23%23%23H%3D%20%20%20%2C%2FX%23H%2B%3A%3B%0A%20%20%20%20%20.%3D%2BHM%23%23%23%23%23%23%23M%2B%2F%2BHM%40%2B%3D.%0A%20%20%20%20%20%20%20%20%20%2C%3A%2F%25XM%23%23%23%23H%2F.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C.%3A%3D-.", + "%20%20%20%20%20%20%20%23%2B%20%40%20%20%20%20%20%20%23%20%23%20%20%20%20%20%20%20%20%20%20%20%20%20%20M%23%40%0A%20.%20%20%20%20.X%20%20X.%25%23%23%40%3B%23%20%23%20%20%20%2B%40%23%23%23%23%23%23%23X.%20%40H%25%0A%20%20%20%2C%3D%3D.%20%20%20%2C%23%23%23%23%23%23M%2B%20%20-%23%23%23%23%23%25M%23%23%23%23M-%20%20%20%20%23%0A%20%20%3AH%23%23M%25%3A%3D%23%23%2B%20.M%23%23M%2C%3B%23%23%23%23%23%2F%2B%23%23%23%23%23%23%23%25%20%2CM%23%0A%20.M%23%23%23%23%23%23%23%23%3D%20%20%3D%40%23%40.%3D%23%23%23%23%23M%3DM%23%23%23%23%23%23%23%3D%20%20X%23%0A%20%3A%40%40MMM%23%23M.%20%20-%23%23M.%2C%23%23%23%23%23%23%23M%23%23%23%23%23%23%23.%20%3D%20%20M%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%40%23%23..%23%23%23%3A.%20%20%20%20.H%23%23%23%23.%20%40%40%20X%2C%0A%20%20%20%23%23%23%23%23%23%23%23%23%23%23%23%3A%20%23%23%23%2C%2F%23%23%23%23%3B%20%20%2F%23%23%3D%20%40%23.%20M%0A%20%20%20%20%20%20%20%20%20%20%20%2CM%23%23%20%3B%23%23%2C%40%23M%3B%2FM%23M%20%20%40%23%20X%23%25%20X%23%0A.%25%3D%20%20%20%23%23%23%23%23%23M%23%23%20%23%23.M%23%3A%20%20%20.%2F%23M%20%2CM%20%23M%20%2C%23%24%0A%23%23%2F%20%20%20%20%20%20%20%20%20%24%23%23%20%23%2B%3B%23%3A%20%23%23%23%23%20%3B%23%2F%20M%20M-%20%40%23%20%3A%0A%23%2B%20%23M%40MM%23%23%23M-%3BM%20%23%3A%24%23-%23%23%24H%23%20.%23X%20%40%20%2B%20%24%23.%20%23%0A%20%20%20%20%20%20%23%23%23%23%23%23%2F.%3A%20%23%25%3D%23%20M%23%3AMM.%2F%23.-%23%20%20%40%23%3A%20H%23%0A%2B%2C.%3D%20%20%20%40%23%23%23%3A%20%2F%40%20%25%23%2C%40%20%20%23%23%40X%20%23%2C-%23%40.%23%23%25%20.%40%23%0A%23%23%23%23%23%2B%3B%2F%23%23%2F%20%40%23%23%20%20%40%23%2C%2B%20%20%20%20%20%20%20%2F%23M%20%20%20%20.%20X%2C%0A%20%20%20%3B%23%23%23M%23%40%20M%23%23%23H%20.%23M-%20%20%20%20%20%2C%23%23M%20%20%3B%40%40%3B%20%23%23%23%0A%20%20%20.M%23M%23%23H%20%3B%23%23%23%23X%20%2C%40%23%23%23%23%23%23%23M%2F%20-M%23%23%23%24%20%20-H%0A%20%20%20%20.M%23%23%23%25%20%20X%23%23%23%23H%20%20.%40%40MM%40%3B%20%20%3B%40%23M%40%0A%20%20%20%20%20%20H%23M%20%20%20%20%2F%40%23%23%23%23%2F%20%20%20%20%20%20%2C%2B%2B.%20%20%2F%20%3D%3D-%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%3D%2F%3A%2C%20.%2BX%40MMH%40%23H%20%20%23%23%23%23%23%24%3D" +]; + +export default class StillAlivePlayer { + constructor(element) { + this.channel = new BroadcastChannel(window.location.hash); + this.channel.addEventListener("message",event => this.message(event)); + + this.player = element; + + this.channel.postMessage(["WINDOW_READY",window.location.hash]); + } + + // Clear the screen from elements + blank() { + while(this.player.firstChild) { + this.player.removeChild(this.player.lastChild); + } + } + + // Create a new paragraph and make it the target for textFeed calls + lineFeed() { + this.target = document.createElement("p"); + this.player.appendChild(this.target); + } + + // Append text to the current target element + textFeed(text) { + this.target.innerText = this.target.innerText + text; + } + + // Decode and draw art from artset by key + drawArt(key) { + this.blank(); + this.target = document.createElement("pre"); + this.target.innerText = window.decodeURIComponent(artset[key]); + this.player.appendChild(this.target); + } + + message(event) { + const type = event.data[0]; + const data = event.data[1]; + console.log(event); + + switch(type) { + case "LINE_FEED": this.lineFeed(); break; + case "TEXT_FEED": this.textFeed(data); break; + case "DRAW_ART": this.drawArt(data); break; + case "BLANK": this.blank(); break; + } + } +} \ No newline at end of file diff --git a/assets/js/player.mjs b/assets/js/player.mjs index f598ac7..d75aed8 100644 --- a/assets/js/player.mjs +++ b/assets/js/player.mjs @@ -1,66 +1,4 @@ -// Encoded in order from ASCII art created by: https://blog.kazitor.com/2014/12/portal-ascii/ -const artset = [ - "%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C-%3A%3B%2F%2F%3B%3A%3D%2C%0A%20%20%20%20%20%20%20%20%20.%20%3AH%40%40%40MM%40M%23H%2F.%2C%2B%25%3B%2C%0A%20%20%20%20%20%20%2C%2FX%2B%20%2BM%40%40M%40MM%25%3D%2C-%25HMMM%40X%2F%2C%0A%20%20%20%20%20-%2B%40MM%3B%20%24M%40%40MH%2B-%2C%3BXMMMM%40MMMM%40%2B-%0A%20%20%20%20%3B%40M%40%40M-%20XM%40X%3B.%20-%2BXXXXXHHH%40M%40M%23%40%2F.%0A%20%20%2C%25MM%40%40MH%20%2C%40%25%3D%20%20%20%20%20%20%20%20%20%20%20%20.---%3D-%3D%3A%3D%2C.%0A%20%20-%40%23%40%40%40MX%20.%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%25HX%24%24%25%25%25%2B%3B%0A%20%3D-.%2F%40M%40M%24%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3B%40MMMM%40MM%3A%0A%20X%40%2F%20-%24MM%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2BMM%40%40%40M%24%0A%2C%40M%40H%3A%20%3A%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%20-X%23%40%40%40%40-%0A%2C%40%40%40MMX%2C%20.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2FH-%20%3B%40M%40M%3D%0A.H%40%40%40%40M%40%2B%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25MM%2B..%25%23%24.%0A%20%2FMMMM%40MMH%2F.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20XM%40MH%3B%20-%3B%0A%20%20%2F%25%2B%25%24XHH%40%24%3D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%20.H%40%40%40%40MX%2C%0A%20%20%20.%3D--------.%20%20%20%20%20%20%20%20%20%20%20-%25H.%2C%40%40%40%40%40MX%2C%0A%20%20%20.%25MM%40%40%40HHHXX%24%24%24%25%2B-%20.%3A%24MMX%20-M%40%40MM%25.%0A%20%20%20%20%20%3DXMMM%40MM%40MM%23H%3B%2C-%2BHMM%40M%2B%20%2FMMMX%3D%0A%20%20%20%20%20%20%20%3D%25%40M%40M%23%40%24-.%3D%24%40MM%40%40%40M%3B%20%25M%25%3D%0A%20%20%20%20%20%20%20%20%20%2C%3A%2B%24%2B-%2C%2FH%23MMMMMMM%40-%20-%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2B%2B%25%25%25%25%2B%2F%3A-.", - "%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2B%24HM%23%23%23%23%40H%25%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%2FH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%24%2C%0A%20%20%20%20%20%20%20%20%20%20%2C%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20.H%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%24%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2FX%2F%3B%3B%2BX%2F%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-XHHX-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%23%23%23%23%23%23%2C%0A%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20.M%23%23%23%23M.%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%23%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23-%20%20%20-%2F%2F-%20%20%20-%23%23%23%23%23%23%23%23%23%23%23%23%23%23%0AX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%25%2C%20%20%20%20%20%20%2C%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%0A-%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%20%20%20%20%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20%25%23%23%23%23%23%23%23%23%23%23%23%23%25%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%23%23%23%23%25%0A%20%20%25%23%23%23%23%23%23%23%23%23%23%3B%20%20%20%20%20%20%20%20%20%20%20%20%3B%23%23%23%23%23%23%23%23%23%23%25%0A%20%20%20%3B%23%23%23%23%23%23%23M%3D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DM%23%23%23%23%23%23%23%3B%0A%20%20%20%20.%2BM%23%23%23%40%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%40%23%23%23M%2B.%0A%20%20%20%20%20%20%20%3AXH.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.HX%3A", - "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2F%3B%3B%2F-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%3A%20%20%20%20%2F%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%3B%20%20%20%20%20%20%2F%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-X%20%20%20%20%20%20%20%20H.%0A.%2F%2F%3B%3B%3B%3A%3B%3B-%2C%20%20%20X%3D%20%20%20%20%20%20%20%20%3A%2B%20%20%20.-%3B%3A%3D%3B%3A%3B%25%3B.%0AM-%20%20%20%20%20%20%20%2C%3D%3B%3B%3B%23%3A%2C%20%20%20%20%20%20%2C%3A%23%3B%3B%3A%3D%2C%20%20%20%20%20%20%20%2C%40%0A%3A%25%20%20%20%20%20%20%20%20%20%20%20%3A%25.%3D%2F%2B%2B%2B%2B%2F%3D.%24%3D%20%20%20%20%20%20%20%20%20%20%20%25%3D%0A%20%2C%25%3B%20%20%20%20%20%20%20%20%20%25%2F%3A%2B%2F%3B%2C%2C%2F%2B%2B%3A%2B%2F%20%20%20%20%20%20%20%20%20%3B%2B.%0A%20%20%20%2C%2B%2F.%20%20%20%20%2C%3B%40%2B%2C%20%20%20%20%20%20%20%20%2C%25H%3B%2C%20%20%20%20%2C%2F%2B%2C%0A%20%20%20%20%20%20%3B%2B%3B%3B%2F%3D%20%40.%20%20.H%23%23X%20%20%20-X%20%3A%2F%2F%2F%2B%3B%0A%20%20%20%20%20%20%3B%2B%3D%3B%3B%3B.%40%2C%20%20.XM%40%24.%20%20%3DX.%2F%2F%3B%3D%25%2F.%0A%20%20%20%2C%3B%3A%20%20%20%20%20%20%3A%40%25%3D%20%20%20%20%20%20%20%20%3D%24H%3A%20%20%20%20%20.%2B%25-%0A%20%2C%25%3D%20%20%20%20%20%20%20%20%20%25%3B-%2F%2F%2F%3D%3D%2F%2F%2F-%2F%2F%20%20%20%20%20%20%20%20%20%3D%25%2C%0A%3B%2B%20%20%20%20%20%20%20%20%20%20%20%3A%25-%3B%3B%3B%3B%3B%3B%3B%3B-X-%20%20%20%20%20%20%20%20%20%20%20%2B%3A%0A%40-%20%20%20%20%20%20.-%3B%3B%3B%3BM-%20%20%20%20%20%20%20%20%3DM%2F%3B%3B%3B-.%20%20%20%20%20%20-X%0A%20%3A%3B%3B%3A%3A%3B%3B-.%20%20%20%20%25-%20%20%20%20%20%20%20%20%3A%2B%20%20%20%20%2C-%3B%3B-%3B%3A%3D%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2CX%20%20%20%20%20%20%20%20H.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%2F%20%20%20%20%20%20%25%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20%20%2B%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2F%2F%2F%2F%2C", - "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C---.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2FXM%23MMMX%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%25%23%23%23%23%23%23%23%23%23%23M%25%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%40%23%23%23%23%23%23%25%20%20%24%23%23%23%40%3D%0A%20%20%20%20%20%20.%2C--%2C%20%20%20%20%20%20%20%20%20-H%23%23%23%23%23%23%23%24%20%20%20%24%23%23%23M%3A%0A%20%20%20%2C%3B%24M%23%23%23MMX%3B%20%20%20%20%20.%3B%23%23%23%23%23%23%23%23%23%23%24%3BHM%23%23%23X%3D%0A%2C%2F%40%23%23%23%23%23%23%23%23%23%23%23H%3D%20%20%20%20%20%20%3B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A-%2B%23%23%23%23%23%23%23%23%23%23%23%23%23M%2F%2C%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%25M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3D%20%20%20%20%20%20%2F%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3A%0AH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%20%20%20%20%20%20.M%23%23%23%23%23%23%23%23%23%23%23%23%23%3B.%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%20%20%20%20%20%20%2C%40%23%23%23%23%23%23%23%23%23%23%23M%3A.%0AX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2C%20%20%20%20%20%20-%24%3DX%23%23%23%23%23%23%23%40%3A%0A%2F%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%25-%20%20%20%20%20%2B%23%23%23%23%23%23%24-%0A.%3B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%20%20%20.X%23%23%23%23%23%2B%2C%0A%20.%3BH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2F%20%20%20%20%20-X%23%23%23%23%2B.%0A%20%20%20%2C%3BX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2C%20%20%20%20%20%20%20.MM%2F%0A%20%20%20%20%20%20%2C%3A%2B%24H%40M%23%23%23%23%23%23%23M%23%24-%20%20%20%20.%24%24%3D%0A%20%20%20%20%20%20%20%20%20%20%20.%2C-%3D%3B%2B%24%40%23%23%23X%3A%20%20%20%20%3B%2F%3D.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C%2FX%24%3B%20%20%20.%3A%3A%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C%20%20%20%20..", - "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%24-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.H%23%23H%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2B%23%23%23%23%23%23%23%23%23H.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%24%23%23%23%23%23%23%23%23%23%23%23%23%40.%0A%20%20%20%20%20%20%20%20%20%20%20%20%3DH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%20%20-X%3A%0A%20%20%20%20%20%20%20%20%20%20.%24%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3A%20%20%40%23%40-%0A%20%20%20%20%20%2C%3B%20%20.M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3B%20%20H%23%23%23%3B%0A%20%20%20%3B%40%23%3A%20%20%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%20%20%2C%23%23%23%23%23%3A%0A%20-M%23%23%23.%20%20M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40.%20%20%3B%23%23%23%23%23%23H%0A%20M%23%23%23%23-%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%20%20%20%3D%40%23%23%23%23%23%23%23X%0A%20H%23%23%23%23%24%20%20%20-M%23%23%23%23%23%23%23%23%23%23%23%2B%20%20%20%3A%23%23%23%23%23%23%23%23%23M%2C%0A%20%20%2F%23%23%23%23X-%20%20%20%3D%23%23%23%23%23%23%23%23%25%20%20%20%3AM%23%23%23%23%23%23%23%23%40%2F.%0A%20%20%20%20%2C%3B%25H%40X%3B%20%20%20.%24%23%23%23X%20%20%20%3A%23%23MM%40%25%2B%3B%3A-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20..%0A%20%20-%2F%3B%3A-%2C.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2C-%3D%3D%2BM%23%23%23%23%23%23%23%23H%0A%20-%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40HX%25%25%2B%25%25%24%25%25%25%2B%3A%2C%2C%0A%20%20%20%20.-%2FH%25%25%25%2B%25%25%24H%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%40%2B%3D%3A%2F%2B%3A%0A%2FXHX%25%3A%23%23%23%23%23MH%25%3D%20%20%20%20%2C---%3A%3B%3B%3B%3B%2F%26%26XHM%2C%3A%23%23%23%24%0A%24%40%23MX%20%25%2B%3B-%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.", - "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AX-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AX%23%23%23%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%40%23%23%23%23%40%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3BM%23%23%23%23%23%23X%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%40%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%24%23%23%23%23%23%23%23%23%23%23%40%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DM%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.H%23%23%23%23%23%23%23%23%23%23%23%23%24%3D.%0A%20%20%20%20%20%20%20%20%20%2C%2F%3A%20%20%20%20%20%20%20%20%20%2CM%23%23%23%23%23%23%23%23%23%23M%3B.%0A%20%20%20%20%20%20-%2B%40%23%23%23%3B%20%20%20%20%20%20%20%3D%23%23%23%23%23%23%23%23%23%23M%3B%0A%20%20%20%3D%25M%23%23%23%23%23%23%23%3B%20%20%20%20%20%3A%23%23%23%23%23%23%23%23%23M%2F%0A-%24M%23%23%23%23%23%23%23%23%23%23%23%3B%20%20%20%3A%23%23%23%23%23%23%23%23%2F%0A%20%2C%3BX%23%23%23%23%23%23%23%23%23%23%23%3B%20%3D%23%23%23%23%23%23%23%24.%0A%20%20%20%20%20%3BH%23%23%23%23%23%23%23%23%23%2B%23%23%23%23%23%23M%3D%0A%20%20%20%20%20%20%20%2C%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%2FM%23%23%23%23%23%23%23%23%40-%0A%20%20%20%20%20%20%20%20%20%20%20%20%3BM%23%23%23%23%23%25%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%3A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%24M-", - "%20%20%20%20%20%20%20%20%20%20%20%20.%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%2FM%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20H%23%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%23%23%23H-%20%20%20%20%20%20%20%20%20%20-%40%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%24.%20%20-%3B%20%20.%25%23X%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20M%23%23%23%23%23%2B%3B%23H%20%3AM%23M.%0A..%20%20%20%20%20%20%20%20%20%20.%2B%2F%3B%25%23%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20-%2F%25H%25%2B%3B-%2C%20%20%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20.%3A%24M%23%23%23MH%24%25%2B%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%2C--%3D%3B-%0A%20%20%20%20%20%20%20%20-%2FH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%2B%3D.%0A%20%20%20%20%20%20%20%20%20%20%20.%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23X.%0A%20%20%20%20%20%20%20%20%20%3D%25M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%3B.%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%3B%3B%2F%25%25%3B%2C%0A%20%20%20%20%20%20%20%20%20-%25%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%3BH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%3D%0A%20%20%20%20%2C%25%23%23%23%23%23MH%24%25%3B%2B%23%23%23%23%23M%23%23%23-%2F%40%23%23%23%23%25%0A%20%20%3A%24H%25%2B%3B%3D-%20%20%20%20%20%20-%23%23%23%23X.%2CH%23%20%20%20-%2BM%23%23%40-%0A%20.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%23%23%23%3B%20%20%20%20%3B%20%20%20%20%20%20%3D%24%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%23H%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AXH%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3B-", - "%20%20%20%20%20%20%20%20%20%20%20.-%3B%2B%24XHHHHHHX%24%2B%3B-.%0A%20%20%20%20%20%20%20%20%2C%3BX%40%40X%25%2F%3B%3D----%3D%3A%2F%25X%40%40X%2F%2C%0A%20%20%20%20%20%20%3D%24%40%40%25%3D.%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3D%2BH%40X%3A%0A%20%20%20%20-XMX%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DXMX%3D%0A%20%20%20%2F%40%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DH%40%2B%0A%20%20%25%40X%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%24%40%24%0A%20%2B%40X.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%24%40%25%0A-%40%40%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%40%40%3D%0A%25%40%25%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%40%24%0AH%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3A%40H%0AH%40%3A%20%20%20%20%20%20%20%20%20%3AHHHHHHHHHHHHHHHHHHX%2C%20%20%20%20%3D%40H%0A%25%40%25%20%20%20%20%20%20%20%20%20%3B%40M%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40H-%20%20%20%2B%40%24%0A%3D%40%40%2C%20%20%20%20%20%20%20%20%3A%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%3D%20.%40%40%3A%0A%20%2B%40X%20%20%20%20%20%20%20%20%3A%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%40%40%3A%25%40%25%0A%20%20%24%40%24%2C%20%20%20%20%20%20%3B%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%40%40%24.%0A%20%20%20%2B%40%40HHHHHHH%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%2B%0A%20%20%20%20%3DX%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40X%3D%0A%20%20%20%20%20%20%3A%24%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%24%3A%0A%20%20%20%20%20%20%20%20%2C%3B%24%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40X%2F-%0A%20%20%20%20%20%20%20%20%20%20%20.-%3B%2B%24XXHHHHHX%24%2B%3B-.", - "%20%20%20%20%20%20%20%20%20%20%20%20%2C%3A%2F%2B%2F-%0A%20%20%20%20%20%20%20%20%20%20%20%20%2FM%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C-%3D%3B%2F%2F%3B-%0A%20%20%20%20%20%20%20.%3A%2F%3D%20%3BMH%2F%2C%20%20%20%20%2C%3D%2F%2B%25%24XH%40MM%23%40%3A%0A%20%20%20%20%20%20-%24%23%23%40%2B%24%23%23%23%40H%40MMM%23%23%23%23%23%23%23H%3A.%20%20%20%20-%2FH%23%0A%20.%2CH%40H%40%20X%23%23%23%23%23%23%40%20-H%23%23%23%23%23%40%2B-%20%20%20%20%20-%2BH%23%23%23%40X%0A%20%20.%2C%40%23%23H%3B%20%20%20%20%20%20%2BXM%23%23M%2F%2C%20%20%20%20%20%3D%25%40%23%23%23%40X%3B-%0AX%25-%20%20%3AM%23%23%23%23%23%23%23%23%23%23%24.%20%20%20%20.%3A%25M%23%23%23%40%25%3A%0AM%23%23H%2C%20%20%20%2BH%40%40%40%24%2F-.%20%20%2C%3B%24M%23%23%23%40%25%2C%20%20%20%20%20%20%20%20%20%20-%0AM%23%23%23%23M%3D%2C%2C---%2C.-%25%25H%23%23%23%23M%24%3A%20%20%20%20%20%20%20%20%20%20%2C%2B%40%23%23%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%2F.%20%20%20%20%20%20%20%20%20%3A%25H%23%23%40%24-%0AM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%2C%20%20%20%20%20%20%20%20%20%3BHM%23%23M%24%3D%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23.%20%20%20%20.%3D%24M%23%23M%24%3D%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H..%3BXM%23%23M%24%3D%20%20%20%20%20%20%20%20%20%20.%3A%2B%0AM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%25%3D%20%20%20%20%20%20%20%20%20%20%20%3D%2B%40MH%25%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%2F.%20%20%20%20%20%20%20%20%20%3D%2BH%23X%25%3D%0A%3D%2BM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%2C%20%20%20%20%20%20%2C%2FX%23H%2B%3A%2C%0A%20%20.%3BXM%23%23%23%23%23%23%23%23%23%23%23H%3D%20%20%20%2C%2FX%23H%2B%3A%3B%0A%20%20%20%20%20.%3D%2BHM%23%23%23%23%23%23%23M%2B%2F%2BHM%40%2B%3D.%0A%20%20%20%20%20%20%20%20%20%2C%3A%2F%25XM%23%23%23%23H%2F.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C.%3A%3D-.", - "%20%20%20%20%20%20%20%23%2B%20%40%20%20%20%20%20%20%23%20%23%20%20%20%20%20%20%20%20%20%20%20%20%20%20M%23%40%0A%20.%20%20%20%20.X%20%20X.%25%23%23%40%3B%23%20%23%20%20%20%2B%40%23%23%23%23%23%23%23X.%20%40H%25%0A%20%20%20%2C%3D%3D.%20%20%20%2C%23%23%23%23%23%23M%2B%20%20-%23%23%23%23%23%25M%23%23%23%23M-%20%20%20%20%23%0A%20%20%3AH%23%23M%25%3A%3D%23%23%2B%20.M%23%23M%2C%3B%23%23%23%23%23%2F%2B%23%23%23%23%23%23%23%25%20%2CM%23%0A%20.M%23%23%23%23%23%23%23%23%3D%20%20%3D%40%23%40.%3D%23%23%23%23%23M%3DM%23%23%23%23%23%23%23%3D%20%20X%23%0A%20%3A%40%40MMM%23%23M.%20%20-%23%23M.%2C%23%23%23%23%23%23%23M%23%23%23%23%23%23%23.%20%3D%20%20M%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%40%23%23..%23%23%23%3A.%20%20%20%20.H%23%23%23%23.%20%40%40%20X%2C%0A%20%20%20%23%23%23%23%23%23%23%23%23%23%23%23%3A%20%23%23%23%2C%2F%23%23%23%23%3B%20%20%2F%23%23%3D%20%40%23.%20M%0A%20%20%20%20%20%20%20%20%20%20%20%2CM%23%23%20%3B%23%23%2C%40%23M%3B%2FM%23M%20%20%40%23%20X%23%25%20X%23%0A.%25%3D%20%20%20%23%23%23%23%23%23M%23%23%20%23%23.M%23%3A%20%20%20.%2F%23M%20%2CM%20%23M%20%2C%23%24%0A%23%23%2F%20%20%20%20%20%20%20%20%20%24%23%23%20%23%2B%3B%23%3A%20%23%23%23%23%20%3B%23%2F%20M%20M-%20%40%23%20%3A%0A%23%2B%20%23M%40MM%23%23%23M-%3BM%20%23%3A%24%23-%23%23%24H%23%20.%23X%20%40%20%2B%20%24%23.%20%23%0A%20%20%20%20%20%20%23%23%23%23%23%23%2F.%3A%20%23%25%3D%23%20M%23%3AMM.%2F%23.-%23%20%20%40%23%3A%20H%23%0A%2B%2C.%3D%20%20%20%40%23%23%23%3A%20%2F%40%20%25%23%2C%40%20%20%23%23%40X%20%23%2C-%23%40.%23%23%25%20.%40%23%0A%23%23%23%23%23%2B%3B%2F%23%23%2F%20%40%23%23%20%20%40%23%2C%2B%20%20%20%20%20%20%20%2F%23M%20%20%20%20.%20X%2C%0A%20%20%20%3B%23%23%23M%23%40%20M%23%23%23H%20.%23M-%20%20%20%20%20%2C%23%23M%20%20%3B%40%40%3B%20%23%23%23%0A%20%20%20.M%23M%23%23H%20%3B%23%23%23%23X%20%2C%40%23%23%23%23%23%23%23M%2F%20-M%23%23%23%24%20%20-H%0A%20%20%20%20.M%23%23%23%25%20%20X%23%23%23%23H%20%20.%40%40MM%40%3B%20%20%3B%40%23M%40%0A%20%20%20%20%20%20H%23M%20%20%20%20%2F%40%23%23%23%23%2F%20%20%20%20%20%20%2C%2B%2B.%20%20%2F%20%3D%3D-%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%3D%2F%3A%2C%20.%2BX%40MMH%40%23H%20%20%23%23%23%23%23%24%3D" -]; - -class StillAlivePlayer { - constructor(element) { - this.channel = new BroadcastChannel(window.location.hash); - this.channel.addEventListener("message",event => this.message(event)); - - this.player = element; - - this.channel.postMessage(["WINDOW_READY",window.location.hash]); - } - - // Clear the screen from elements - blank() { - while(this.player.firstChild) { - this.player.removeChild(this.player.lastChild); - } - } - - // Create a new paragraph and make it the target for textFeed calls - lineFeed() { - this.target = document.createElement("p"); - this.player.appendChild(this.target); - } - - // Append text to the current target element - textFeed(text) { - this.target.innerText = this.target.innerText + text; - } - - // Decode and draw art from artset by key - drawArt(key) { - this.blank(); - this.target = document.createElement("pre"); - this.target.innerText = window.decodeURIComponent(artset[key]); - this.player.appendChild(this.target); - } - - message(event) { - const type = event.data[0]; - const data = event.data[1]; - console.log(event); - - switch(type) { - case "LINE_FEED": this.lineFeed(); break; - case "TEXT_FEED": this.textFeed(data); break; - case "DRAW_ART": this.drawArt(data); break; - case "BLANK": this.blank(); break; - } - } -} +import { default as Player } from "./modules/StillAlivePlayer.mjs"; const element = document.getElementById("player"); -const player = new StillAlivePlayer(element); \ No newline at end of file +const player = new Player(element); \ No newline at end of file diff --git a/assets/js/script.mjs b/assets/js/script.mjs index 554fb52..2e112be 100755 --- a/assets/js/script.mjs +++ b/assets/js/script.mjs @@ -1,16 +1,21 @@ import { default as Player } from "./modules/PlayerManager.mjs"; const play = document.getElementById("play"); -const message = document.getElementById("message"); try { if(typeof BroadcastChannel !== "function") { throw new Error("BroadcastChannel API is not supported"); } - const player = new Player(); - play.addEventListener("click",() => player.play()); + + const mediaElement = document.getElementById("still-alive"); + + const player = new Player(mediaElement); + play.addEventListener("click",() => player.init()); } catch(error) { + const message = document.getElementById("message"); + play.classList.add("unsupported"); play.innerText = "Your browser can not play this demo"; + message.innerText = error; } \ No newline at end of file diff --git a/assets/media/still-alive.webm b/assets/media/still-alive.webm new file mode 100644 index 0000000..58cf039 Binary files /dev/null and b/assets/media/still-alive.webm differ diff --git a/index.html b/index.html index fa3ddba..ec8dc93 100755 --- a/index.html +++ b/index.html @@ -15,6 +15,7 @@ + \ No newline at end of file diff --git a/monkeydo.json b/monkeydo.json deleted file mode 100644 index 9b9edb7..0000000 --- a/monkeydo.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "tasks": [] -} \ No newline at end of file diff --git a/monkeydo_credits.json b/monkeydo_credits.json new file mode 100644 index 0000000..8ea6f0a --- /dev/null +++ b/monkeydo_credits.json @@ -0,0 +1 @@ +{"tasks": [[0, "lineFeed", "#credits"], [70, "textFeed", ">", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "L", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", " ", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", " ", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "Y", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "m", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "z", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "Q", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "m", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "x", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "x", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "j", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "I", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "w", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "U", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "x", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", ".", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Z", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Z", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "a", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "'", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "'", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "E", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "\\", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "A", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "L", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Q", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "E", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Y", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "U", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "G", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "S", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "Y", "#credits"], [70, "textFeed", "!", "#credits"], [70, "textFeed", "!", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"]]} \ No newline at end of file diff --git a/monkeydo_lyrics.json b/monkeydo_lyrics.json new file mode 100644 index 0000000..b5fa1d4 --- /dev/null +++ b/monkeydo_lyrics.json @@ -0,0 +1 @@ +{"tasks": [[0, "lineFeed", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "M", "#lyrics"], [70, "textFeed", "-", "#lyrics"], [70, "textFeed", "2", "#lyrics"], [70, "textFeed", "9", "#lyrics"], [70, "textFeed", "8", "#lyrics"], [70, "textFeed", "2", "#lyrics"], [70, "textFeed", "7", "#lyrics"], [70, "textFeed", "2", "#lyrics"], [70, "textFeed", "8", "#lyrics"], [70, "textFeed", "1", "#lyrics"], [70, "textFeed", "-", "#lyrics"], [70, "textFeed", "1", "#lyrics"], [70, "textFeed", "2", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "R", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "playCredits"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "U", "#lyrics"], [70, "textFeed", "G", "#lyrics"], [70, "textFeed", "E", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", "U", "#lyrics"], [70, "textFeed", "C", "#lyrics"], [70, "textFeed", "C", "#lyrics"], [70, "textFeed", "E", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 0], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "W", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 1], [70, "textFeed", "E", "#lyrics"], [70, "textFeed", "x", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 0], [70, "textFeed", "B", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "Y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "j", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 2], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 0], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "blank", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "R", "#lyrics"], [70, "textFeed", "M", "#lyrics"], [70, "textFeed", "-", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "1", "#lyrics"], [70, "textFeed", "-", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "D", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "<", "#lyrics"], [70, "textFeed", "<", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "j", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "N", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ">", "#lyrics"], [70, "textFeed", ">", "#lyrics"], [70, "textFeed", ",", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "E", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [0, "drawArt", 3], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 4], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [0, "drawArt", 5], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 6], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "!", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "N", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "W", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 7], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "G", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "D", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 2], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 0], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "blank", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "R", "#lyrics"], [70, "textFeed", "M", "#lyrics"], [70, "textFeed", "-", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "5", "#lyrics"], [70, "textFeed", "1", "#lyrics"], [70, "textFeed", "-", "#lyrics"], [70, "textFeed", "6", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "G", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "M", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "M", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [0, "drawArt", 7], [70, "textFeed", "B", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "M", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "W", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "J", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "K", "#lyrics"], [70, "textFeed", "E", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "C", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "N", "#lyrics"], [70, "textFeed", "C", "#lyrics"], [70, "textFeed", "E", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", ",", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [0, "drawArt", 8], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 9], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 1], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 0], [70, "textFeed", "W", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ",", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "k", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "G", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "D", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 2], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "x", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 6], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "drawArt", 0], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "p", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", ".", "#lyrics"], [70, "lineFeed", "#lyrics"], [0, "blank", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "f", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "c", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "m", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "N", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "U", "#lyrics"], [70, "textFeed", "G", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "W", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "g", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "F", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "N", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "O", "#lyrics"], [70, "textFeed", "U", "#lyrics"], [70, "textFeed", "G", "#lyrics"], [70, "textFeed", "H", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "P", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", ":", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "h", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "n", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "y", "#lyrics"], [70, "textFeed", "o", "#lyrics"], [70, "textFeed", "u", "#lyrics"], [70, "textFeed", "'", "#lyrics"], [70, "textFeed", "r", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "d", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "w", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "b", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "s", "#lyrics"], [70, "textFeed", "t", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "a", "#lyrics"], [70, "textFeed", "l", "#lyrics"], [70, "textFeed", "i", "#lyrics"], [70, "textFeed", "v", "#lyrics"], [70, "textFeed", "e", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "S", "#lyrics"], [70, "textFeed", "T", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", " ", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", "I", "#lyrics"], [70, "textFeed", "V", "#lyrics"], [70, "textFeed", "E", "#lyrics"], [70, "lineFeed", "#lyrics"], [70, "textFeed", "[", "#lyrics"], [70, "textFeed", "B", "#lyrics"], [70, "textFeed", "L", "#lyrics"], [70, "textFeed", "A", "#lyrics"], [70, "textFeed", "N", "#lyrics"], [70, "textFeed", "K", "#lyrics"], [70, "textFeed", "]", "#lyrics"], [70, "lineFeed", "#lyrics"]]} \ No newline at end of file diff --git a/player.html b/player.html index 05f2bd7..1a61a3d 100755 --- a/player.html +++ b/player.html @@ -6,6 +6,7 @@ +