0; });\n this.activeSounds.forEach( function(snd) { \n snd.mixSampleCountIntoBufferStartingAt(sampleCount, buffer, 0, this.sampRate);\n }.bind(this));\n // if (this.reverbSound) this.reverbSound.mixSamplesToBuffer(sampleCount, buffer, 1); \n return buffer;\n}","funcProperties":{"__isSmartRef__":true,"id":1062},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1061":{"this":{"__isSmartRef__":true,"id":1}},"1062":{"timestamp":{"__isSmartRef__":true,"id":1063},"user":"undefined","tags":["synthesizer"]},"1063":{"isSerializedDate":true,"string":"Sun Mar 11 2012 13:52:41 GMT-0700 (PDT)"},"1064":{"varMapping":{"__isSmartRef__":true,"id":1065},"source":"function createAudioHandle() {\n if (!Global.XAudioServer) {\n console.warn('XAudioServer not loaded');\n return; }\n // Set up the buffers and bind audioHandle\n var buffSize = this.sampRate * this.nChans * 0.2; // 0.2 sec worth of samples\n var buffer = this.clearSoundBuffer(buffSize); // creates a sound buffer of all zero\n this.audioHandle = new XAudioServer(this.nChans, this.sampRate,\n buffSize/2, buffSize,\n function (sampleCount) { return this.audioUnderRun(sampleCount); }.bind(this), 0);\n}","funcProperties":{"__isSmartRef__":true,"id":1066},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1065":{"this":{"__isSmartRef__":true,"id":1}},"1066":{"timestamp":{"__isSmartRef__":true,"id":1067},"user":"undefined","tags":["setup"]},"1067":{"isSerializedDate":true,"string":"Tue Mar 13 2012 23:15:20 GMT-0700 (PDT)"},"1068":{"varMapping":{"__isSmartRef__":true,"id":1069},"source":"function clearSoundBuffer(sizeUsed) {\n // Note sizeUsed must be 2 * number of stereo samples\n var buffer = new Array(sizeUsed);\n for (var i=0; i 0 should do\n },\n\ninitialize: function($super) {\n this.sounds = [];\n this.soundsIndex = 0;\n $super();\n },\ndoControl: function($super, msPast) {\n $super(msPast);\n if (this.soundsIndex >= 0) this.sounds[this.soundsIndex].doControl(msPast);\n },\n\n\n\n\n});\n","sourceString":"AbstractSound.subclass(\"SequentialSound\", {\naboutMe: function() { \n // SequentialSound carries a list of sounds to be played in sequence.\n // Typically used to encode a melody.\n // Adapted from John Maloney's Squeak code by Dan Ingalls\n },\n\n\ncopy: function($super) { \n var copy = $super();\n copy.sounds = this.sounds.map(function(snd) { return snd.copy(); });\n return copy;\n },\nreset: function($super) {\n // Reset all sounds, and move currentIndex back to the beginning\n $super(); \n this.sounds.forEach(function(snd) {snd.reset(); });\n this.soundsIndex = 0;\n return this;\n },\nadd: function(aSound) {\n // Add a new note\n this.sounds.push(aSound);\n return this;\n },\n\nmixSamplesToBuffer: function(n, buffer, startIndex, leftVol, rightVol) {\n if (this.player == null) this.player = this.findPlayer(); // cache it here for whole melody\n if (this.soundsIndex < 0) return; // indicator of completion\n var finalIndex = (startIndex + n) - 1;\n var i = startIndex;\n while (i <= finalIndex) {\n var snd = this.sounds[this.soundsIndex];\n while (snd.samplesRemaining() <= 0) {\n if (this.player && this.player.noteSoundOnOff)\n this.player.noteSoundOnOff(snd, false);\n // find next unplayed sound\n if (this.soundsIndex < this.sounds.length-1) {\n this.soundsIndex++;\n snd = this.sounds[this.soundsIndex];\n if (this.player && this.player.noteSoundOnOff)\n this.player.noteSoundOnOff(snd, true, this.noteColor);\n } else {\n this.soundsIndex = -1;\n return; // no more sounds\n }};\n if (this.soundsIndex == 0 && this.player && this.player.noteSoundOnOff)\n this.player.noteSoundOnOff(snd, true, this.noteColor);\n var count = (finalIndex - i) + 1;\n var remaining = snd.samplesRemaining();\n\tif (remaining < count) count = remaining;\n snd.mixSamplesToBuffer(count, buffer, i, leftVol, rightVol);\n i += count;\n };\n},\nsamplesRemaining: function() {\n if (this.soundsIndex < 0) return 0;\n return 999999; // really anything > 0 should do\n },\n\ninitialize: function($super) {\n this.sounds = [];\n this.soundsIndex = 0;\n $super();\n },\ndoControl: function($super, msPast) {\n $super(msPast);\n if (this.soundsIndex >= 0) this.sounds[this.soundsIndex].doControl(msPast);\n },\n\n\n\n\n});\n","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"_rootNode":{"__isSmartRef__":true,"id":1578},"Pane1Selection":{"__isSmartRef__":true,"id":1590},"pane1Selection":{"__isSmartRef__":true,"id":1590},"Pane2Selection":{"__isSmartRef__":true,"id":1802},"pane2Selection":{"__isSmartRef__":true,"id":1802},"Pane3Selection":{"__isSmartRef__":true,"id":1847},"pane3Selection":{"__isSmartRef__":true,"id":1847},"Pane4Selection":null,"pane4Selection":null,"Pane4Content":[{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1881},{"__isSmartRef__":true,"id":1883},{"__isSmartRef__":true,"id":1885},{"__isSmartRef__":true,"id":1887},{"__isSmartRef__":true,"id":1889},{"__isSmartRef__":true,"id":1891},{"__isSmartRef__":true,"id":1893}],"Pane3Content":[{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1848}],"Pane2Content":[{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1801},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1809},{"__isSmartRef__":true,"id":1811},{"__isSmartRef__":true,"id":1813},{"__isSmartRef__":true,"id":1815}],"Pane1Content":[{"__isSmartRef__":true,"id":1575},{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748},{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1754}],"Pane1Menu":[["Add to world requirements"],["remove"],["reparse"],["-------"],["open in text editor"],["show versions"],["diff versions"],["get module part"]],"Pane2Menu":[["references"],["add sibling below"],["remove"],["show browse ref"],["-------"],["view hierarchy"],["add class"],["add object extension"],["add layer"]],"Pane3Menu":[["add sibling below"],["remove"],["show browse ref"],["-------"],["view hierarchy"]],"currentModuleName":"users.Dan.SoundClasses","Pane4Menu":[["-------"],["view hierarchy"],["add method"]],"_statusMorph":{"__isSmartRef__":true,"id":2503},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"1467":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1468},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1468":{"submorphs":[{"__isSmartRef__":true,"id":1469}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1474},"eventHandler":{"__isSmartRef__":true,"id":1475},"_ClipMode":"visible","derivationIds":[],"id":"D32BD747-15F9-440C-9B70-39AE9ADD16ED","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1469},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1467},"attributeConnections":[{"__isSmartRef__":true,"id":1476},{"__isSmartRef__":true,"id":1478}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1480},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,220.0)"},"1469":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1470},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1471}],"eventHandler":{"__isSmartRef__":true,"id":1473},"_ClipMode":"hidden","derivationIds":[],"id":"15D96A96-F84F-426C-9806-5F274DCBEC63","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1468},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1470":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1471":{"style":{"__isSmartRef__":true,"id":1472},"chunkOwner":{"__isSmartRef__":true,"id":1469},"_id":"_28","storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1472":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1473":{"morph":{"__isSmartRef__":true,"id":1469},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1474":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1475":{"morph":{"__isSmartRef__":true,"id":1468},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1476":{"sourceObj":{"__isSmartRef__":true,"id":1468},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1467},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1477},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1477":{"source":{"__isSmartRef__":true,"id":1468},"target":{"__isSmartRef__":true,"id":1467}},"1478":{"sourceObj":{"__isSmartRef__":true,"id":1468},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1468},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1479},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1479":{"source":{"__isSmartRef__":true,"id":1468},"target":{"__isSmartRef__":true,"id":1468}},"1480":{"scaleVertical":true,"scaleHorizontal":true},"1481":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1482},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1482":{"submorphs":[{"__isSmartRef__":true,"id":1483}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1488},"eventHandler":{"__isSmartRef__":true,"id":1489},"_ClipMode":"visible","derivationIds":[],"id":"91E2A622-A134-4C0B-AA28-E06BDA3A542A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1483},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1481},"attributeConnections":[{"__isSmartRef__":true,"id":1490},{"__isSmartRef__":true,"id":1492}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1494},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(117.1,220.0)"},"1483":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1484},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1485}],"eventHandler":{"__isSmartRef__":true,"id":1487},"_ClipMode":"hidden","derivationIds":[],"id":"19D627E1-BC14-44C7-B82A-665ED44DEC20","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1482},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1484":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1485":{"style":{"__isSmartRef__":true,"id":1486},"chunkOwner":{"__isSmartRef__":true,"id":1483},"_id":"_31","storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1486":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1487":{"morph":{"__isSmartRef__":true,"id":1483},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1488":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1489":{"morph":{"__isSmartRef__":true,"id":1482},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1490":{"sourceObj":{"__isSmartRef__":true,"id":1482},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1481},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1491},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1491":{"source":{"__isSmartRef__":true,"id":1482},"target":{"__isSmartRef__":true,"id":1481}},"1492":{"sourceObj":{"__isSmartRef__":true,"id":1482},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1482},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1493},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1493":{"source":{"__isSmartRef__":true,"id":1482},"target":{"__isSmartRef__":true,"id":1482}},"1494":{"scaleVertical":true,"scaleHorizontal":true},"1495":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1496},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1496":{"submorphs":[{"__isSmartRef__":true,"id":1497}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1502},"eventHandler":{"__isSmartRef__":true,"id":1503},"_ClipMode":"visible","derivationIds":[],"id":"D1A22E45-C62C-4BBC-829C-3FCD64E4EC5E","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1497},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1495},"attributeConnections":[{"__isSmartRef__":true,"id":1504},{"__isSmartRef__":true,"id":1506}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1508},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(234.3,220.0)"},"1497":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1498},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1499}],"eventHandler":{"__isSmartRef__":true,"id":1501},"_ClipMode":"hidden","derivationIds":[],"id":"56582D21-58FB-479A-BF46-F744E6E6D2CC","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1496},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1498":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1499":{"style":{"__isSmartRef__":true,"id":1500},"chunkOwner":{"__isSmartRef__":true,"id":1497},"_id":"_34","storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1500":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1501":{"morph":{"__isSmartRef__":true,"id":1497},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1502":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1503":{"morph":{"__isSmartRef__":true,"id":1496},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1504":{"sourceObj":{"__isSmartRef__":true,"id":1496},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1495},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1505},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1505":{"source":{"__isSmartRef__":true,"id":1496},"target":{"__isSmartRef__":true,"id":1495}},"1506":{"sourceObj":{"__isSmartRef__":true,"id":1496},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1496},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1507},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1507":{"source":{"__isSmartRef__":true,"id":1496},"target":{"__isSmartRef__":true,"id":1496}},"1508":{"scaleVertical":true,"scaleHorizontal":true},"1509":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1510},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1510":{"submorphs":[{"__isSmartRef__":true,"id":1511}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1516},"eventHandler":{"__isSmartRef__":true,"id":1517},"_ClipMode":"visible","derivationIds":[],"id":"5ED52F8A-D5E1-4A64-B473-F7A0B8703844","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1511},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1509},"attributeConnections":[{"__isSmartRef__":true,"id":1518},{"__isSmartRef__":true,"id":1520}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1522},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(351.4,220.0)"},"1511":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1512},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1513}],"eventHandler":{"__isSmartRef__":true,"id":1515},"_ClipMode":"hidden","derivationIds":[],"id":"412EA02E-15AE-40AD-95F8-F17100F92B31","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1510},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1512":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1513":{"style":{"__isSmartRef__":true,"id":1514},"chunkOwner":{"__isSmartRef__":true,"id":1511},"_id":"_37","storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1514":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1515":{"morph":{"__isSmartRef__":true,"id":1511},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1516":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1517":{"morph":{"__isSmartRef__":true,"id":1510},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1518":{"sourceObj":{"__isSmartRef__":true,"id":1510},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1509},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1519},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1519":{"source":{"__isSmartRef__":true,"id":1510},"target":{"__isSmartRef__":true,"id":1509}},"1520":{"sourceObj":{"__isSmartRef__":true,"id":1510},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1510},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1521},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1521":{"source":{"__isSmartRef__":true,"id":1510},"target":{"__isSmartRef__":true,"id":1510}},"1522":{"scaleVertical":true,"scaleHorizontal":true},"1523":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1524},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1524":{"submorphs":[{"__isSmartRef__":true,"id":1525}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1530},"eventHandler":{"__isSmartRef__":true,"id":1531},"_ClipMode":"visible","derivationIds":[],"id":"107B7A2D-F90C-4C95-8B6B-566B23F42F6C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1525},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1523},"attributeConnections":[{"__isSmartRef__":true,"id":1532},{"__isSmartRef__":true,"id":1534}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1536},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(468.6,220.0)"},"1525":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1526},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1527}],"eventHandler":{"__isSmartRef__":true,"id":1529},"_ClipMode":"hidden","derivationIds":[],"id":"212EBEB5-9700-4923-BACB-2768320CD6EF","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1524},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1526":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1527":{"style":{"__isSmartRef__":true,"id":1528},"chunkOwner":{"__isSmartRef__":true,"id":1525},"_id":"_40","storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1528":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1529":{"morph":{"__isSmartRef__":true,"id":1525},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1530":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1531":{"morph":{"__isSmartRef__":true,"id":1524},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1532":{"sourceObj":{"__isSmartRef__":true,"id":1524},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1523},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1533},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1533":{"source":{"__isSmartRef__":true,"id":1524},"target":{"__isSmartRef__":true,"id":1523}},"1534":{"sourceObj":{"__isSmartRef__":true,"id":1524},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1524},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1535},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1535":{"source":{"__isSmartRef__":true,"id":1524},"target":{"__isSmartRef__":true,"id":1524}},"1536":{"scaleVertical":true,"scaleHorizontal":true},"1537":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1538},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1538":{"submorphs":[{"__isSmartRef__":true,"id":1539}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1544},"eventHandler":{"__isSmartRef__":true,"id":1545},"_ClipMode":"visible","derivationIds":[],"id":"77242874-BF26-4841-8A2F-52E3F16E50CD","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1539},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1537},"attributeConnections":[{"__isSmartRef__":true,"id":1546},{"__isSmartRef__":true,"id":1548}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1550},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(585.7,220.0)"},"1539":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1540},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1541}],"eventHandler":{"__isSmartRef__":true,"id":1543},"_ClipMode":"hidden","derivationIds":[],"id":"931CEF43-7402-431C-804B-6040F5CD268D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1538},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1540":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1541":{"style":{"__isSmartRef__":true,"id":1542},"chunkOwner":{"__isSmartRef__":true,"id":1539},"_id":"_43","storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1542":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1543":{"morph":{"__isSmartRef__":true,"id":1539},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1544":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1545":{"morph":{"__isSmartRef__":true,"id":1538},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1546":{"sourceObj":{"__isSmartRef__":true,"id":1538},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1537},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1547},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1547":{"source":{"__isSmartRef__":true,"id":1538},"target":{"__isSmartRef__":true,"id":1537}},"1548":{"sourceObj":{"__isSmartRef__":true,"id":1538},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1538},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1549},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1549":{"source":{"__isSmartRef__":true,"id":1538},"target":{"__isSmartRef__":true,"id":1538}},"1550":{"scaleVertical":true,"scaleHorizontal":true},"1551":{"browser":{"__isSmartRef__":true,"id":1466},"button":{"__isSmartRef__":true,"id":1552},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"1552":{"submorphs":[{"__isSmartRef__":true,"id":1553}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1558},"eventHandler":{"__isSmartRef__":true,"id":1559},"_ClipMode":"visible","derivationIds":[],"id":"C73B3D27-CA86-4266-ABFF-EBA69F4EA416","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":1553},"_PreviousBorderWidth":1,"command":{"__isSmartRef__":true,"id":1551},"attributeConnections":[{"__isSmartRef__":true,"id":1560},{"__isSmartRef__":true,"id":1562}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1564},"isPressed":false,"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(702.9,220.0)"},"1553":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1554},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1555}],"eventHandler":{"__isSmartRef__":true,"id":1557},"_ClipMode":"hidden","derivationIds":[],"id":"20C544A8-D57C-4476-AD5C-806BBAFF31ED","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":9,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1552},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"1554":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,4,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"1555":{"style":{"__isSmartRef__":true,"id":1556},"chunkOwner":{"__isSmartRef__":true,"id":1553},"_id":"_46","storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1556":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1557":{"morph":{"__isSmartRef__":true,"id":1553},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1558":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(117.1,22.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"1559":{"morph":{"__isSmartRef__":true,"id":1552},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1560":{"sourceObj":{"__isSmartRef__":true,"id":1552},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1551},"targetMethodName":"trigger","varMapping":{"__isSmartRef__":true,"id":1561},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1561":{"source":{"__isSmartRef__":true,"id":1552},"target":{"__isSmartRef__":true,"id":1551}},"1562":{"sourceObj":{"__isSmartRef__":true,"id":1552},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1552},"targetMethodName":"setLabel","varMapping":{"__isSmartRef__":true,"id":1563},"converterString":"function () { return this.getSourceObj().command.asString() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1563":{"source":{"__isSmartRef__":true,"id":1552},"target":{"__isSmartRef__":true,"id":1552}},"1564":{"scaleVertical":true,"scaleHorizontal":true},"1565":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1566":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1567":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1568":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1569":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1570":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"1571":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1572":{"sourceObj":{"__isSmartRef__":true,"id":1466},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":1573},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1781},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1573":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1574},"itemList":[{"__isSmartRef__":true,"id":1575},{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748},{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1754}],"eventHandler":{"__isSmartRef__":true,"id":1755},"derivationIds":[],"id":"14753F1C-A3F3-4E9B-ADBA-32B8D86E35F6","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1756},"selectedLineNo":8,"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1757},"attributeConnections":[{"__isSmartRef__":true,"id":1758},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1764}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1766},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,16.5)"},"1574":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1575":{"isListItem":true,"string":"PM/","value":{"__isSmartRef__":true,"id":1576}},"1576":{"target":{"__isSmartRef__":true,"id":1577},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"localName":"PM/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1577":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/PM/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1578":{"target":{"__isSmartRef__":true,"id":1579},"browser":{"__isSmartRef__":true,"id":1466},"parent":null,"allFiles":["users/Dan/SoundClasses.js","users/Dan/swfobject.js","users/Dan/resampler.js","users/Dan/XAudioServer.js","users/Dan/config.js","users/Dan/Presentation.js","users/Dan/AudioExperiment.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":1580},{"__isSmartRef__":true,"id":1577},{"__isSmartRef__":true,"id":1581}],"parentNamespacePath":{"__isSmartRef__":true,"id":1582},"_childNodes":[{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1583},{"__isSmartRef__":true,"id":1584},{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1586},{"__isSmartRef__":true,"id":1587},{"__isSmartRef__":true,"id":1588},{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1590},{"__isSmartRef__":true,"id":1740},{"__isSmartRef__":true,"id":1741},{"__isSmartRef__":true,"id":1742}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1579":{"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide.SourceDatabase"},"1580":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/media/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1581":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/Tests/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1582":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/Dan/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"1583":{"target":{"__isSmartRef__":true,"id":1581},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"localName":"Tests/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1584":{"target":{"__isSmartRef__":true,"id":1580},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"localName":"media/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1585":{"target":{"__isSmartRef__":true,"id":1582},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1586":{"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/AudioExperiment.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1587":{"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/config.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1588":{"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/Presentation.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1589":{"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/resampler.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1590":{"target":{"__isSmartRef__":true,"id":1591},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/SoundClasses.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1591":{"name":"users.Dan.SoundClasses","type":"moduleDef","startIndex":0,"stopIndex":51910,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1592},{"__isSmartRef__":true,"id":1593},{"__isSmartRef__":true,"id":1615},{"__isSmartRef__":true,"id":1616},{"__isSmartRef__":true,"id":1627},{"__isSmartRef__":true,"id":1628},{"__isSmartRef__":true,"id":1636},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1640},{"__isSmartRef__":true,"id":1641},{"__isSmartRef__":true,"id":1654},{"__isSmartRef__":true,"id":1655},{"__isSmartRef__":true,"id":1662},{"__isSmartRef__":true,"id":1663},{"__isSmartRef__":true,"id":1679},{"__isSmartRef__":true,"id":1680},{"__isSmartRef__":true,"id":1684},{"__isSmartRef__":true,"id":1685},{"__isSmartRef__":true,"id":1695},{"__isSmartRef__":true,"id":1696},{"__isSmartRef__":true,"id":1699},{"__isSmartRef__":true,"id":1700},{"__isSmartRef__":true,"id":1707},{"__isSmartRef__":true,"id":1708},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1722},{"__isSmartRef__":true,"id":1723},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1739}],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1592":{"name":null,"type":"comment","startIndex":63,"stopIndex":63,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1593":{"name":"AbstractSound","type":"klassDef","startIndex":64,"stopIndex":5480,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1594},{"__isSmartRef__":true,"id":1596},{"__isSmartRef__":true,"id":1597},{"__isSmartRef__":true,"id":1598},{"__isSmartRef__":true,"id":1599},{"__isSmartRef__":true,"id":1600},{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1602},{"__isSmartRef__":true,"id":1603},{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1605},{"__isSmartRef__":true,"id":1606},{"__isSmartRef__":true,"id":1607},{"__isSmartRef__":true,"id":1608},{"__isSmartRef__":true,"id":1609},{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1611},{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1613},{"__isSmartRef__":true,"id":1614}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":1595}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1594":{"name":"aboutMe","type":"propertyDef","startIndex":99,"stopIndex":772,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1595":{"name":"default category","type":"categoryDef","startIndex":97,"stopIndex":5477,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1594},{"__isSmartRef__":true,"id":1596},{"__isSmartRef__":true,"id":1597},{"__isSmartRef__":true,"id":1598},{"__isSmartRef__":true,"id":1599},{"__isSmartRef__":true,"id":1600},{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1602},{"__isSmartRef__":true,"id":1603},{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1605},{"__isSmartRef__":true,"id":1606},{"__isSmartRef__":true,"id":1607},{"__isSmartRef__":true,"id":1608},{"__isSmartRef__":true,"id":1609},{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1611},{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1613},{"__isSmartRef__":true,"id":1614}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1596":{"name":"initialize","type":"propertyDef","startIndex":775,"stopIndex":927,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1597":{"name":"clone","type":"propertyDef","startIndex":929,"stopIndex":994,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1598":{"name":"addEnvelope","type":"propertyDef","startIndex":996,"stopIndex":1112,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1599":{"name":"copy","type":"propertyDef","startIndex":1115,"stopIndex":1262,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1600":{"name":"setPitchDurLoudness","type":"propertyDef","startIndex":1266,"stopIndex":1645,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1601":{"name":"samplesRemaining","type":"propertyDef","startIndex":1647,"stopIndex":1706,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1602":{"name":"adjustVolumeTo","type":"propertyDef","startIndex":1708,"stopIndex":2209,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1603":{"name":"mixSampleCountIntoBufferStartingAt","type":"propertyDef","startIndex":2212,"stopIndex":3493,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1604":{"name":"play","type":"propertyDef","startIndex":3498,"stopIndex":3560,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1605":{"name":"findPlayer","type":"propertyDef","startIndex":3562,"stopIndex":3706,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1606":{"name":"reset","type":"propertyDef","startIndex":3709,"stopIndex":4100,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1607":{"name":"setScaledVol","type":"propertyDef","startIndex":4104,"stopIndex":4161,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1608":{"name":"nameOrNumberToPitch","type":"propertyDef","startIndex":4165,"stopIndex":4503,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1609":{"name":"doControl","type":"propertyDef","startIndex":4505,"stopIndex":4832,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1610":{"name":"samplingRate","type":"propertyDef","startIndex":4835,"stopIndex":4885,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1611":{"name":"controlInterval","type":"propertyDef","startIndex":4889,"stopIndex":5000,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1612":{"name":"basePitch","type":"propertyDef","startIndex":5002,"stopIndex":5054,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1613":{"name":"getDurationMS","type":"propertyDef","startIndex":5056,"stopIndex":5120,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1614":{"name":"stopGracefully","type":"propertyDef","startIndex":5122,"stopIndex":5470,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1595},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1593},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1615":{"name":null,"type":"comment","startIndex":5481,"stopIndex":5481,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1616":{"name":"AbstractSound","type":"klassExtensionDef","startIndex":5482,"stopIndex":23478,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1617},{"__isSmartRef__":true,"id":1619},{"__isSmartRef__":true,"id":1620},{"__isSmartRef__":true,"id":1621},{"__isSmartRef__":true,"id":1622},{"__isSmartRef__":true,"id":1623},{"__isSmartRef__":true,"id":1624},{"__isSmartRef__":true,"id":1625},{"__isSmartRef__":true,"id":1626}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1618}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1617":{"name":"ScaleFactor","type":"propertyDef","startIndex":5513,"stopIndex":5531,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1618":{"name":"default category","type":"categoryDef","startIndex":5511,"stopIndex":23475,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1617},{"__isSmartRef__":true,"id":1619},{"__isSmartRef__":true,"id":1620},{"__isSmartRef__":true,"id":1621},{"__isSmartRef__":true,"id":1622},{"__isSmartRef__":true,"id":1623},{"__isSmartRef__":true,"id":1624},{"__isSmartRef__":true,"id":1625},{"__isSmartRef__":true,"id":1626}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1619":{"name":"bachFugue","type":"propertyDef","startIndex":5534,"stopIndex":5738,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1620":{"name":"bachFugueOn","type":"propertyDef","startIndex":5740,"stopIndex":6144,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1621":{"name":"bachFugueV1On","type":"propertyDef","startIndex":6147,"stopIndex":11181,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1622":{"name":"bachFugueV2On","type":"propertyDef","startIndex":11185,"stopIndex":16568,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1623":{"name":"bachFugueV3On","type":"propertyDef","startIndex":16570,"stopIndex":21310,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1624":{"name":"bachFugueV4On","type":"propertyDef","startIndex":21312,"stopIndex":21972,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1625":{"name":"bachFragmentOn","type":"propertyDef","startIndex":21974,"stopIndex":22579,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1626":{"name":"noteSequenceOn","type":"propertyDef","startIndex":22584,"stopIndex":23471,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1618},"className":"AbstractSound","_owner":{"__isSmartRef__":true,"id":1616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1627":{"name":null,"type":"comment","startIndex":23479,"stopIndex":23479,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1628":{"name":"PluckedSound","type":"klassDef","startIndex":23480,"stopIndex":27004,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1629},{"__isSmartRef__":true,"id":1631},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1633},{"__isSmartRef__":true,"id":1634},{"__isSmartRef__":true,"id":1635}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"AbstractSound","categories":[{"__isSmartRef__":true,"id":1630}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1629":{"name":"aboutMe","type":"propertyDef","startIndex":23521,"stopIndex":24131,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1630},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1630":{"name":"default category","type":"categoryDef","startIndex":23519,"stopIndex":27001,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1629},{"__isSmartRef__":true,"id":1631},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1633},{"__isSmartRef__":true,"id":1634},{"__isSmartRef__":true,"id":1635}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1631":{"name":"setPitchDurLoudness","type":"propertyDef","startIndex":24134,"stopIndex":24735,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1630},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1632":{"name":"copy","type":"propertyDef","startIndex":24737,"stopIndex":24829,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1630},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1633":{"name":"reset","type":"propertyDef","startIndex":24831,"stopIndex":25025,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1630},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1634":{"name":"mixSamplesToBuffer","type":"propertyDef","startIndex":25030,"stopIndex":26745,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1630},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1635":{"name":"ensureRing","type":"propertyDef","startIndex":26747,"stopIndex":26998,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1630},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1636":{"name":null,"type":"comment","startIndex":27005,"stopIndex":27006,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1637":{"name":"PluckedSound","type":"klassExtensionDef","startIndex":27007,"stopIndex":27322,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1638}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1639}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1638":{"name":"default","type":"propertyDef","startIndex":27038,"stopIndex":27318,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1639},"className":"PluckedSound","_owner":{"__isSmartRef__":true,"id":1637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1639":{"name":"default category","type":"categoryDef","startIndex":27035,"stopIndex":27319,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1638}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1640":{"name":null,"type":"comment","startIndex":27323,"stopIndex":27324,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1641":{"name":"FMSound","type":"klassDef","startIndex":27325,"stopIndex":30793,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1642},{"__isSmartRef__":true,"id":1644},{"__isSmartRef__":true,"id":1645},{"__isSmartRef__":true,"id":1646},{"__isSmartRef__":true,"id":1647},{"__isSmartRef__":true,"id":1648},{"__isSmartRef__":true,"id":1649},{"__isSmartRef__":true,"id":1650},{"__isSmartRef__":true,"id":1651},{"__isSmartRef__":true,"id":1652},{"__isSmartRef__":true,"id":1653}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"AbstractSound","categories":[{"__isSmartRef__":true,"id":1643}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1642":{"name":"aboutMe","type":"propertyDef","startIndex":27361,"stopIndex":28072,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1643":{"name":"default category","type":"categoryDef","startIndex":27359,"stopIndex":30790,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1642},{"__isSmartRef__":true,"id":1644},{"__isSmartRef__":true,"id":1645},{"__isSmartRef__":true,"id":1646},{"__isSmartRef__":true,"id":1647},{"__isSmartRef__":true,"id":1648},{"__isSmartRef__":true,"id":1649},{"__isSmartRef__":true,"id":1650},{"__isSmartRef__":true,"id":1651},{"__isSmartRef__":true,"id":1652},{"__isSmartRef__":true,"id":1653}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1644":{"name":"initialize","type":"propertyDef","startIndex":28075,"stopIndex":28223,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1645":{"name":"setPitchDurLoudness","type":"propertyDef","startIndex":28225,"stopIndex":28473,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1646":{"name":"setModulationRatio","type":"propertyDef","startIndex":28477,"stopIndex":28674,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1647":{"name":"setModulation","type":"propertyDef","startIndex":28676,"stopIndex":28762,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1648":{"name":"setRatio","type":"propertyDef","startIndex":28764,"stopIndex":28844,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1649":{"name":"copy","type":"propertyDef","startIndex":28849,"stopIndex":28920,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1650":{"name":"clone","type":"propertyDef","startIndex":28922,"stopIndex":28987,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1651":{"name":"reset","type":"propertyDef","startIndex":28990,"stopIndex":29250,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1652":{"name":"mixSamplesToBuffer","type":"propertyDef","startIndex":29253,"stopIndex":30621,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1653":{"name":"setPitch","type":"propertyDef","startIndex":30623,"stopIndex":30787,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1643},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1641},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1654":{"name":null,"type":"comment","startIndex":30794,"stopIndex":30794,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1655":{"name":"FMSound","type":"klassExtensionDef","startIndex":30795,"stopIndex":32813,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1656},{"__isSmartRef__":true,"id":1658},{"__isSmartRef__":true,"id":1659},{"__isSmartRef__":true,"id":1660},{"__isSmartRef__":true,"id":1661}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1657}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1656":{"name":"default","type":"propertyDef","startIndex":30821,"stopIndex":31191,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1657},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1657":{"name":"default category","type":"categoryDef","startIndex":30818,"stopIndex":32810,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1656},{"__isSmartRef__":true,"id":1658},{"__isSmartRef__":true,"id":1659},{"__isSmartRef__":true,"id":1660},{"__isSmartRef__":true,"id":1661}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1658":{"name":"brass","type":"propertyDef","startIndex":31193,"stopIndex":31757,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1657},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1659":{"name":"clarinet","type":"propertyDef","startIndex":31759,"stopIndex":32266,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1657},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1660":{"name":"chime","type":"propertyDef","startIndex":32268,"stopIndex":32499,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1657},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1661":{"name":"ensureSineTable","type":"propertyDef","startIndex":32504,"stopIndex":32809,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1657},"className":"FMSound","_owner":{"__isSmartRef__":true,"id":1655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1662":{"name":null,"type":"comment","startIndex":32814,"stopIndex":32815,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1663":{"name":"Envelope","type":"klassDef","startIndex":32816,"stopIndex":42869,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1664},{"__isSmartRef__":true,"id":1666},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1668},{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1670},{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1672},{"__isSmartRef__":true,"id":1673},{"__isSmartRef__":true,"id":1674},{"__isSmartRef__":true,"id":1675},{"__isSmartRef__":true,"id":1676},{"__isSmartRef__":true,"id":1677},{"__isSmartRef__":true,"id":1678}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":1665}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1664":{"name":"aboutMe","type":"propertyDef","startIndex":32846,"stopIndex":35483,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1665":{"name":"default category","type":"categoryDef","startIndex":32844,"stopIndex":42866,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1664},{"__isSmartRef__":true,"id":1666},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1668},{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1670},{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1672},{"__isSmartRef__":true,"id":1673},{"__isSmartRef__":true,"id":1674},{"__isSmartRef__":true,"id":1675},{"__isSmartRef__":true,"id":1676},{"__isSmartRef__":true,"id":1677},{"__isSmartRef__":true,"id":1678}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1666":{"name":"setPointsLoopStartLoopEnd","type":"propertyDef","startIndex":35486,"stopIndex":36019,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1667":{"name":"mSecsAt","type":"propertyDef","startIndex":36028,"stopIndex":36138,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1668":{"name":"indexOfPointAfterMSecs","type":"propertyDef","startIndex":36144,"stopIndex":36530,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1669":{"name":"valueAt","type":"propertyDef","startIndex":36532,"stopIndex":36636,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1670":{"name":"clone","type":"propertyDef","startIndex":36638,"stopIndex":36703,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1671":{"name":"scaledValueAtMsecs","type":"propertyDef","startIndex":36713,"stopIndex":38340,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1672":{"name":"reset","type":"propertyDef","startIndex":38347,"stopIndex":38458,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1673":{"name":"setExponentialDecay","type":"propertyDef","startIndex":38460,"stopIndex":38961,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1674":{"name":"updateTargetAt","type":"propertyDef","startIndex":38964,"stopIndex":40540,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1675":{"name":"controlInterval","type":"propertyDef","startIndex":40542,"stopIndex":40663,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1676":{"name":"showOnDisplay","type":"propertyDef","startIndex":40669,"stopIndex":42224,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1677":{"name":"interpolateBetween","type":"propertyDef","startIndex":42226,"stopIndex":42635,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1678":{"name":"initialize","type":"propertyDef","startIndex":42637,"stopIndex":42861,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1665},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1679":{"name":null,"type":"comment","startIndex":42870,"stopIndex":42870,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1680":{"name":"Envelope","type":"klassExtensionDef","startIndex":42871,"stopIndex":43312,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1681},{"__isSmartRef__":true,"id":1683}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1681":{"name":"example","type":"propertyDef","startIndex":42898,"stopIndex":43095,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1682},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1682":{"name":"default category","type":"categoryDef","startIndex":42895,"stopIndex":43309,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1681},{"__isSmartRef__":true,"id":1683}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1683":{"name":"withPointsLoopStartLoopEnd","type":"propertyDef","startIndex":43097,"stopIndex":43308,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1682},"className":"Envelope","_owner":{"__isSmartRef__":true,"id":1680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1684":{"name":null,"type":"comment","startIndex":43313,"stopIndex":43314,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1685":{"name":"SequentialSound","type":"klassDef","startIndex":43315,"stopIndex":45797,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1688},{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1690},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1692},{"__isSmartRef__":true,"id":1693},{"__isSmartRef__":true,"id":1694}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"AbstractSound","categories":[{"__isSmartRef__":true,"id":1687}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1686":{"name":"aboutMe","type":"propertyDef","startIndex":43359,"stopIndex":43565,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1687":{"name":"default category","type":"categoryDef","startIndex":43357,"stopIndex":45794,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1688},{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1690},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1692},{"__isSmartRef__":true,"id":1693},{"__isSmartRef__":true,"id":1694}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1688":{"name":"copy","type":"propertyDef","startIndex":43569,"stopIndex":43715,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1689":{"name":"reset","type":"propertyDef","startIndex":43717,"stopIndex":43931,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1690":{"name":"add","type":"propertyDef","startIndex":43933,"stopIndex":44031,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1691":{"name":"mixSamplesToBuffer","type":"propertyDef","startIndex":44034,"stopIndex":45411,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1692":{"name":"samplesRemaining","type":"propertyDef","startIndex":45413,"stopIndex":45542,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1693":{"name":"initialize","type":"propertyDef","startIndex":45545,"stopIndex":45643,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1694":{"name":"doControl","type":"propertyDef","startIndex":45645,"stopIndex":45788,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1687},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1685},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1695":{"name":null,"type":"comment","startIndex":45798,"stopIndex":45798,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1696":{"name":"SequentialSound","type":"klassExtensionDef","startIndex":45799,"stopIndex":46156,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1697}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1698}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1697":{"name":"default","type":"propertyDef","startIndex":45833,"stopIndex":46152,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1698},"className":"SequentialSound","_owner":{"__isSmartRef__":true,"id":1696},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1698":{"name":"default category","type":"categoryDef","startIndex":45830,"stopIndex":46153,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1697}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1699":{"name":null,"type":"comment","startIndex":46157,"stopIndex":46157,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1700":{"name":"RestSound","type":"klassDef","startIndex":46158,"stopIndex":46849,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1703},{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1705},{"__isSmartRef__":true,"id":1706}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"AbstractSound","categories":[{"__isSmartRef__":true,"id":1702}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1701":{"name":"aboutMe","type":"propertyDef","startIndex":46196,"stopIndex":46348,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1702},"className":"RestSound","_owner":{"__isSmartRef__":true,"id":1700},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1702":{"name":"default category","type":"categoryDef","startIndex":46194,"stopIndex":46846,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1703},{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1705},{"__isSmartRef__":true,"id":1706}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1703":{"name":"setPitchDurLoudness","type":"propertyDef","startIndex":46351,"stopIndex":46493,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1702},"className":"RestSound","_owner":{"__isSmartRef__":true,"id":1700},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1704":{"name":"copy","type":"propertyDef","startIndex":46495,"stopIndex":46561,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1702},"className":"RestSound","_owner":{"__isSmartRef__":true,"id":1700},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1705":{"name":"reset","type":"propertyDef","startIndex":46563,"stopIndex":46701,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1702},"className":"RestSound","_owner":{"__isSmartRef__":true,"id":1700},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1706":{"name":"mixSamplesToBuffer","type":"propertyDef","startIndex":46704,"stopIndex":46842,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1702},"className":"RestSound","_owner":{"__isSmartRef__":true,"id":1700},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1707":{"name":null,"type":"comment","startIndex":46850,"stopIndex":46850,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1708":{"name":"RestSound","type":"klassExtensionDef","startIndex":46851,"stopIndex":47237,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1709}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1710}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1709":{"name":"default","type":"propertyDef","startIndex":46879,"stopIndex":47233,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1710},"className":"RestSound","_owner":{"__isSmartRef__":true,"id":1708},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1710":{"name":"default category","type":"categoryDef","startIndex":46876,"stopIndex":47234,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1709}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1711":{"name":null,"type":"comment","startIndex":47238,"stopIndex":47238,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1712":{"name":"MixedSound","type":"klassDef","startIndex":47239,"stopIndex":49354,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1713},{"__isSmartRef__":true,"id":1715},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1719},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1721}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"AbstractSound","categories":[{"__isSmartRef__":true,"id":1714}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1713":{"name":"aboutMe","type":"propertyDef","startIndex":47278,"stopIndex":47448,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1714":{"name":"default category","type":"categoryDef","startIndex":47276,"stopIndex":49351,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1713},{"__isSmartRef__":true,"id":1715},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1719},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1721}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1715":{"name":"samplesRemaining","type":"propertyDef","startIndex":47450,"stopIndex":47695,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1716":{"name":"add","type":"propertyDef","startIndex":47699,"stopIndex":48148,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1717":{"name":"initialize","type":"propertyDef","startIndex":48150,"stopIndex":48288,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1718":{"name":"copy","type":"propertyDef","startIndex":48291,"stopIndex":48526,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1719":{"name":"reset","type":"propertyDef","startIndex":48528,"stopIndex":48685,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1720":{"name":"doControl","type":"propertyDef","startIndex":48687,"stopIndex":48815,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1721":{"name":"mixSamplesToBuffer","type":"propertyDef","startIndex":48819,"stopIndex":49347,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1714},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1722":{"name":null,"type":"comment","startIndex":49355,"stopIndex":49355,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1723":{"name":"MixedSound","type":"klassExtensionDef","startIndex":49356,"stopIndex":49485,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1724}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1725}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1724":{"name":"default","type":"propertyDef","startIndex":49385,"stopIndex":49481,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1725},"className":"MixedSound","_owner":{"__isSmartRef__":true,"id":1723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1725":{"name":"default category","type":"categoryDef","startIndex":49382,"stopIndex":49482,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1724}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1726":{"name":"RepeatingSound","type":"klassDef","startIndex":49486,"stopIndex":51745,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1727},{"__isSmartRef__":true,"id":1729},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1731},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1733},{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1735}],"sourceControl":{"__isSmartRef__":true,"id":1579},"superclassName":"AbstractSound","categories":[{"__isSmartRef__":true,"id":1728}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1727":{"name":"aboutMe","type":"propertyDef","startIndex":49529,"stopIndex":49899,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1728":{"name":"default category","type":"categoryDef","startIndex":49527,"stopIndex":51512,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1727},{"__isSmartRef__":true,"id":1729},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1731},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1733},{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1735}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1729":{"name":"samplesRemaining","type":"propertyDef","startIndex":49901,"stopIndex":50146,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1730":{"name":"setSoundAndCount","type":"propertyDef","startIndex":50150,"stopIndex":50539,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1731":{"name":"initialize","type":"propertyDef","startIndex":50541,"stopIndex":50679,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1732":{"name":"copy","type":"propertyDef","startIndex":50682,"stopIndex":50917,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1733":{"name":"reset","type":"propertyDef","startIndex":50919,"stopIndex":51076,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1734":{"name":"doControl","type":"propertyDef","startIndex":51078,"stopIndex":51206,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1735":{"name":"mixSamplesToBuffer","type":"propertyDef","startIndex":51210,"stopIndex":51738,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":false,"category":{"__isSmartRef__":true,"id":1728},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1736":{"name":"RepeatingSound","type":"klassExtensionDef","startIndex":51746,"stopIndex":51884,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1737}],"sourceControl":{"__isSmartRef__":true,"id":1579},"categories":[{"__isSmartRef__":true,"id":1738}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1737":{"name":"default","type":"propertyDef","startIndex":51779,"stopIndex":51880,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"_isStatic":true,"category":{"__isSmartRef__":true,"id":1738},"className":"RepeatingSound","_owner":{"__isSmartRef__":true,"id":1736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1738":{"name":"default category","type":"categoryDef","startIndex":51546,"stopIndex":51650,"fileName":"users/Dan/SoundClasses.js","_subElements":[{"__isSmartRef__":true,"id":1737}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1739":{"name":null,"type":"comment","startIndex":51885,"stopIndex":51887,"fileName":"users/Dan/SoundClasses.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":1579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"1740":{"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/swfobject.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1741":{"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/XAudioServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1742":{"target":{"__isSmartRef__":true,"id":1743},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"1743":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1744":{"isListItem":true,"string":"Tests/","value":{"__isSmartRef__":true,"id":1583}},"1745":{"isListItem":true,"string":"media/","value":{"__isSmartRef__":true,"id":1584}},"1746":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":1585}},"1747":{"isListItem":true,"string":"AudioExperiment.js (not parsed)","value":{"__isSmartRef__":true,"id":1586}},"1748":{"isListItem":true,"string":"config.js (not parsed)","value":{"__isSmartRef__":true,"id":1587}},"1749":{"isListItem":true,"string":"Presentation.js (not parsed)","value":{"__isSmartRef__":true,"id":1588}},"1750":{"isListItem":true,"string":"resampler.js (not parsed)","value":{"__isSmartRef__":true,"id":1589}},"1751":{"isListItem":true,"string":"SoundClasses.js","value":{"__isSmartRef__":true,"id":1590}},"1752":{"isListItem":true,"string":"swfobject.js (not parsed)","value":{"__isSmartRef__":true,"id":1740}},"1753":{"isListItem":true,"string":"XAudioServer.js (not parsed)","value":{"__isSmartRef__":true,"id":1741}},"1754":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":1742}},"1755":{"morph":{"__isSmartRef__":true,"id":1573},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1756":{"target":{"__isSmartRef__":true,"id":1591},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1578},"moduleName":"users/Dan/SoundClasses.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1757":{"scaleVertical":true,"scaleHorizontal":true},"1758":{"sourceObj":{"__isSmartRef__":true,"id":1573},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setPane1Selection","varMapping":{"__isSmartRef__":true,"id":1759},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1759":{"source":{"__isSmartRef__":true,"id":1573},"target":{"__isSmartRef__":true,"id":1466}},"1760":{"sourceObj":{"__isSmartRef__":true,"id":1573},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane1Selection","varMapping":{"__isSmartRef__":true,"id":1761},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1761":{"source":{"__isSmartRef__":true,"id":1573},"target":{"__isSmartRef__":true,"id":1466}},"1762":{"sourceObj":{"__isSmartRef__":true,"id":1573},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane1Content","varMapping":{"__isSmartRef__":true,"id":1763},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1763":{"source":{"__isSmartRef__":true,"id":1573},"target":{"__isSmartRef__":true,"id":1466}},"1764":{"sourceObj":{"__isSmartRef__":true,"id":1573},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane1Menu","varMapping":{"__isSmartRef__":true,"id":1765},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1765":{"source":{"__isSmartRef__":true,"id":1573},"target":{"__isSmartRef__":true,"id":1466}},"1766":{"onDownPressed":{"__isSmartRef__":true,"id":1767},"onUpPressed":{"__isSmartRef__":true,"id":1774}},"1767":{"varMapping":{"__isSmartRef__":true,"id":1768},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1773},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1768":{"this":{"__isSmartRef__":true,"id":1573},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1769}},"1769":{"$super":{"__isSmartRef__":true,"id":1770}},"1770":{"varMapping":{"__isSmartRef__":true,"id":1771},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1772},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1771":{"obj":{"__isSmartRef__":true,"id":1573},"name":"onDownPressed"},"1772":{},"1773":{},"1774":{"varMapping":{"__isSmartRef__":true,"id":1775},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1780},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1775":{"this":{"__isSmartRef__":true,"id":1573},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1776}},"1776":{"$super":{"__isSmartRef__":true,"id":1777}},"1777":{"varMapping":{"__isSmartRef__":true,"id":1778},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1779},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1778":{"obj":{"__isSmartRef__":true,"id":1573},"name":"onUpPressed"},"1779":{},"1780":{},"1781":{"source":{"__isSmartRef__":true,"id":1466},"target":{"__isSmartRef__":true,"id":1573}},"1782":{"sourceObj":{"__isSmartRef__":true,"id":1466},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":1783},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1842},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1783":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1784},"itemList":[{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1793},{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1801},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1809},{"__isSmartRef__":true,"id":1811},{"__isSmartRef__":true,"id":1813},{"__isSmartRef__":true,"id":1815}],"eventHandler":{"__isSmartRef__":true,"id":1817},"derivationIds":[],"id":"C7FCEA6E-0731-4F59-B46E-1EC37D445A40","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1802},"selectedLineNo":8,"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1818},"attributeConnections":[{"__isSmartRef__":true,"id":1819},{"__isSmartRef__":true,"id":1821},{"__isSmartRef__":true,"id":1823},{"__isSmartRef__":true,"id":1825}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"prevScroll":[0,50],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1827},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(205.0,16.5)"},"1784":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1785":{"isListItem":true,"string":"AbstractSound","value":{"__isSmartRef__":true,"id":1786}},"1786":{"target":{"__isSmartRef__":true,"id":1593},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1787":{"isListItem":true,"string":"AbstractSound (extension)","value":{"__isSmartRef__":true,"id":1788}},"1788":{"target":{"__isSmartRef__":true,"id":1616},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1789":{"isListItem":true,"string":"PluckedSound","value":{"__isSmartRef__":true,"id":1790}},"1790":{"target":{"__isSmartRef__":true,"id":1628},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1791":{"isListItem":true,"string":"PluckedSound (extension)","value":{"__isSmartRef__":true,"id":1792}},"1792":{"target":{"__isSmartRef__":true,"id":1637},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1793":{"isListItem":true,"string":"FMSound","value":{"__isSmartRef__":true,"id":1794}},"1794":{"target":{"__isSmartRef__":true,"id":1641},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1795":{"isListItem":true,"string":"FMSound (extension)","value":{"__isSmartRef__":true,"id":1796}},"1796":{"target":{"__isSmartRef__":true,"id":1655},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1797":{"isListItem":true,"string":"Envelope","value":{"__isSmartRef__":true,"id":1798}},"1798":{"target":{"__isSmartRef__":true,"id":1663},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1799":{"isListItem":true,"string":"Envelope (extension)","value":{"__isSmartRef__":true,"id":1800}},"1800":{"target":{"__isSmartRef__":true,"id":1680},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1801":{"isListItem":true,"string":"SequentialSound","value":{"__isSmartRef__":true,"id":1802}},"1802":{"target":{"__isSmartRef__":true,"id":1685},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1803":{"isListItem":true,"string":"SequentialSound (extension)","value":{"__isSmartRef__":true,"id":1804}},"1804":{"target":{"__isSmartRef__":true,"id":1696},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1805":{"isListItem":true,"string":"RestSound","value":{"__isSmartRef__":true,"id":1806}},"1806":{"target":{"__isSmartRef__":true,"id":1700},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1807":{"isListItem":true,"string":"RestSound (extension)","value":{"__isSmartRef__":true,"id":1808}},"1808":{"target":{"__isSmartRef__":true,"id":1708},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1809":{"isListItem":true,"string":"MixedSound","value":{"__isSmartRef__":true,"id":1810}},"1810":{"target":{"__isSmartRef__":true,"id":1712},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1811":{"isListItem":true,"string":"MixedSound (extension)","value":{"__isSmartRef__":true,"id":1812}},"1812":{"target":{"__isSmartRef__":true,"id":1723},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1813":{"isListItem":true,"string":"RepeatingSound","value":{"__isSmartRef__":true,"id":1814}},"1814":{"target":{"__isSmartRef__":true,"id":1726},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1815":{"isListItem":true,"string":"RepeatingSound (extension)","value":{"__isSmartRef__":true,"id":1816}},"1816":{"target":{"__isSmartRef__":true,"id":1736},"browser":{"__isSmartRef__":true,"id":1466},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1817":{"morph":{"__isSmartRef__":true,"id":1783},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1818":{"scaleVertical":true,"scaleHorizontal":true},"1819":{"sourceObj":{"__isSmartRef__":true,"id":1783},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setPane2Selection","varMapping":{"__isSmartRef__":true,"id":1820},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1820":{"source":{"__isSmartRef__":true,"id":1783},"target":{"__isSmartRef__":true,"id":1466}},"1821":{"sourceObj":{"__isSmartRef__":true,"id":1783},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane2Selection","varMapping":{"__isSmartRef__":true,"id":1822},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1822":{"source":{"__isSmartRef__":true,"id":1783},"target":{"__isSmartRef__":true,"id":1466}},"1823":{"sourceObj":{"__isSmartRef__":true,"id":1783},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane2Content","varMapping":{"__isSmartRef__":true,"id":1824},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1824":{"source":{"__isSmartRef__":true,"id":1783},"target":{"__isSmartRef__":true,"id":1466}},"1825":{"sourceObj":{"__isSmartRef__":true,"id":1783},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane2Menu","varMapping":{"__isSmartRef__":true,"id":1826},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1826":{"source":{"__isSmartRef__":true,"id":1783},"target":{"__isSmartRef__":true,"id":1466}},"1827":{"onDownPressed":{"__isSmartRef__":true,"id":1828},"onUpPressed":{"__isSmartRef__":true,"id":1835}},"1828":{"varMapping":{"__isSmartRef__":true,"id":1829},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1834},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1829":{"this":{"__isSmartRef__":true,"id":1783},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1830}},"1830":{"$super":{"__isSmartRef__":true,"id":1831}},"1831":{"varMapping":{"__isSmartRef__":true,"id":1832},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1833},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1832":{"obj":{"__isSmartRef__":true,"id":1783},"name":"onDownPressed"},"1833":{},"1834":{},"1835":{"varMapping":{"__isSmartRef__":true,"id":1836},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1841},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1836":{"this":{"__isSmartRef__":true,"id":1783},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1837}},"1837":{"$super":{"__isSmartRef__":true,"id":1838}},"1838":{"varMapping":{"__isSmartRef__":true,"id":1839},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1840},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1839":{"obj":{"__isSmartRef__":true,"id":1783},"name":"onUpPressed"},"1840":{},"1841":{},"1842":{"source":{"__isSmartRef__":true,"id":1466},"target":{"__isSmartRef__":true,"id":1783}},"1843":{"sourceObj":{"__isSmartRef__":true,"id":1466},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":1844},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1875},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1844":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1845},"itemList":[{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1848}],"eventHandler":{"__isSmartRef__":true,"id":1850},"derivationIds":[],"id":"E80397E4-1318-4BFB-89DF-FDD35F271E24","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1847},"selectedLineNo":0,"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1851},"attributeConnections":[{"__isSmartRef__":true,"id":1852},{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1856},{"__isSmartRef__":true,"id":1858}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1860},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(410.0,16.5)"},"1845":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1846":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":1847}},"1847":{"target":{"__isSmartRef__":true,"id":1685},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1802},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1848":{"isListItem":true,"string":"default category","value":{"__isSmartRef__":true,"id":1849}},"1849":{"target":{"__isSmartRef__":true,"id":1687},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1802},"targets":[{"__isSmartRef__":true,"id":1687}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1850":{"morph":{"__isSmartRef__":true,"id":1844},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1851":{"scaleVertical":true,"scaleHorizontal":true},"1852":{"sourceObj":{"__isSmartRef__":true,"id":1844},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setPane3Selection","varMapping":{"__isSmartRef__":true,"id":1853},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1853":{"source":{"__isSmartRef__":true,"id":1844},"target":{"__isSmartRef__":true,"id":1466}},"1854":{"sourceObj":{"__isSmartRef__":true,"id":1844},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane3Selection","varMapping":{"__isSmartRef__":true,"id":1855},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1855":{"source":{"__isSmartRef__":true,"id":1844},"target":{"__isSmartRef__":true,"id":1466}},"1856":{"sourceObj":{"__isSmartRef__":true,"id":1844},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane3Content","varMapping":{"__isSmartRef__":true,"id":1857},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1857":{"source":{"__isSmartRef__":true,"id":1844},"target":{"__isSmartRef__":true,"id":1466}},"1858":{"sourceObj":{"__isSmartRef__":true,"id":1844},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane3Menu","varMapping":{"__isSmartRef__":true,"id":1859},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1859":{"source":{"__isSmartRef__":true,"id":1844},"target":{"__isSmartRef__":true,"id":1466}},"1860":{"onDownPressed":{"__isSmartRef__":true,"id":1861},"onUpPressed":{"__isSmartRef__":true,"id":1868}},"1861":{"varMapping":{"__isSmartRef__":true,"id":1862},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1867},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1862":{"this":{"__isSmartRef__":true,"id":1844},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1863}},"1863":{"$super":{"__isSmartRef__":true,"id":1864}},"1864":{"varMapping":{"__isSmartRef__":true,"id":1865},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1866},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1865":{"obj":{"__isSmartRef__":true,"id":1844},"name":"onDownPressed"},"1866":{},"1867":{},"1868":{"varMapping":{"__isSmartRef__":true,"id":1869},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1874},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1869":{"this":{"__isSmartRef__":true,"id":1844},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1870}},"1870":{"$super":{"__isSmartRef__":true,"id":1871}},"1871":{"varMapping":{"__isSmartRef__":true,"id":1872},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1873},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1872":{"obj":{"__isSmartRef__":true,"id":1844},"name":"onUpPressed"},"1873":{},"1874":{},"1875":{"source":{"__isSmartRef__":true,"id":1466},"target":{"__isSmartRef__":true,"id":1844}},"1876":{"sourceObj":{"__isSmartRef__":true,"id":1466},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":1877},"targetMethodName":"updateList","varMapping":{"__isSmartRef__":true,"id":1922},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1877":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1878},"itemList":[{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1881},{"__isSmartRef__":true,"id":1883},{"__isSmartRef__":true,"id":1885},{"__isSmartRef__":true,"id":1887},{"__isSmartRef__":true,"id":1889},{"__isSmartRef__":true,"id":1891},{"__isSmartRef__":true,"id":1893}],"eventHandler":{"__isSmartRef__":true,"id":1895},"derivationIds":[],"id":"9690094E-3B92-4205-BF6D-06144E02D6C0","_FontFamily":"Helvetica","_FontSize":10,"grabbingEnabled":false,"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","__serializedExpressions__":["_Position"],"selection":{"__isSmartRef__":true,"id":1896},"selectedLineNo":2,"owner":{"__isSmartRef__":true,"id":1458},"layout":{"__isSmartRef__":true,"id":1898},"attributeConnections":[{"__isSmartRef__":true,"id":1899},{"__isSmartRef__":true,"id":1901},{"__isSmartRef__":true,"id":1903},{"__isSmartRef__":true,"id":1905}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1907},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(615.0,16.5)"},"1878":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(205.0,203.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"1879":{"isListItem":true,"string":"aboutMe (proto)","value":{"__isSmartRef__":true,"id":1880}},"1880":{"target":{"__isSmartRef__":true,"id":1686},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1881":{"isListItem":true,"string":"copy (proto)","value":{"__isSmartRef__":true,"id":1882}},"1882":{"target":{"__isSmartRef__":true,"id":1688},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1883":{"isListItem":true,"string":"reset (proto)","value":{"__isSmartRef__":true,"id":1884}},"1884":{"target":{"__isSmartRef__":true,"id":1689},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1885":{"isListItem":true,"string":"add (proto)","value":{"__isSmartRef__":true,"id":1886}},"1886":{"target":{"__isSmartRef__":true,"id":1690},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1887":{"isListItem":true,"string":"mixSamplesToBuffer (proto)","value":{"__isSmartRef__":true,"id":1888}},"1888":{"target":{"__isSmartRef__":true,"id":1691},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1889":{"isListItem":true,"string":"samplesRemaining (proto)","value":{"__isSmartRef__":true,"id":1890}},"1890":{"target":{"__isSmartRef__":true,"id":1692},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1891":{"isListItem":true,"string":"initialize (proto)","value":{"__isSmartRef__":true,"id":1892}},"1892":{"target":{"__isSmartRef__":true,"id":1693},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1893":{"isListItem":true,"string":"doControl (proto)","value":{"__isSmartRef__":true,"id":1894}},"1894":{"target":{"__isSmartRef__":true,"id":1694},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1847},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1895":{"morph":{"__isSmartRef__":true,"id":1877},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1896":{"target":{"__isSmartRef__":true,"id":1730},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1897},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1897":{"target":{"__isSmartRef__":true,"id":1726},"browser":{"__isSmartRef__":true,"id":1466},"parent":{"__isSmartRef__":true,"id":1814},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"1898":{"scaleVertical":true,"scaleHorizontal":true},"1899":{"sourceObj":{"__isSmartRef__":true,"id":1877},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setPane4Selection","varMapping":{"__isSmartRef__":true,"id":1900},"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1900":{"source":{"__isSmartRef__":true,"id":1877},"target":{"__isSmartRef__":true,"id":1466}},"1901":{"sourceObj":{"__isSmartRef__":true,"id":1877},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane4Selection","varMapping":{"__isSmartRef__":true,"id":1902},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1902":{"source":{"__isSmartRef__":true,"id":1877},"target":{"__isSmartRef__":true,"id":1466}},"1903":{"sourceObj":{"__isSmartRef__":true,"id":1877},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane4Content","varMapping":{"__isSmartRef__":true,"id":1904},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1904":{"source":{"__isSmartRef__":true,"id":1877},"target":{"__isSmartRef__":true,"id":1466}},"1905":{"sourceObj":{"__isSmartRef__":true,"id":1877},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"getPane4Menu","varMapping":{"__isSmartRef__":true,"id":1906},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1906":{"source":{"__isSmartRef__":true,"id":1877},"target":{"__isSmartRef__":true,"id":1466}},"1907":{"onDownPressed":{"__isSmartRef__":true,"id":1908},"onUpPressed":{"__isSmartRef__":true,"id":1915}},"1908":{"varMapping":{"__isSmartRef__":true,"id":1909},"source":"function onDownPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1914},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1909":{"this":{"__isSmartRef__":true,"id":1877},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1910}},"1910":{"$super":{"__isSmartRef__":true,"id":1911}},"1911":{"varMapping":{"__isSmartRef__":true,"id":1912},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1913},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1912":{"obj":{"__isSmartRef__":true,"id":1877},"name":"onDownPressed"},"1913":{},"1914":{},"1915":{"varMapping":{"__isSmartRef__":true,"id":1916},"source":"function onUpPressed(evt) {\n $super(evt);\n this.focus.bind(this).delay(0);\n return true;\n }","funcProperties":{"__isSmartRef__":true,"id":1921},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1916":{"this":{"__isSmartRef__":true,"id":1877},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1917}},"1917":{"$super":{"__isSmartRef__":true,"id":1918}},"1918":{"varMapping":{"__isSmartRef__":true,"id":1919},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1920},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1919":{"obj":{"__isSmartRef__":true,"id":1877},"name":"onUpPressed"},"1920":{},"1921":{},"1922":{"source":{"__isSmartRef__":true,"id":1466},"target":{"__isSmartRef__":true,"id":1877}},"1923":{"sourceObj":{"__isSmartRef__":true,"id":1466},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":1924},"targetMethodName":"setTextString","varMapping":{"__isSmartRef__":true,"id":2500},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"1924":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1925},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1926},{"__isSmartRef__":true,"id":1928},{"__isSmartRef__":true,"id":1930},{"__isSmartRef__":true,"id":1932},{"__isSmartRef__":true,"id":1934},{"__isSmartRef__":true,"id":1936},{"__isSmartRef__":true,"id":1938},{"__isSmartRef__":true,"id":1940},{"__isSmartRef__":true,"id":1942},{"__isSmartRef__":true,"id":1944},{"__isSmartRef__":true,"id":1946},{"__isSmartRef__":true,"id":1948},{"__isSmartRef__":true,"id":1950},{"__isSmartRef__":true,"id":1952},{"__isSmartRef__":true,"id":1954},{"__isSmartRef__":true,"id":1956},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1960},{"__isSmartRef__":true,"id":1962},{"__isSmartRef__":true,"id":1964},{"__isSmartRef__":true,"id":1966},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1976},{"__isSmartRef__":true,"id":1978},{"__isSmartRef__":true,"id":1980},{"__isSmartRef__":true,"id":1982},{"__isSmartRef__":true,"id":1984},{"__isSmartRef__":true,"id":1986},{"__isSmartRef__":true,"id":1988},{"__isSmartRef__":true,"id":1990},{"__isSmartRef__":true,"id":1992},{"__isSmartRef__":true,"id":1994},{"__isSmartRef__":true,"id":1996},{"__isSmartRef__":true,"id":1998},{"__isSmartRef__":true,"id":2000},{"__isSmartRef__":true,"id":2002},{"__isSmartRef__":true,"id":2004},{"__isSmartRef__":true,"id":2006},{"__isSmartRef__":true,"id":2008},{"__isSmartRef__":true,"id":2010},{"__isSmartRef__":true,"id":2012},{"__isSmartRef__":true,"id":2014},{"__isSmartRef__":true,"id":2016},{"__isSmartRef__":true,"id":2018},{"__isSmartRef__":true,"id":2020},{"__isSmartRef__":true,"id":2022},{"__isSmartRef__":true,"id":2024},{"__isSmartRef__":true,"id":2026},{"__isSmartRef__":true,"id":2028},{"__isSmartRef__":true,"id":2030},{"__isSmartRef__":true,"id":2032},{"__isSmartRef__":true,"id":2034},{"__isSmartRef__":true,"id":2036},{"__isSmartRef__":true,"id":2038},{"__isSmartRef__":true,"id":2040},{"__isSmartRef__":true,"id":2042},{"__isSmartRef__":true,"id":2044},{"__isSmartRef__":true,"id":2046},{"__isSmartRef__":true,"id":2048},{"__isSmartRef__":true,"id":2050},{"__isSmartRef__":true,"id":2052},{"__isSmartRef__":true,"id":2054},{"__isSmartRef__":true,"id":2056},{"__isSmartRef__":true,"id":2058},{"__isSmartRef__":true,"id":2060},{"__isSmartRef__":true,"id":2062},{"__isSmartRef__":true,"id":2064},{"__isSmartRef__":true,"id":2066},{"__isSmartRef__":true,"id":2068},{"__isSmartRef__":true,"id":2070},{"__isSmartRef__":true,"id":2072},{"__isSmartRef__":true,"id":2074},{"__isSmartRef__":true,"id":2076},{"__isSmartRef__":true,"id":2078},{"__isSmartRef__":true,"id":2080},{"__isSmartRef__":true,"id":2082},{"__isSmartRef__":true,"id":2084},{"__isSmartRef__":true,"id":2086},{"__isSmartRef__":true,"id":2088},{"__isSmartRef__":true,"id":2090},{"__isSmartRef__":true,"id":2092},{"__isSmartRef__":true,"id":2094},{"__isSmartRef__":true,"id":2096},{"__isSmartRef__":true,"id":2098},{"__isSmartRef__":true,"id":2100},{"__isSmartRef__":true,"id":2102},{"__isSmartRef__":true,"id":2104},{"__isSmartRef__":true,"id":2106},{"__isSmartRef__":true,"id":2108},{"__isSmartRef__":true,"id":2110},{"__isSmartRef__":true,"id":2112},{"__isSmartRef__":true,"id":2114},{"__isSmartRef__":true,"id":2116},{"__isSmartRef__":true,"id":2118},{"__isSmartRef__":true,"id":2120},{"__isSmartRef__":true,"id":2122},{"__isSmartRef__":true,"id":2124},{"__isSmartRef__":true,"id":2126},{"__isSmartRef__":true,"id":2128},{"__isSmartRef__":true,"id":2130},{"__isSmartRef__":true,"id":2132},{"__isSmartRef__":true,"id":2134},{"__isSmartRef__":true,"id":2136},{"__isSmartRef__":true,"id":2138},{"__isSmartRef__":true,"id":2140},{"__isSmartRef__":true,"id":2142},{"__isSmartRef__":true,"id":2144},{"__isSmartRef__":true,"id":2146},{"__isSmartRef__":true,"id":2148},{"__isSmartRef__":true,"id":2150},{"__isSmartRef__":true,"id":2152},{"__isSmartRef__":true,"id":2154},{"__isSmartRef__":true,"id":2156},{"__isSmartRef__":true,"id":2158},{"__isSmartRef__":true,"id":2160},{"__isSmartRef__":true,"id":2162},{"__isSmartRef__":true,"id":2164},{"__isSmartRef__":true,"id":2166},{"__isSmartRef__":true,"id":2168},{"__isSmartRef__":true,"id":2170},{"__isSmartRef__":true,"id":2172},{"__isSmartRef__":true,"id":2174},{"__isSmartRef__":true,"id":2176},{"__isSmartRef__":true,"id":2178},{"__isSmartRef__":true,"id":2180},{"__isSmartRef__":true,"id":2182},{"__isSmartRef__":true,"id":2184},{"__isSmartRef__":true,"id":2186},{"__isSmartRef__":true,"id":2188},{"__isSmartRef__":true,"id":2190},{"__isSmartRef__":true,"id":2192},{"__isSmartRef__":true,"id":2194},{"__isSmartRef__":true,"id":2196},{"__isSmartRef__":true,"id":2198},{"__isSmartRef__":true,"id":2200},{"__isSmartRef__":true,"id":2202},{"__isSmartRef__":true,"id":2204},{"__isSmartRef__":true,"id":2206},{"__isSmartRef__":true,"id":2208},{"__isSmartRef__":true,"id":2210},{"__isSmartRef__":true,"id":2212},{"__isSmartRef__":true,"id":2214},{"__isSmartRef__":true,"id":2216},{"__isSmartRef__":true,"id":2218},{"__isSmartRef__":true,"id":2220},{"__isSmartRef__":true,"id":2222},{"__isSmartRef__":true,"id":2224},{"__isSmartRef__":true,"id":2226},{"__isSmartRef__":true,"id":2228},{"__isSmartRef__":true,"id":2230},{"__isSmartRef__":true,"id":2232},{"__isSmartRef__":true,"id":2234},{"__isSmartRef__":true,"id":2236},{"__isSmartRef__":true,"id":2238},{"__isSmartRef__":true,"id":2240},{"__isSmartRef__":true,"id":2242},{"__isSmartRef__":true,"id":2244},{"__isSmartRef__":true,"id":2246},{"__isSmartRef__":true,"id":2248},{"__isSmartRef__":true,"id":2250},{"__isSmartRef__":true,"id":2252},{"__isSmartRef__":true,"id":2254},{"__isSmartRef__":true,"id":2256},{"__isSmartRef__":true,"id":2258},{"__isSmartRef__":true,"id":2260},{"__isSmartRef__":true,"id":2262},{"__isSmartRef__":true,"id":2264},{"__isSmartRef__":true,"id":2266},{"__isSmartRef__":true,"id":2268},{"__isSmartRef__":true,"id":2270},{"__isSmartRef__":true,"id":2272},{"__isSmartRef__":true,"id":2274},{"__isSmartRef__":true,"id":2276},{"__isSmartRef__":true,"id":2278},{"__isSmartRef__":true,"id":2280},{"__isSmartRef__":true,"id":2282},{"__isSmartRef__":true,"id":2284},{"__isSmartRef__":true,"id":2286},{"__isSmartRef__":true,"id":2288},{"__isSmartRef__":true,"id":2290},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2294},{"__isSmartRef__":true,"id":2296},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2300},{"__isSmartRef__":true,"id":2302},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2306},{"__isSmartRef__":true,"id":2308},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2312},{"__isSmartRef__":true,"id":2314},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2318},{"__isSmartRef__":true,"id":2320},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2324},{"__isSmartRef__":true,"id":2326},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2330},{"__isSmartRef__":true,"id":2332},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2336},{"__isSmartRef__":true,"id":2338},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2342},{"__isSmartRef__":true,"id":2344},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2348},{"__isSmartRef__":true,"id":2350},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2354},{"__isSmartRef__":true,"id":2356},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2360},{"__isSmartRef__":true,"id":2362},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2366},{"__isSmartRef__":true,"id":2368},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2372},{"__isSmartRef__":true,"id":2374},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2378},{"__isSmartRef__":true,"id":2380},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2384},{"__isSmartRef__":true,"id":2386},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2390},{"__isSmartRef__":true,"id":2392},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":2396},{"__isSmartRef__":true,"id":2398},{"__isSmartRef__":true,"id":2400},{"__isSmartRef__":true,"id":2402},{"__isSmartRef__":true,"id":2404},{"__isSmartRef__":true,"id":2406},{"__isSmartRef__":true,"id":2408},{"__isSmartRef__":true,"id":2410},{"__isSmartRef__":true,"id":2412},{"__isSmartRef__":true,"id":2414},{"__isSmartRef__":true,"id":2416},{"__isSmartRef__":true,"id":2418},{"__isSmartRef__":true,"id":2420},{"__isSmartRef__":true,"id":2422},{"__isSmartRef__":true,"id":2424},{"__isSmartRef__":true,"id":2426},{"__isSmartRef__":true,"id":2428},{"__isSmartRef__":true,"id":2430},{"__isSmartRef__":true,"id":2432},{"__isSmartRef__":true,"id":2434},{"__isSmartRef__":true,"id":2436},{"__isSmartRef__":true,"id":2438},{"__isSmartRef__":true,"id":2440},{"__isSmartRef__":true,"id":2442},{"__isSmartRef__":true,"id":2444},{"__isSmartRef__":true,"id":2446},{"__isSmartRef__":true,"id":2448},{"__isSmartRef__":true,"id":2450},{"__isSmartRef__":true,"id":2452},{"__isSmartRef__":true,"id":2454},{"__isSmartRef__":true,"id":2456},{"__isSmartRef__":true,"id":2458},{"__isSmartRef__":true,"id":2460},{"__isSmartRef__":true,"id":2462},{"__isSmartRef__":true,"id":2464},{"__isSmartRef__":true,"id":2466},{"__isSmartRef__":true,"id":2468},{"__isSmartRef__":true,"id":2470},{"__isSmartRef__":true,"id":2472},{"__isSmartRef__":true,"id":2474},{"__isSmartRef__":true,"id":2476},{"__isSmartRef__":true,"id":2478},{"__isSmartRef__":true,"id":2480},{"__isSmartRef__":true,"id":2482},{"__isSmartRef__":true,"id":2484},{"__isSmartRef__":true,"id":2486},{"__isSmartRef__":true,"id":2488},{"__isSmartRef__":true,"id":2490},{"__isSmartRef__":true,"id":2492}],"eventHandler":{"__isSmartRef__":true,"id":2494},"_ClipMode":"auto","derivationIds":[],"id":"499E6584-79C3-4633-A011-2E01C245467B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1458},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":2495},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":2496},{"__isSmartRef__":true,"id":2498}],"doNotSerialize":["$$textString","$$savedTextString","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":"AbstractSound.subclass(\"SequentialSound\", {\naboutMe: function() { \n // SequentialSound carries a list of sounds to be played in sequence.\n // Typically used to encode a melody.\n // Adapted from John Maloney's Squeak code by Dan Ingalls\n },\n\n\ncopy: function($super) { \n var copy = $super();\n copy.sounds = this.sounds.map(function(snd) { return snd.copy(); });\n return copy;\n },\nreset: function($super) {\n // Reset all sounds, and move currentIndex back to the beginning\n $super(); \n this.sounds.forEach(function(snd) {snd.reset(); });\n this.soundsIndex = 0;\n return this;\n },\nadd: function(aSound) {\n // Add a new note\n this.sounds.push(aSound);\n return this;\n },\n\nmixSamplesToBuffer: function(n, buffer, startIndex, leftVol, rightVol) {\n if (this.player == null) this.player = this.findPlayer(); // cache it here for whole melody\n if (this.soundsIndex < 0) return; // indicator of completion\n var finalIndex = (startIndex + n) - 1;\n var i = startIndex;\n while (i <= finalIndex) {\n var snd = this.sounds[this.soundsIndex];\n while (snd.samplesRemaining() <= 0) {\n if (this.player && this.player.noteSoundOnOff)\n this.player.noteSoundOnOff(snd, false);\n // find next unplayed sound\n if (this.soundsIndex < this.sounds.length-1) {\n this.soundsIndex++;\n snd = this.sounds[this.soundsIndex];\n if (this.player && this.player.noteSoundOnOff)\n this.player.noteSoundOnOff(snd, true, this.noteColor);\n } else {\n this.soundsIndex = -1;\n return; // no more sounds\n }};\n if (this.soundsIndex == 0 && this.player && this.player.noteSoundOnOff)\n this.player.noteSoundOnOff(snd, true, this.noteColor);\n var count = (finalIndex - i) + 1;\n var remaining = snd.samplesRemaining();\n\tif (remaining < count) count = remaining;\n snd.mixSamplesToBuffer(count, buffer, i, leftVol, rightVol);\n i += count;\n };\n},\nsamplesRemaining: function() {\n if (this.soundsIndex < 0) return 0;\n return 999999; // really anything > 0 should do\n },\n\ninitialize: function($super) {\n this.sounds = [];\n this.soundsIndex = 0;\n $super();\n },\ndoControl: function($super, msPast) {\n $super(msPast);\n if (this.soundsIndex >= 0) this.sounds[this.soundsIndex].doControl(msPast);\n },\n\n\n\n\n});\n","savedTextString":"aboutMe: function() { \n // I represent a sound that plays repeatedly.\n // Adapted from Squeak code by Dan Ingalls, however...\n // This implementation supports a repeat time that is not determined by the end of\n // the last note (ie sound.samplesRemaining). This allows looping a sequence whose\n // last note plays beyond the start of the next loop.\n },","specialHighlighting":"memberFragment","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"_lastSyntaxHighlightTime":7,"previousSelection":[31,31],"isBeingDragged":false,"charsReplaced":"","lastFindLoc":307,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,247.5)"},"1925":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,302.5)","_Padding":"lively.rect(5,5,0,0)","_BorderColor":"Color.rgb(102,102,102)","_Fill":"Color.rgb(255,255,255)"},"1926":{"style":{"__isSmartRef__":true,"id":1927},"chunkOwner":{"__isSmartRef__":true,"id":1924},"_id":"_1623","storedString":"AbstractSound","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1927":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"1928":{"_id":"_1625","style":{"__isSmartRef__":true,"id":1929},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1929":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1930":{"_id":"_1626","style":{"__isSmartRef__":true,"id":1931},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"subclass","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1931":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,128,128)"},"1932":{"_id":"_1627","style":{"__isSmartRef__":true,"id":1933},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1933":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1934":{"_id":"_1628","style":{"__isSmartRef__":true,"id":1935},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\"SequentialSound\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1935":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"1936":{"_id":"_1629","style":{"__isSmartRef__":true,"id":1937},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1937":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1938":{"_id":"_1630","style":{"__isSmartRef__":true,"id":1939},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1939":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1940":{"_id":"_1631","style":{"__isSmartRef__":true,"id":1941},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1941":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1942":{"_id":"_1632","style":{"__isSmartRef__":true,"id":1943},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"aboutMe:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1943":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"1944":{"_id":"_1633","style":{"__isSmartRef__":true,"id":1945},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1945":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1946":{"_id":"_1634","style":{"__isSmartRef__":true,"id":1947},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1947":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1948":{"_id":"_1635","style":{"__isSmartRef__":true,"id":1949},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1949":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1950":{"_id":"_1636","style":{"__isSmartRef__":true,"id":1951},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1951":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1952":{"_id":"_1637","style":{"__isSmartRef__":true,"id":1953},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1953":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"1954":{"_id":"_1638","style":{"__isSmartRef__":true,"id":1955},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1955":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1956":{"_id":"_1639","style":{"__isSmartRef__":true,"id":1957},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1957":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"1958":{"_id":"_1640","style":{"__isSmartRef__":true,"id":1959},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" SequentialSound carries a list of sounds to be played in sequence.","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1959":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1960":{"_id":"_1641","style":{"__isSmartRef__":true,"id":1961},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1961":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1962":{"_id":"_1642","style":{"__isSmartRef__":true,"id":1963},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1963":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"1964":{"_id":"_1643","style":{"__isSmartRef__":true,"id":1965},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" Typically used to encode a melody.","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1965":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1966":{"_id":"_1644","style":{"__isSmartRef__":true,"id":1967},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1967":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1968":{"_id":"_1645","style":{"__isSmartRef__":true,"id":1969},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1969":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"1970":{"_id":"_1646","style":{"__isSmartRef__":true,"id":1971},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" Adapted from John Maloney's Squeak code by Dan Ingalls","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1971":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1972":{"_id":"_1647","style":{"__isSmartRef__":true,"id":1973},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1973":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1974":{"_id":"_1648","style":{"__isSmartRef__":true,"id":1975},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1975":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1976":{"_id":"_1649","style":{"__isSmartRef__":true,"id":1977},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1977":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1978":{"_id":"_1650","style":{"__isSmartRef__":true,"id":1979},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"copy:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1979":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"1980":{"_id":"_1651","style":{"__isSmartRef__":true,"id":1981},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1981":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1982":{"_id":"_1652","style":{"__isSmartRef__":true,"id":1983},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1983":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1984":{"_id":"_1653","style":{"__isSmartRef__":true,"id":1985},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"($super) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1985":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1986":{"_id":"_1654","style":{"__isSmartRef__":true,"id":1987},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1987":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"1988":{"_id":"_1655","style":{"__isSmartRef__":true,"id":1989},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1989":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"1990":{"_id":"_1656","style":{"__isSmartRef__":true,"id":1991},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1991":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1992":{"_id":"_1657","style":{"__isSmartRef__":true,"id":1993},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1993":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"1994":{"_id":"_1658","style":{"__isSmartRef__":true,"id":1995},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" copy = $super();\n copy.sounds = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1995":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"1996":{"_id":"_1659","style":{"__isSmartRef__":true,"id":1997},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1997":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"1998":{"_id":"_1660","style":{"__isSmartRef__":true,"id":1999},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds.map(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1999":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2000":{"_id":"_1661","style":{"__isSmartRef__":true,"id":2001},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2001":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2002":{"_id":"_1662","style":{"__isSmartRef__":true,"id":2003},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"(snd) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2003":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2004":{"_id":"_1663","style":{"__isSmartRef__":true,"id":2005},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2005":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2006":{"_id":"_1664","style":{"__isSmartRef__":true,"id":2007},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2007":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2008":{"_id":"_1665","style":{"__isSmartRef__":true,"id":2009},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2009":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2010":{"_id":"_1666","style":{"__isSmartRef__":true,"id":2011},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" snd.copy(); ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2011":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2012":{"_id":"_1667","style":{"__isSmartRef__":true,"id":2013},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2013":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2014":{"_id":"_1668","style":{"__isSmartRef__":true,"id":2015},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":");\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2015":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2016":{"_id":"_1669","style":{"__isSmartRef__":true,"id":2017},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2017":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2018":{"_id":"_1670","style":{"__isSmartRef__":true,"id":2019},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" copy;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2019":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2020":{"_id":"_1671","style":{"__isSmartRef__":true,"id":2021},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2021":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2022":{"_id":"_1672","style":{"__isSmartRef__":true,"id":2023},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2023":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2024":{"_id":"_1673","style":{"__isSmartRef__":true,"id":2025},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"reset:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2025":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2026":{"_id":"_1674","style":{"__isSmartRef__":true,"id":2027},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2027":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2028":{"_id":"_1675","style":{"__isSmartRef__":true,"id":2029},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2029":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2030":{"_id":"_1676","style":{"__isSmartRef__":true,"id":2031},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"($super) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2031":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2032":{"_id":"_1677","style":{"__isSmartRef__":true,"id":2033},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2033":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2034":{"_id":"_1678","style":{"__isSmartRef__":true,"id":2035},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2035":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2036":{"_id":"_1679","style":{"__isSmartRef__":true,"id":2037},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2037":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2038":{"_id":"_1680","style":{"__isSmartRef__":true,"id":2039},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" Reset all sounds, and move currentIndex back to the beginning","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2039":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2040":{"_id":"_1681","style":{"__isSmartRef__":true,"id":2041},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n $super();","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2041":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2042":{"_id":"_1682","style":{"__isSmartRef__":true,"id":2043},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2043":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"2044":{"_id":"_1683","style":{"__isSmartRef__":true,"id":2045},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2045":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2046":{"_id":"_1684","style":{"__isSmartRef__":true,"id":2047},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2047":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2048":{"_id":"_1685","style":{"__isSmartRef__":true,"id":2049},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds.forEach(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2049":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2050":{"_id":"_1686","style":{"__isSmartRef__":true,"id":2051},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2051":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2052":{"_id":"_1687","style":{"__isSmartRef__":true,"id":2053},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"(snd) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2053":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2054":{"_id":"_1688","style":{"__isSmartRef__":true,"id":2055},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2055":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2056":{"_id":"_1689","style":{"__isSmartRef__":true,"id":2057},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"snd.reset(); ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2057":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2058":{"_id":"_1690","style":{"__isSmartRef__":true,"id":2059},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2059":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2060":{"_id":"_1691","style":{"__isSmartRef__":true,"id":2061},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":");\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2061":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2062":{"_id":"_1692","style":{"__isSmartRef__":true,"id":2063},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2063":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2064":{"_id":"_1693","style":{"__isSmartRef__":true,"id":2065},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2065":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2066":{"_id":"_1694","style":{"__isSmartRef__":true,"id":2067},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2067":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2068":{"_id":"_1695","style":{"__isSmartRef__":true,"id":2069},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2069":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2070":{"_id":"_1696","style":{"__isSmartRef__":true,"id":2071},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2071":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2072":{"_id":"_1697","style":{"__isSmartRef__":true,"id":2073},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2073":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2074":{"_id":"_1698","style":{"__isSmartRef__":true,"id":2075},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2075":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2076":{"_id":"_1699","style":{"__isSmartRef__":true,"id":2077},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2077":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2078":{"_id":"_1700","style":{"__isSmartRef__":true,"id":2079},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2079":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2080":{"_id":"_1701","style":{"__isSmartRef__":true,"id":2081},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2081":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2082":{"_id":"_1702","style":{"__isSmartRef__":true,"id":2083},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"add:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2083":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2084":{"_id":"_1703","style":{"__isSmartRef__":true,"id":2085},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2085":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2086":{"_id":"_1704","style":{"__isSmartRef__":true,"id":2087},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2087":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2088":{"_id":"_1705","style":{"__isSmartRef__":true,"id":2089},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"(aSound) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2089":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2090":{"_id":"_1706","style":{"__isSmartRef__":true,"id":2091},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2091":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2092":{"_id":"_1707","style":{"__isSmartRef__":true,"id":2093},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2093":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2094":{"_id":"_1708","style":{"__isSmartRef__":true,"id":2095},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2095":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2096":{"_id":"_1709","style":{"__isSmartRef__":true,"id":2097},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" Add a new note","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2097":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2098":{"_id":"_1710","style":{"__isSmartRef__":true,"id":2099},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2099":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2100":{"_id":"_1711","style":{"__isSmartRef__":true,"id":2101},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2101":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2102":{"_id":"_1712","style":{"__isSmartRef__":true,"id":2103},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds.push(aSound);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2103":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2104":{"_id":"_1713","style":{"__isSmartRef__":true,"id":2105},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2105":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2106":{"_id":"_1714","style":{"__isSmartRef__":true,"id":2107},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2107":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2108":{"_id":"_1715","style":{"__isSmartRef__":true,"id":2109},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2109":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2110":{"_id":"_1716","style":{"__isSmartRef__":true,"id":2111},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2111":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2112":{"_id":"_1717","style":{"__isSmartRef__":true,"id":2113},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2113":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2114":{"_id":"_1718","style":{"__isSmartRef__":true,"id":2115},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2115":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2116":{"_id":"_1719","style":{"__isSmartRef__":true,"id":2117},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"mixSamplesToBuffer:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2117":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2118":{"_id":"_1720","style":{"__isSmartRef__":true,"id":2119},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2119":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2120":{"_id":"_1721","style":{"__isSmartRef__":true,"id":2121},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2121":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2122":{"_id":"_1722","style":{"__isSmartRef__":true,"id":2123},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"(n, buffer, startIndex, leftVol, rightVol) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2123":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2124":{"_id":"_1723","style":{"__isSmartRef__":true,"id":2125},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2125":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2126":{"_id":"_1724","style":{"__isSmartRef__":true,"id":2127},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2127":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2128":{"_id":"_1725","style":{"__isSmartRef__":true,"id":2129},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2129":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2130":{"_id":"_1726","style":{"__isSmartRef__":true,"id":2131},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2131":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2132":{"_id":"_1727","style":{"__isSmartRef__":true,"id":2133},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2133":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2134":{"_id":"_1728","style":{"__isSmartRef__":true,"id":2135},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player == null) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2135":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2136":{"_id":"_1729","style":{"__isSmartRef__":true,"id":2137},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2137":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2138":{"_id":"_1730","style":{"__isSmartRef__":true,"id":2139},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2139":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2140":{"_id":"_1731","style":{"__isSmartRef__":true,"id":2141},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2141":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2142":{"_id":"_1732","style":{"__isSmartRef__":true,"id":2143},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".findPlayer(); ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2143":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2144":{"_id":"_1733","style":{"__isSmartRef__":true,"id":2145},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2145":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2146":{"_id":"_1734","style":{"__isSmartRef__":true,"id":2147},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" cache it here for whole melody","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2147":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2148":{"_id":"_1735","style":{"__isSmartRef__":true,"id":2149},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2149":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2150":{"_id":"_1736","style":{"__isSmartRef__":true,"id":2151},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2151":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2152":{"_id":"_1737","style":{"__isSmartRef__":true,"id":2153},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2153":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2154":{"_id":"_1738","style":{"__isSmartRef__":true,"id":2155},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2155":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2156":{"_id":"_1739","style":{"__isSmartRef__":true,"id":2157},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex < ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2157":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2158":{"_id":"_1740","style":{"__isSmartRef__":true,"id":2159},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2159":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2160":{"_id":"_1741","style":{"__isSmartRef__":true,"id":2161},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2161":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2162":{"_id":"_1742","style":{"__isSmartRef__":true,"id":2163},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2163":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2164":{"_id":"_1743","style":{"__isSmartRef__":true,"id":2165},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"; ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2165":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2166":{"_id":"_1744","style":{"__isSmartRef__":true,"id":2167},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2167":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2168":{"_id":"_1745","style":{"__isSmartRef__":true,"id":2169},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" indicator of completion","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2169":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2170":{"_id":"_1746","style":{"__isSmartRef__":true,"id":2171},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2171":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2172":{"_id":"_1747","style":{"__isSmartRef__":true,"id":2173},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2173":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2174":{"_id":"_1748","style":{"__isSmartRef__":true,"id":2175},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" finalIndex = (startIndex + n) - ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2175":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2176":{"_id":"_1749","style":{"__isSmartRef__":true,"id":2177},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2177":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2178":{"_id":"_1750","style":{"__isSmartRef__":true,"id":2179},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2179":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2180":{"_id":"_1751","style":{"__isSmartRef__":true,"id":2181},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2181":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2182":{"_id":"_1752","style":{"__isSmartRef__":true,"id":2183},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" i = startIndex;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2183":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2184":{"_id":"_1753","style":{"__isSmartRef__":true,"id":2185},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"while","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2185":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2186":{"_id":"_1754","style":{"__isSmartRef__":true,"id":2187},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (i <= finalIndex) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2187":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2188":{"_id":"_1755","style":{"__isSmartRef__":true,"id":2189},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2189":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2190":{"_id":"_1756","style":{"__isSmartRef__":true,"id":2191},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2191":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2192":{"_id":"_1757","style":{"__isSmartRef__":true,"id":2193},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2193":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2194":{"_id":"_1758","style":{"__isSmartRef__":true,"id":2195},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" snd = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2195":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2196":{"_id":"_1759","style":{"__isSmartRef__":true,"id":2197},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2197":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2198":{"_id":"_1760","style":{"__isSmartRef__":true,"id":2199},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds[","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2199":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2200":{"_id":"_1761","style":{"__isSmartRef__":true,"id":2201},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2201":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2202":{"_id":"_1762","style":{"__isSmartRef__":true,"id":2203},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex];\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2203":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2204":{"_id":"_1763","style":{"__isSmartRef__":true,"id":2205},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"while","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2205":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2206":{"_id":"_1764","style":{"__isSmartRef__":true,"id":2207},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (snd.samplesRemaining() <= ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2207":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2208":{"_id":"_1765","style":{"__isSmartRef__":true,"id":2209},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2209":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2210":{"_id":"_1766","style":{"__isSmartRef__":true,"id":2211},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2211":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2212":{"_id":"_1767","style":{"__isSmartRef__":true,"id":2213},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2213":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2214":{"_id":"_1768","style":{"__isSmartRef__":true,"id":2215},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2215":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2216":{"_id":"_1769","style":{"__isSmartRef__":true,"id":2217},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2217":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2218":{"_id":"_1770","style":{"__isSmartRef__":true,"id":2219},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2219":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2220":{"_id":"_1771","style":{"__isSmartRef__":true,"id":2221},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2221":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2222":{"_id":"_1772","style":{"__isSmartRef__":true,"id":2223},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player && ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2223":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2224":{"_id":"_1773","style":{"__isSmartRef__":true,"id":2225},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2225":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2226":{"_id":"_1774","style":{"__isSmartRef__":true,"id":2227},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player.noteSoundOnOff)\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2227":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2228":{"_id":"_1775","style":{"__isSmartRef__":true,"id":2229},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2229":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2230":{"_id":"_1776","style":{"__isSmartRef__":true,"id":2231},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player.noteSoundOnOff(snd, false);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2231":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2232":{"_id":"_1777","style":{"__isSmartRef__":true,"id":2233},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2233":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2234":{"_id":"_1778","style":{"__isSmartRef__":true,"id":2235},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" find next unplayed sound","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2235":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2236":{"_id":"_1779","style":{"__isSmartRef__":true,"id":2237},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2237":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2238":{"_id":"_1780","style":{"__isSmartRef__":true,"id":2239},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2239":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2240":{"_id":"_1781","style":{"__isSmartRef__":true,"id":2241},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2241":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2242":{"_id":"_1782","style":{"__isSmartRef__":true,"id":2243},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2243":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2244":{"_id":"_1783","style":{"__isSmartRef__":true,"id":2245},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex < ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2245":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2246":{"_id":"_1784","style":{"__isSmartRef__":true,"id":2247},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2247":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2248":{"_id":"_1785","style":{"__isSmartRef__":true,"id":2249},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds.length","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2249":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2250":{"_id":"_1786","style":{"__isSmartRef__":true,"id":2251},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"-1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2251":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2252":{"_id":"_1787","style":{"__isSmartRef__":true,"id":2253},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2253":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2254":{"_id":"_1788","style":{"__isSmartRef__":true,"id":2255},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2255":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2256":{"_id":"_1789","style":{"__isSmartRef__":true,"id":2257},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2257":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2258":{"_id":"_1790","style":{"__isSmartRef__":true,"id":2259},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2259":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2260":{"_id":"_1791","style":{"__isSmartRef__":true,"id":2261},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex++;\n snd = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2261":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2262":{"_id":"_1792","style":{"__isSmartRef__":true,"id":2263},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2263":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2264":{"_id":"_1793","style":{"__isSmartRef__":true,"id":2265},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds[","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2265":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2266":{"_id":"_1794","style":{"__isSmartRef__":true,"id":2267},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2267":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2268":{"_id":"_1795","style":{"__isSmartRef__":true,"id":2269},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex];\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2269":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2270":{"_id":"_1796","style":{"__isSmartRef__":true,"id":2271},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2271":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2272":{"_id":"_1797","style":{"__isSmartRef__":true,"id":2273},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2273":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2274":{"_id":"_1798","style":{"__isSmartRef__":true,"id":2275},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2275":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2276":{"_id":"_1799","style":{"__isSmartRef__":true,"id":2277},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player && ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2277":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2278":{"_id":"_1800","style":{"__isSmartRef__":true,"id":2279},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2279":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2280":{"_id":"_1801","style":{"__isSmartRef__":true,"id":2281},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player.noteSoundOnOff)\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2281":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2282":{"_id":"_1802","style":{"__isSmartRef__":true,"id":2283},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2283":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2284":{"_id":"_1803","style":{"__isSmartRef__":true,"id":2285},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player.noteSoundOnOff(snd, true, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2285":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2286":{"_id":"_1804","style":{"__isSmartRef__":true,"id":2287},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2287":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2288":{"_id":"_1805","style":{"__isSmartRef__":true,"id":2289},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".noteColor);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2289":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2290":{"_id":"_1806","style":{"__isSmartRef__":true,"id":2291},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2291":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2292":{"_id":"_1807","style":{"__isSmartRef__":true,"id":2293},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2293":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2294":{"_id":"_1808","style":{"__isSmartRef__":true,"id":2295},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2295":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2296":{"_id":"_1809","style":{"__isSmartRef__":true,"id":2297},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2297":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2298":{"_id":"_1810","style":{"__isSmartRef__":true,"id":2299},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2299":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2300":{"_id":"_1811","style":{"__isSmartRef__":true,"id":2301},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2301":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2302":{"_id":"_1812","style":{"__isSmartRef__":true,"id":2303},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2303":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2304":{"_id":"_1813","style":{"__isSmartRef__":true,"id":2305},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex = -","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2305":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2306":{"_id":"_1814","style":{"__isSmartRef__":true,"id":2307},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2307":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2308":{"_id":"_1815","style":{"__isSmartRef__":true,"id":2309},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2309":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2310":{"_id":"_1816","style":{"__isSmartRef__":true,"id":2311},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2311":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2312":{"_id":"_1817","style":{"__isSmartRef__":true,"id":2313},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"; ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2313":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2314":{"_id":"_1818","style":{"__isSmartRef__":true,"id":2315},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2315":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2316":{"_id":"_1819","style":{"__isSmartRef__":true,"id":2317},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" no more sounds","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2317":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2318":{"_id":"_1820","style":{"__isSmartRef__":true,"id":2319},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2319":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2320":{"_id":"_1821","style":{"__isSmartRef__":true,"id":2321},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2321":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2322":{"_id":"_1823","style":{"__isSmartRef__":true,"id":2323},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2323":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2324":{"_id":"_1824","style":{"__isSmartRef__":true,"id":2325},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2325":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2326":{"_id":"_1825","style":{"__isSmartRef__":true,"id":2327},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2327":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2328":{"_id":"_1826","style":{"__isSmartRef__":true,"id":2329},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2329":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2330":{"_id":"_1827","style":{"__isSmartRef__":true,"id":2331},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2331":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2332":{"_id":"_1828","style":{"__isSmartRef__":true,"id":2333},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2333":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2334":{"_id":"_1829","style":{"__isSmartRef__":true,"id":2335},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" && ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2335":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2336":{"_id":"_1830","style":{"__isSmartRef__":true,"id":2337},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2337":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2338":{"_id":"_1831","style":{"__isSmartRef__":true,"id":2339},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player && ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2339":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2340":{"_id":"_1832","style":{"__isSmartRef__":true,"id":2341},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2341":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2342":{"_id":"_1833","style":{"__isSmartRef__":true,"id":2343},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player.noteSoundOnOff)\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2343":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2344":{"_id":"_1834","style":{"__isSmartRef__":true,"id":2345},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2345":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2346":{"_id":"_1835","style":{"__isSmartRef__":true,"id":2347},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".player.noteSoundOnOff(snd, true, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2347":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2348":{"_id":"_1836","style":{"__isSmartRef__":true,"id":2349},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2349":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2350":{"_id":"_1837","style":{"__isSmartRef__":true,"id":2351},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".noteColor);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2351":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2352":{"_id":"_1838","style":{"__isSmartRef__":true,"id":2353},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2353":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2354":{"_id":"_1839","style":{"__isSmartRef__":true,"id":2355},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" count = (finalIndex - i) + ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2355":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2356":{"_id":"_1840","style":{"__isSmartRef__":true,"id":2357},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2357":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2358":{"_id":"_1841","style":{"__isSmartRef__":true,"id":2359},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2359":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2360":{"_id":"_1842","style":{"__isSmartRef__":true,"id":2361},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2361":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2362":{"_id":"_1843","style":{"__isSmartRef__":true,"id":2363},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" remaining = snd.samplesRemaining();\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2363":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2364":{"_id":"_1844","style":{"__isSmartRef__":true,"id":2365},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2365":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2366":{"_id":"_1845","style":{"__isSmartRef__":true,"id":2367},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (remaining < count) count = remaining;\n snd.mixSamplesToBuffer(count, buffer, i, leftVol, rightVol);\n i += count;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2367":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2368":{"_id":"_1846","style":{"__isSmartRef__":true,"id":2369},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2369":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2370":{"_id":"_1847","style":{"__isSmartRef__":true,"id":2371},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2371":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2372":{"_id":"_1848","style":{"__isSmartRef__":true,"id":2373},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2373":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2374":{"_id":"_1849","style":{"__isSmartRef__":true,"id":2375},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2375":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2376":{"_id":"_1850","style":{"__isSmartRef__":true,"id":2377},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"samplesRemaining:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2377":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2378":{"_id":"_1851","style":{"__isSmartRef__":true,"id":2379},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2379":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2380":{"_id":"_1852","style":{"__isSmartRef__":true,"id":2381},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2381":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2382":{"_id":"_1853","style":{"__isSmartRef__":true,"id":2383},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2383":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2384":{"_id":"_1854","style":{"__isSmartRef__":true,"id":2385},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2385":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2386":{"_id":"_1855","style":{"__isSmartRef__":true,"id":2387},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2387":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2388":{"_id":"_1856","style":{"__isSmartRef__":true,"id":2389},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2389":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2390":{"_id":"_1857","style":{"__isSmartRef__":true,"id":2391},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2391":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2392":{"_id":"_1858","style":{"__isSmartRef__":true,"id":2393},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2393":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2394":{"_id":"_1859","style":{"__isSmartRef__":true,"id":2395},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex < ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2395":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2396":{"_id":"_1860","style":{"__isSmartRef__":true,"id":2397},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2397":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2398":{"_id":"_1861","style":{"__isSmartRef__":true,"id":2399},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2399":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2400":{"_id":"_1862","style":{"__isSmartRef__":true,"id":2401},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2401":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2402":{"_id":"_1863","style":{"__isSmartRef__":true,"id":2403},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2403":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2404":{"_id":"_1864","style":{"__isSmartRef__":true,"id":2405},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2405":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2406":{"_id":"_1865","style":{"__isSmartRef__":true,"id":2407},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2407":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2408":{"_id":"_1866","style":{"__isSmartRef__":true,"id":2409},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2409":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2410":{"_id":"_1867","style":{"__isSmartRef__":true,"id":2411},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2411":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2412":{"_id":"_1868","style":{"__isSmartRef__":true,"id":2413},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"999999","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2413":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2414":{"_id":"_1869","style":{"__isSmartRef__":true,"id":2415},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"; ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2415":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2416":{"_id":"_1870","style":{"__isSmartRef__":true,"id":2417},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"//","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2417":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(128,0,0)"},"2418":{"_id":"_1871","style":{"__isSmartRef__":true,"id":2419},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" really anything > 0 should do","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2419":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2420":{"_id":"_1872","style":{"__isSmartRef__":true,"id":2421},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2421":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2422":{"_id":"_1873","style":{"__isSmartRef__":true,"id":2423},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2423":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2424":{"_id":"_1874","style":{"__isSmartRef__":true,"id":2425},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2425":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2426":{"_id":"_1875","style":{"__isSmartRef__":true,"id":2427},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"initialize:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2427":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2428":{"_id":"_1876","style":{"__isSmartRef__":true,"id":2429},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2429":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2430":{"_id":"_1877","style":{"__isSmartRef__":true,"id":2431},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2431":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2432":{"_id":"_1878","style":{"__isSmartRef__":true,"id":2433},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"($super) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2433":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2434":{"_id":"_1879","style":{"__isSmartRef__":true,"id":2435},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2435":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2436":{"_id":"_1880","style":{"__isSmartRef__":true,"id":2437},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2437":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2438":{"_id":"_1881","style":{"__isSmartRef__":true,"id":2439},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2439":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2440":{"_id":"_1882","style":{"__isSmartRef__":true,"id":2441},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds = [];\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2441":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2442":{"_id":"_1883","style":{"__isSmartRef__":true,"id":2443},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2443":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2444":{"_id":"_1884","style":{"__isSmartRef__":true,"id":2445},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2445":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2446":{"_id":"_1885","style":{"__isSmartRef__":true,"id":2447},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2447":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2448":{"_id":"_1886","style":{"__isSmartRef__":true,"id":2449},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":";\n $super();\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2449":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2450":{"_id":"_1887","style":{"__isSmartRef__":true,"id":2451},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2451":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2452":{"_id":"_1888","style":{"__isSmartRef__":true,"id":2453},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2453":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2454":{"_id":"_1889","style":{"__isSmartRef__":true,"id":2455},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"doControl:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2455":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"2456":{"_id":"_1890","style":{"__isSmartRef__":true,"id":2457},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2457":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2458":{"_id":"_1891","style":{"__isSmartRef__":true,"id":2459},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2459":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2460":{"_id":"_1892","style":{"__isSmartRef__":true,"id":2461},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"($super, msPast) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2461":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2462":{"_id":"_1893","style":{"__isSmartRef__":true,"id":2463},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2463":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2464":{"_id":"_1894","style":{"__isSmartRef__":true,"id":2465},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"\n $super(msPast);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2465":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2466":{"_id":"_1895","style":{"__isSmartRef__":true,"id":2467},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2467":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"2468":{"_id":"_1896","style":{"__isSmartRef__":true,"id":2469},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2469":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2470":{"_id":"_1897","style":{"__isSmartRef__":true,"id":2471},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2471":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2472":{"_id":"_1898","style":{"__isSmartRef__":true,"id":2473},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex >= ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2473":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2474":{"_id":"_1899","style":{"__isSmartRef__":true,"id":2475},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2475":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"2476":{"_id":"_1900","style":{"__isSmartRef__":true,"id":2477},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2477":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2478":{"_id":"_1901","style":{"__isSmartRef__":true,"id":2479},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2479":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2480":{"_id":"_1902","style":{"__isSmartRef__":true,"id":2481},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".sounds[","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2481":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2482":{"_id":"_1903","style":{"__isSmartRef__":true,"id":2483},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2483":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"2484":{"_id":"_1904","style":{"__isSmartRef__":true,"id":2485},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":".soundsIndex].doControl(msPast);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2485":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2486":{"_id":"_1905","style":{"__isSmartRef__":true,"id":2487},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2487":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2488":{"_id":"_1906","style":{"__isSmartRef__":true,"id":2489},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":",\n\n\n\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2489":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2490":{"_id":"_1907","style":{"__isSmartRef__":true,"id":2491},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2491":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"2492":{"_id":"_1908","style":{"__isSmartRef__":true,"id":2493},"chunkOwner":{"__isSmartRef__":true,"id":1924},"storedString":");\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2493":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"2494":{"morph":{"__isSmartRef__":true,"id":1924},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2495":{"scaleVertical":true,"scaleHorizontal":true},"2496":{"sourceObj":{"__isSmartRef__":true,"id":1924},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":1924},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":2497},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2497":{"source":{"__isSmartRef__":true,"id":1924},"target":{"__isSmartRef__":true,"id":1924}},"2498":{"sourceObj":{"__isSmartRef__":true,"id":1924},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setSourceString","varMapping":{"__isSmartRef__":true,"id":2499},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2499":{"source":{"__isSmartRef__":true,"id":1924},"target":{"__isSmartRef__":true,"id":1466}},"2500":{"source":{"__isSmartRef__":true,"id":1466},"target":{"__isSmartRef__":true,"id":1924}},"2501":{"sourceObj":{"__isSmartRef__":true,"id":1466},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":1459},"targetMethodName":"setTextString","varMapping":{"__isSmartRef__":true,"id":2502},"updaterString":"function ($upd, value) { value && $upd(String(value)) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2502":{"source":{"__isSmartRef__":true,"id":1466},"target":{"__isSmartRef__":true,"id":1459}},"2503":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2504},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2505}],"eventHandler":{"__isSmartRef__":true,"id":2507},"_ClipMode":"visible","derivationIds":[],"id":"07013669-2648-46DA-87C4-1F4B74540D63","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,204,0)","_Position":"lively.pt(260.0,136.3)"},"2504":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(300.0,30.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2505":{"style":{"__isSmartRef__":true,"id":2506},"chunkOwner":{"__isSmartRef__":true,"id":2503},"_id":"_1120","storedString":"Saving aboutMe...\nSuccessfully saved\nSuccessfully evaluated aboutMe","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2506":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2507":{"morph":{"__isSmartRef__":true,"id":2503},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2508":{"source":{"__isSmartRef__":true,"id":1459},"target":{"__isSmartRef__":true,"id":1466}},"2509":{"submorphs":[{"__isSmartRef__":true,"id":2510}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2515},"eventHandler":{"__isSmartRef__":true,"id":2516},"_ClipMode":"visible","derivationIds":[],"id":"8484BE77-223B-4DD7-A64D-D74D5936B0DF","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2510},"_PreviousBorderWidth":1,"owner":{"__isSmartRef__":true,"id":1458},"attributeConnections":[{"__isSmartRef__":true,"id":2517}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":2519},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(656.0,0.0)"},"2510":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2511},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2512}],"eventHandler":{"__isSmartRef__":true,"id":2514},"_ClipMode":"hidden","derivationIds":[],"id":"8D5D223A-92EC-41BA-9294-D8F8D8C3FE10","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2509},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"2511":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(98.4,16.5)","_Padding":"lively.rect(2,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2512":{"style":{"__isSmartRef__":true,"id":2513},"chunkOwner":{"__isSmartRef__":true,"id":2510},"_id":"_24","storedString":"Codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2513":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2514":{"morph":{"__isSmartRef__":true,"id":2510},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2515":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(98.4,16.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2516":{"morph":{"__isSmartRef__":true,"id":2509},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2517":{"sourceObj":{"__isSmartRef__":true,"id":2509},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":2518},"converterString":"function () { return URL.codeBase.withFilename('lively/')}","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2518":{"source":{"__isSmartRef__":true,"id":2509},"target":{"__isSmartRef__":true,"id":1466}},"2519":{"scaleVertical":true,"scaleHorizontal":true},"2520":{"submorphs":[{"__isSmartRef__":true,"id":2521}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2526},"eventHandler":{"__isSmartRef__":true,"id":2527},"_ClipMode":"visible","derivationIds":[],"id":"663E7F7A-45EB-4015-BD33-A0B7F2EED5BE","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"__serializedExpressions__":["_Position"],"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":2521},"_PreviousBorderWidth":1,"owner":{"__isSmartRef__":true,"id":1458},"attributeConnections":[{"__isSmartRef__":true,"id":2528}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":2530},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(754.4,0.0)"},"2521":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2522},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2523}],"eventHandler":{"__isSmartRef__":true,"id":2525},"_ClipMode":"hidden","derivationIds":[],"id":"EFDE3651-5819-420A-93A9-C5F23F5F3955","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":2520},"isLabel":true,"_Align":"center","eventsAreIgnored":true,"_TextStylingMode":true,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(0,0,0)"},"2522":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":0,"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(65.6,16.5)","_Padding":"lively.rect(2,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"2523":{"style":{"__isSmartRef__":true,"id":2524},"chunkOwner":{"__isSmartRef__":true,"id":2521},"_id":"_25","storedString":"Local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2524":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2525":{"morph":{"__isSmartRef__":true,"id":2521},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2526":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"_BorderWidth":1,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(65.6,16.5)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"2527":{"morph":{"__isSmartRef__":true,"id":2520},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2528":{"sourceObj":{"__isSmartRef__":true,"id":2520},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1466},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":2529},"converterString":"function () {\n return $world.getUserName() ? $world.getUserDir() : URL.source.getDirectory() }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2529":{"source":{"__isSmartRef__":true,"id":2520},"target":{"__isSmartRef__":true,"id":1466}},"2530":{"scaleVertical":true,"scaleHorizontal":true},"2531":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2532},"eventHandler":{"__isSmartRef__":true,"id":2537},"_ClipMode":"visible","derivationIds":[],"id":"95D57B8D-799B-4C77-B458-660677EC4C45","droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"__serializedExpressions__":["_Position"],"fixed":[{"__isSmartRef__":true,"id":1468},{"__isSmartRef__":true,"id":1482},{"__isSmartRef__":true,"id":1496},{"__isSmartRef__":true,"id":1510},{"__isSmartRef__":true,"id":1524},{"__isSmartRef__":true,"id":1538},{"__isSmartRef__":true,"id":1552}],"scalingBelow":[{"__isSmartRef__":true,"id":1924}],"scalingAbove":[{"__isSmartRef__":true,"id":1573},{"__isSmartRef__":true,"id":1783},{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1877}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":1458},"styleClass":["Browser_resizer"],"layout":{"__isSmartRef__":true,"id":2538},"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,242.0)"},"2532":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_Fill":{"__isSmartRef__":true,"id":2533},"_BorderRadius":3,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,5.5)","_Padding":"lively.rect(0,0,0,0)"},"2533":{"stops":[{"__isSmartRef__":true,"id":2534},{"__isSmartRef__":true,"id":2535},{"__isSmartRef__":true,"id":2536}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2534":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(235,235,235)"},"2535":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(215,215,215)"},"2536":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(184,184,184)"},"2537":{"morph":{"__isSmartRef__":true,"id":2531},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2538":{"scaleVertical":true,"scaleHorizontal":true},"2539":{"__serializedExpressions__":["_Position","_Extent","_Padding","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(820.0,550.0)","_Padding":"lively.rect(0,0,0,0)","_Fill":"Color.rgb(230,230,230)"},"2540":{"morph":{"__isSmartRef__":true,"id":1458},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2541":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"2542":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2543},"eventHandler":{"__isSmartRef__":true,"id":2544},"_ClipMode":"visible","derivationIds":[],"id":"8E85AE8F-1B70-42E3-8102-C3CC707D29E2","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":1359},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2545},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(814.0,562.0)"},"2543":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,14.0)","_Padding":"lively.rect(0,0,0,0)"},"2544":{"morph":{"__isSmartRef__":true,"id":2542},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2545":{"onDragStart":{"__isSmartRef__":true,"id":2546},"onDrag":{"__isSmartRef__":true,"id":2553},"onDragEnd":{"__isSmartRef__":true,"id":2560}},"2546":{"varMapping":{"__isSmartRef__":true,"id":2547},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":2552},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2547":{"this":{"__isSmartRef__":true,"id":2542},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2548}},"2548":{"$super":{"__isSmartRef__":true,"id":2549}},"2549":{"varMapping":{"__isSmartRef__":true,"id":2550},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2551},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2550":{"obj":{"__isSmartRef__":true,"id":2542},"name":"onDragStart"},"2551":{},"2552":{},"2553":{"varMapping":{"__isSmartRef__":true,"id":2554},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n //console.log(\"WindowExtent: \"+this.owner.getExtent().x+\" , \"+this.owner.getExtent().y);\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":2559},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2554":{"this":{"__isSmartRef__":true,"id":2542},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2555}},"2555":{"$super":{"__isSmartRef__":true,"id":2556}},"2556":{"varMapping":{"__isSmartRef__":true,"id":2557},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2558},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2557":{"obj":{"__isSmartRef__":true,"id":2542},"name":"onDrag"},"2558":{},"2559":{},"2560":{"varMapping":{"__isSmartRef__":true,"id":2561},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignBottomReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":2566},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2561":{"this":{"__isSmartRef__":true,"id":2542},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2562}},"2562":{"$super":{"__isSmartRef__":true,"id":2563}},"2563":{"varMapping":{"__isSmartRef__":true,"id":2564},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2565},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2564":{"obj":{"__isSmartRef__":true,"id":2542},"name":"onDragEnd"},"2565":{},"2566":{},"2567":{"_BorderWidth":1,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Padding","_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(828.0,576.0)"},"2568":{"morph":{"__isSmartRef__":true,"id":1359},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2569":{"adjustForNewBounds":true},"2570":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2571},"id":2,"eventHandler":{"__isSmartRef__":true,"id":2572},"droppingEnabled":false,"halosEnabled":false,"_world":{"__isSmartRef__":true,"id":0},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"lastScrollTime":1357407856670,"_ClipMode":"visible","carriesGrabbedMorphs":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.HandMorph","__SourceModuleName__":"Global.lively.morphic.Events","withLayers":["Global.NoMagnetsLayer"],"_Position":"lively.pt(1104.0,340.0)"},"2571":{"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2.0,2.0)","_Fill":"Color.rgb(204,0,0)","_Padding":"lively.rect(0,0,0,0)"},"2572":{"morph":{"__isSmartRef__":true,"id":2570},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2573":{"_ClipMode":"visible","__serializedExpressions__":["_Position","_Extent","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(2800.0,2800.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"2574":{"morph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2575":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converterString":null,"updaterString":"function ($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }","varMapping":{"__isSmartRef__":true,"id":2576},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2576":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"2577":{"protocol":"http:","hostname":"localhost","pathname":"/webwerkstatt/blank.xhtml","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"2578":{"submorphs":[{"__isSmartRef__":true,"id":2579}],"scripts":[],"id":"92912E30-2B79-4748-8E21-583CD57D344E","shape":{"__isSmartRef__":true,"id":2590},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":2591},"eventHandler":{"__isSmartRef__":true,"id":2689},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"59692BC3-6C7B-4E23-B820-8699260EA722","486BB935-1313-4103-B2A8-642B19437478","18AFFD44-46CD-489E-B1D6-DED43E2B6B06","2608C892-2204-4981-9A87-8E749F8944AB","5535861F-4EA2-44AB-8A40-0538124E0AAC","16C292B3-86E8-4622-B516-27C48263B8CC","87731A20-D455-44D0-97E5-98A7CFD4E417","A17081E7-E597-47ED-BD32-6E4D206BD7D7","CFB4A44C-BFEA-4584-BCBA-AE2A56739200","76B3DD9B-8D01-42BA-A574-AB99D5F899BB","1EBC5512-8F54-4B24-998C-69A285EC8533","DD1165C7-6C1A-4361-A4AE-FCF6F31152FD","4D6D36E8-48F3-408A-B03C-202E4DC182BD","5F3B3E0F-BBC6-4DDA-BAA0-7EFC05FF2011","E0A6B33B-767A-4532-9021-892414520200","F5F5E2B1-5FF0-4E09-B323-AE88A3920B8D","0C7E832A-A741-430F-B295-8BC181D066FE","472AED3B-CB76-49BD-BF49-354A2D568F86","A7C52F65-D140-4791-880F-F7584C7BB570","3516412B-8B36-4E52-9416-6B7FB358BDC2","1840CACC-078C-4795-AD3F-E9D6F8D557A0","1FEDCA25-0131-46FA-840F-DC5F1B05C6CA","C620CED3-0AE9-4097-9AA7-2706A042F9C9","679A861B-40E0-4DB2-B22F-95B454C6978D","FEF39B3C-E634-4825-BAB8-2D44FE647B03"],"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":2690},"prevScroll":[0,0],"moved":true,"_Rotation":0,"_Scale":1,"headRevision":146469,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2691},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","distanceToDragEvent":"lively.pt(171.0,-13.0)"},"2579":{"submorphs":[{"__isSmartRef__":true,"id":2580}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2586},"id":"2AD95FF2-C092-4E8D-B7B6-28895A49E8B9","eventHandler":{"__isSmartRef__":true,"id":2587},"droppingEnabled":true,"halosEnabled":true,"__serializedExpressions__":["_Position","distanceToDragEvent"],"name":"ProgressIndicator","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2588},"derivationIds":[520,"071F18BE-FF28-40F5-ACAD-1916E0D25C38","DF185A10-743D-45FC-B9C2-76E12D908BCF","BF125D2C-596A-4C1E-A5F8-DAE4801E9497","3CEE8CFF-B8F1-4B4B-A405-CB583080252A","D0652878-8F9C-4591-8A82-296898AACDB6","31441DDF-2220-43BE-A99F-69E1FEC68030","14A90039-0D3E-46DC-8445-D42B8E02EB42","681EF5DE-A344-4114-B2F3-B96CE3872524","C0381116-5116-4F33-B082-A411D0E4534E","24E9581E-B008-46EE-9CBC-D5190E100D98","C69D1041-2C5E-48FE-B04C-04E66450658A","4830945B-4FFF-4564-9424-34D7995DAE60","8602C233-B3E7-4682-9B0E-D7549761D934","B4E0E11F-2BED-462E-B708-89D63971856E","EE0144C2-D016-4390-8A67-4E7DEF171C83","F44DF6E4-5F27-440E-AB5F-3721C0A10CA6","73FC6648-DAAF-4673-8CF4-7DA219513F22","B78EB1B5-780C-45F7-B0A7-B988B52B1FF1","DFDB8CD1-72F7-40F4-849B-1F9B866277AB","66111105-B1FC-41F7-BF70-D45118C9E09F","02420416-1E35-4831-AABB-91CD0460CA1A","7C6B2EB2-4510-4A8E-BAFF-5CF0040DD7F5","0503F5A1-1732-4610-9A5A-920D658CA766","07C5AE03-36AD-4849-BACD-27D7D9A2CCF2","9FFF9D73-931C-404C-AA4B-5AC2E7C53504"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":2578},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":2589},"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(113.5,81.0)","distanceToDragEvent":"lively.pt(39.0,-11.0)"},"2580":{"submorphs":[],"scripts":[],"id":"2153523F-40C7-48BB-AEFB-150D73CCBF00","shape":{"__isSmartRef__":true,"id":2581},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"__serializedExpressions__":["_Position","textColor","_Padding","distanceToDragEvent"],"_MaxTextWidth":257,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":14,"name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":2582},"textChunks":[{"__isSmartRef__":true,"id":2583}],"charsReplaced":"MorphName","lastFindLoc":18,"priorSelectionRange":[9,0],"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":2585},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_ClipMode":"visible","derivationIds":[355,"023045B3-2D6B-4425-89FB-F4806D527BE0","DC0C2365-868C-41AE-8369-51C31E91493E","C6D9D314-86A1-4015-970B-F6787F535E1A","6AA4552E-2E85-447E-9033-99D5AA1A94BC","D94BE49C-8A3E-4F1F-BF28-FEDD9B40D213","AA8F0470-654C-4AA2-8135-4607F5429AC5","E0BAABCC-FFB2-4EDF-BAE5-C63CC99B6A97","1A86AE17-73AE-442E-AB36-DD90C6DFC8BC","EF750075-E964-4CD3-B6A4-161511E1D058","CED69CBF-FFA5-45E7-B333-FBACE4F278AC","E56978C1-7424-4C10-8168-11FD3237B540","D5AB2532-A4DC-42D6-AF17-99CBBCEAA848","245866CB-598A-4172-A3A0-A06D4D26C6AD","43B0F12E-5793-43AA-80E1-496774E0EBA6","1B776A8C-0413-475F-8EBD-120BBD91D2BB","F84F2C9A-8003-4E81-833A-83F48C92F3B8","3124B389-9FA4-4348-BC5D-0DFF9C59CD1B","1A1BCBAC-D7CC-4BAE-B8C2-7C693F7327A1","1CB201BA-5E0B-4771-821A-139FA2AEFBC2","195520FA-4816-47A4-B0F5-BA890AFD9DF9","0D15F28A-24C9-46B7-89C5-6D2354728AC1","316FE9D3-62EC-4FD6-9B0F-FFA622B79575","739F3743-9BE1-48C8-813D-C0BFB0DCACA6","01877B3B-7DA7-4222-B011-7B5F4E501862","B8FE7DEE-9568-4BE6-BA12-EA674BA79E08"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":2579},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(-109.0,38.0)","textColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(5,5,0,0)","distanceToDragEvent":"lively.pt(179.0,-11.0)"},"2581":{"fill":null,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"_BorderWidth":0,"_ClipMode":"visible","_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(257.0,23.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,0,0,0)"},"2582":{"partsSpaceName":"PartsBin/Basic","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2583":{"style":{"__isSmartRef__":true,"id":2584},"chunkOwner":{"__isSmartRef__":true,"id":2580},"storedString":"loading part","_id":"_10","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2584":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2585":{"morph":{"__isSmartRef__":true,"id":2580},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2586":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"_ImageURL":"data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"_ClipMode":"visible","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Image","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(31.0,31.0)","_Padding":"lively.rect(0,0,0,0)"},"2587":{"morph":{"__isSmartRef__":true,"id":2579},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2588":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2589":{"centeredHorizontal":true,"centeredVertical":true},"2590":{"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(266.0,223.0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"2591":{"partsSpaceName":"PartsBin/iPadWidgets","comment":"This is a placeholder to indicate that a morph is being loaded. It will be replaced by the morph as soon as the requested morph finished loading.","migrationLevel":4,"partName":"LoadingMorph","changes":[{"__isSmartRef__":true,"id":2592},{"__isSmartRef__":true,"id":2594},{"__isSmartRef__":true,"id":2596},{"__isSmartRef__":true,"id":2598},{"__isSmartRef__":true,"id":2600},{"__isSmartRef__":true,"id":2602},{"__isSmartRef__":true,"id":2604},{"__isSmartRef__":true,"id":2606},{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2610},{"__isSmartRef__":true,"id":2612},{"__isSmartRef__":true,"id":2614},{"__isSmartRef__":true,"id":2616},{"__isSmartRef__":true,"id":2618},{"__isSmartRef__":true,"id":2620},{"__isSmartRef__":true,"id":2622},{"__isSmartRef__":true,"id":2624},{"__isSmartRef__":true,"id":2626},{"__isSmartRef__":true,"id":2628},{"__isSmartRef__":true,"id":2630},{"__isSmartRef__":true,"id":2632},{"__isSmartRef__":true,"id":2634},{"__isSmartRef__":true,"id":2636},{"__isSmartRef__":true,"id":2638},{"__isSmartRef__":true,"id":2640},{"__isSmartRef__":true,"id":2642},{"__isSmartRef__":true,"id":2644},{"__isSmartRef__":true,"id":2646},{"__isSmartRef__":true,"id":2648},{"__isSmartRef__":true,"id":2650},{"__isSmartRef__":true,"id":2652},{"__isSmartRef__":true,"id":2654},{"__isSmartRef__":true,"id":2656},{"__isSmartRef__":true,"id":2658},{"__isSmartRef__":true,"id":2660},{"__isSmartRef__":true,"id":2662},{"__isSmartRef__":true,"id":2664},{"__isSmartRef__":true,"id":2666},{"__isSmartRef__":true,"id":2668},{"__isSmartRef__":true,"id":2670},{"__isSmartRef__":true,"id":2672},{"__isSmartRef__":true,"id":2674},{"__isSmartRef__":true,"id":2676},{"__isSmartRef__":true,"id":2678},{"__isSmartRef__":true,"id":2680},{"__isSmartRef__":true,"id":2682},{"__isSmartRef__":true,"id":2684},{"__isSmartRef__":true,"id":2686}],"revisionOnLoad":151069,"lastModifiedDate":{"__isSmartRef__":true,"id":2688},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2592":{"date":{"__isSmartRef__":true,"id":2593},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"2593":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:02:04 GMT-0800 (PST)"},"2594":{"date":{"__isSmartRef__":true,"id":2595},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"2595":{"isSerializedDate":true,"string":"Wed Feb 22 2012 03:43:10 GMT-0800 (PST)"},"2596":{"date":{"__isSmartRef__":true,"id":2597},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"2597":{"isSerializedDate":true,"string":"Wed Feb 22 2012 03:36:14 GMT-0800 (PST)"},"2598":{"date":{"__isSmartRef__":true,"id":2599},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"2599":{"isSerializedDate":true,"string":"Wed Feb 22 2012 03:23:04 GMT-0800 (PST)"},"2600":{"date":{"__isSmartRef__":true,"id":2601},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"2601":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:59:45 GMT-0800 (PST)"},"2602":{"date":{"__isSmartRef__":true,"id":2603},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"2603":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:59:10 GMT-0800 (PST)"},"2604":{"date":{"__isSmartRef__":true,"id":2605},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"2605":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:56:54 GMT-0800 (PST)"},"2606":{"date":{"__isSmartRef__":true,"id":2607},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"2607":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:51:05 GMT-0800 (PST)"},"2608":{"date":{"__isSmartRef__":true,"id":2609},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"2609":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:47:19 GMT-0800 (PST)"},"2610":{"date":{"__isSmartRef__":true,"id":2611},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"2611":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:46:25 GMT-0800 (PST)"},"2612":{"date":{"__isSmartRef__":true,"id":2613},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"2613":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:45:05 GMT-0800 (PST)"},"2614":{"date":{"__isSmartRef__":true,"id":2615},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"2615":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:37:15 GMT-0800 (PST)"},"2616":{"date":{"__isSmartRef__":true,"id":2617},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"2617":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:35:29 GMT-0800 (PST)"},"2618":{"date":{"__isSmartRef__":true,"id":2619},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"2619":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:31:52 GMT-0800 (PST)"},"2620":{"date":{"__isSmartRef__":true,"id":2621},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"2621":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:14:10 GMT-0800 (PST)"},"2622":{"date":{"__isSmartRef__":true,"id":2623},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"2623":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:02:56 GMT-0800 (PST)"},"2624":{"date":{"__isSmartRef__":true,"id":2625},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"2625":{"isSerializedDate":true,"string":"Wed Feb 22 2012 02:01:50 GMT-0800 (PST)"},"2626":{"date":{"__isSmartRef__":true,"id":2627},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"2627":{"isSerializedDate":true,"string":"Wed Feb 22 2012 01:55:44 GMT-0800 (PST)"},"2628":{"date":{"__isSmartRef__":true,"id":2629},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"2629":{"isSerializedDate":true,"string":"Fri Feb 10 2012 00:45:55 GMT-0800 (PST)"},"2630":{"date":{"__isSmartRef__":true,"id":2631},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"2631":{"isSerializedDate":true,"string":"Wed Feb 08 2012 02:41:50 GMT-0800 (PST)"},"2632":{"date":{"__isSmartRef__":true,"id":2633},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"2633":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:13:49 GMT-0800 (PST)"},"2634":{"date":{"__isSmartRef__":true,"id":2635},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"2635":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:22:07 GMT-0800 (PST)"},"2636":{"date":{"__isSmartRef__":true,"id":2637},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"2637":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:55:14 GMT-0800 (PST)"},"2638":{"date":{"__isSmartRef__":true,"id":2639},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"2639":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:54:35 GMT-0800 (PST)"},"2640":{"date":{"__isSmartRef__":true,"id":2641},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"2641":{"isSerializedDate":true,"string":"Thu Feb 02 2012 04:26:01 GMT-0800 (PST)"},"2642":{"date":{"__isSmartRef__":true,"id":2643},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"2643":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:04:01 GMT-0800 (PST)"},"2644":{"date":{"__isSmartRef__":true,"id":2645},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"2645":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:28:30 GMT-0800 (PST)"},"2646":{"date":{"__isSmartRef__":true,"id":2647},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"2647":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:32:58 GMT-0800 (PST)"},"2648":{"date":{"__isSmartRef__":true,"id":2649},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"2649":{"isSerializedDate":true,"string":"Thu Feb 02 2012 05:41:00 GMT-0800 (PST)"},"2650":{"date":{"__isSmartRef__":true,"id":2651},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"2651":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:24:30 GMT-0800 (PST)"},"2652":{"date":{"__isSmartRef__":true,"id":2653},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"2653":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:26:23 GMT-0800 (PST)"},"2654":{"date":{"__isSmartRef__":true,"id":2655},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"2655":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:48:04 GMT-0800 (PST)"},"2656":{"date":{"__isSmartRef__":true,"id":2657},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"2657":{"isSerializedDate":true,"string":"Thu Feb 02 2012 06:53:49 GMT-0800 (PST)"},"2658":{"date":{"__isSmartRef__":true,"id":2659},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"2659":{"isSerializedDate":true,"string":"Thu Feb 02 2012 07:49:48 GMT-0800 (PST)"},"2660":{"date":{"__isSmartRef__":true,"id":2661},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"2661":{"isSerializedDate":true,"string":"Thu Feb 02 2012 07:58:43 GMT-0800 (PST)"},"2662":{"date":{"__isSmartRef__":true,"id":2663},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"2663":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:04:28 GMT-0800 (PST)"},"2664":{"date":{"__isSmartRef__":true,"id":2665},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"2665":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:10:27 GMT-0800 (PST)"},"2666":{"date":{"__isSmartRef__":true,"id":2667},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"2667":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:31:50 GMT-0800 (PST)"},"2668":{"date":{"__isSmartRef__":true,"id":2669},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"2669":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:38:26 GMT-0800 (PST)"},"2670":{"date":{"__isSmartRef__":true,"id":2671},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"2671":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:44:11 GMT-0800 (PST)"},"2672":{"date":{"__isSmartRef__":true,"id":2673},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"2673":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:48:14 GMT-0800 (PST)"},"2674":{"date":{"__isSmartRef__":true,"id":2675},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"2675":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:49:47 GMT-0800 (PST)"},"2676":{"date":{"__isSmartRef__":true,"id":2677},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"2677":{"isSerializedDate":true,"string":"Tue Feb 07 2012 02:59:48 GMT-0800 (PST)"},"2678":{"date":{"__isSmartRef__":true,"id":2679},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"2679":{"isSerializedDate":true,"string":"Tue Feb 07 2012 03:02:33 GMT-0800 (PST)"},"2680":{"date":{"__isSmartRef__":true,"id":2681},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"2681":{"isSerializedDate":true,"string":"Tue Feb 07 2012 03:03:42 GMT-0800 (PST)"},"2682":{"date":{"__isSmartRef__":true,"id":2683},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"2683":{"isSerializedDate":true,"string":"Thu Feb 09 2012 11:20:11 GMT-0800 (PST)"},"2684":{"date":{"__isSmartRef__":true,"id":2685},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"2685":{"isSerializedDate":true,"string":"Fri Mar 16 2012 07:37:34 GMT-0700 (PDT)"},"2686":{"date":{"__isSmartRef__":true,"id":2687},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"2687":{"isSerializedDate":true,"string":"Fri Mar 16 2012 07:42:29 GMT-0700 (PDT)"},"2688":{"isSerializedDate":true,"string":"Thu Sep 06 2012 19:04:46 GMT-0700 (PDT)"},"2689":{"morph":{"__isSmartRef__":true,"id":2578},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2690":{"adjustForNewBounds":true},"2691":{"loadPart":{"__isSmartRef__":true,"id":2692},"loadFinished":{"__isSmartRef__":true,"id":2696},"loadPartByName":{"__isSmartRef__":true,"id":2700}},"2692":{"varMapping":{"__isSmartRef__":true,"id":2693},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n \n if(typeof isAsync === \"function\") {\n this.callback = isAsync;\n }\n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":2694},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2693":{"this":{"__isSmartRef__":true,"id":2578}},"2694":{"timestamp":{"__isSmartRef__":true,"id":2695},"user":"sstamm","tags":[]},"2695":{"isSerializedDate":true,"string":"Fri Mar 16 2012 07:42:18 GMT-0700 (PDT)"},"2696":{"varMapping":{"__isSmartRef__":true,"id":2697},"source":"function loadFinished(part) {\n if(this.owner === $world.firstHand()) {\n $world.firstHand().removeAllMorphs();\n } else {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n this.remove();\n }\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n if(this.callback) {\n this.callback(part);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2698},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2697":{"this":{"__isSmartRef__":true,"id":2578}},"2698":{"timestamp":{"__isSmartRef__":true,"id":2699},"user":"sstamm","tags":[]},"2699":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:01:53 GMT-0800 (PST)"},"2700":{"varMapping":{"__isSmartRef__":true,"id":2701},"source":"function loadPartByName(partName, optPartsSpaceName, isAsync) {\n var partItem = lively.PartsBin.getPartItem(partName, optPartsSpaceName);\n return this.loadPart(partItem, isAsync);\n}","funcProperties":{"__isSmartRef__":true,"id":2702},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2701":{"this":{"__isSmartRef__":true,"id":2578}},"2702":{"timestamp":{"__isSmartRef__":true,"id":2703},"user":"sstamm","tags":[]},"2703":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:03:18 GMT-0800 (PST)"},"2704":{"isSerializedDate":true,"string":"Mon Dec 17 2012 23:54:35 GMT-0800 (PST)"},"isSimplifiedRegistry":true}}]]>