0) {\n\t\t\t\t\tif (queue[0].length === 1) {\n\t\t\t\t\t\tthat.emit(queue[0], object);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthat.emit(queue[0][0], object);\n\t\t\t\t\t\tqueue[0][1](object);\n\t\t\t\t\t}\n\t\t\t\t\tqueue.shift(0);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\tthis.exports.disconnect = function() {\n\t\t\tsys.log(\"ending connection\");\n\t\t\tconnection.end();\n\t\t};\n\n\t\tthis.exports.previous = function(callback) {\n\t\t\tsys.log(\"selecting previous\");\n\t\t\tsendCommand('previous', callback);\n\t\t};\n\n\t\tthis.exports.next = function(callback) {\n\t\t\tsys.log(\"selecting next\");\n\t\t\tsendCommand('next', callback);\n\t\t};\n\n\t\tthis.exports.currentSong = function(callback) {\n\t\t\tsys.log(\"fetching current song information\");\n\t\t\tsendCommand('currentsong', callback);\n\t\t};\n\n\t\tsendCommand = function(command, callback) {\n\t\t\tif (callback) {\n\t\t\t\tqueue.push([command, callback]);\n\t\t\t} else {\n\t\t\t\tqueue.push([command]);\n\t\t\t}\n\t\t\tconnection.write(command + '\\n');\n\t\t};\n\n\t\tthis.buildObject = function(string) {\n\t\t\tvar pairs = string.split('\\n'),\n\t\t\t\tobject = {};\n\n\t\t\tpairs.forEach(function(pair) {\n\t\t\t\tvar kv = pair.split(/: /);\n\t\t\t\tvar key = kv[0].toLowerCase(),\n\t\t\t\t\tvalue = kv[1];\n\n\t\t\t object[key] = value;\n\t\t\t});\n\n\t\t\treturn object;\n\t\t};\n\n\t}\n},\n'music', {\n\n\tnext: function(callback) {\n\t\tthis.exports.next(callback);\n\t},\n\n\tprevious: function(callback) {\n\t\tthis.exports.previous(callback);\n\t},\n\n\tcurrentSong: function(callback) {\n\t\tthis.exports.currentSong(callback);\n\t},\n\n\tdisconnect: function() {\n\t\tthis.exports.disconnect();\n\t},\n\n\tconnect: function(callback) {\n\t\tthis.exports.connect(this.host, this.port, callback);\n\t}\n});\n\nnew MartinsPlayground().listen();","sourceString":"var sys = require('sys'),\n\tnet = require('net'),\n\tevents = require('events');\n\nvar livelyServer = require('./livelyServer');\n\nrequire('./miniprototype');\nrequire('./Base');\n\nlivelyServer.AbstractHandler.subclass('MartinsPlayground',\n'initializing', {\n\tport: 8100,\n\n\tinitialize: function($super) {\n\t\t$super();\n\t\tthis.mpc = new MPDClient('localhost', 6600);\n\t\tthis.mpc.connect(function() {\n\t\t\tsys.puts(\"mpc connection established.\");\n\t\t});\n\t}\n},\n'crap', {\n\n\thelloWorldEnd: function(request, response, content) {\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\t\tsys.puts(\"where is this going?\");\n\t\tresponse.write(\"Hello World!\");\n\t\tresponse.end(\"\\n\");\n\t},\n\n\t\n\n\tdebugOutputEnd: function(request, response, content) {\n\t\t\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\n\t\tthis.mpc.previous(function(data) {\n\n\t\t\tresponse.write(data);\n\t\t\tresponse.end(\"\\n\\n\");\n\t\t});\n\t}\n});\n\n/**\n * Copyright (c) 2010 Danny Tatom \n * Copyright (c) 2011 Martin Czuchra \n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n **/\n\nObject.subclass('MPDClient',\n\n'initializing', {\n\n\tinitialize: function($super, host, port) {\n\t\t// no initialize in object? $super();\n\t\tvar connection, queue = [];\n\n\t\tthis.host = host;\n\t\tthis.port = port;\n\t\tthis.exports = new events.EventEmitter();\n\n\t\tthis.exports.connect = function(h, p, callback) {\n\t\t\tvar that = this;\n\t\t\tsys.log(\"attempting to connect to \" + h + \":\" + p);\n\t\t\tconnection = net.createConnection(p, h);\n\t\t\tconnection.setEncoding('utf8');\n\n\t\t\tconnection.addListener('connect', function() {\n\t\t\t\tsys.log(\"calling connect callback\");\n\t\t\t\tcallback();\n\t\t\t});\n\n\t\t\tconnection.addListener('data', function(data) {\n\t\t\t\tsys.log(\"receiving data\");\n\t\t\t\tvar object = buildObject(data);\n\n\t\t\t\tif (queue.length > 0) {\n\t\t\t\t\tif (queue[0].length === 1) {\n\t\t\t\t\t\tthat.emit(queue[0], object);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthat.emit(queue[0][0], object);\n\t\t\t\t\t\tqueue[0][1](object);\n\t\t\t\t\t}\n\t\t\t\t\tqueue.shift(0);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\tthis.exports.disconnect = function() {\n\t\t\tsys.log(\"ending connection\");\n\t\t\tconnection.end();\n\t\t};\n\n\t\tthis.exports.previous = function(callback) {\n\t\t\tsys.log(\"selecting previous\");\n\t\t\tsendCommand('previous', callback);\n\t\t};\n\n\t\tthis.exports.next = function(callback) {\n\t\t\tsys.log(\"selecting next\");\n\t\t\tsendCommand('next', callback);\n\t\t};\n\n\t\tthis.exports.currentSong = function(callback) {\n\t\t\tsys.log(\"fetching current song information\");\n\t\t\tsendCommand('currentsong', callback);\n\t\t};\n\n\t\tsendCommand = function(command, callback) {\n\t\t\tif (callback) {\n\t\t\t\tqueue.push([command, callback]);\n\t\t\t} else {\n\t\t\t\tqueue.push([command]);\n\t\t\t}\n\t\t\tconnection.write(command + '\\n');\n\t\t};\n\n\t\tthis.buildObject = function(string) {\n\t\t\tvar pairs = string.split('\\n'),\n\t\t\t\tobject = {};\n\n\t\t\tpairs.forEach(function(pair) {\n\t\t\t\tvar kv = pair.split(/: /);\n\t\t\t\tvar key = kv[0].toLowerCase(),\n\t\t\t\t\tvalue = kv[1];\n\n\t\t\t object[key] = value;\n\t\t\t});\n\n\t\t\treturn object;\n\t\t};\n\n\t}\n},\n'music', {\n\n\tnext: function(callback) {\n\t\tthis.exports.next(callback);\n\t},\n\n\tprevious: function(callback) {\n\t\tthis.exports.previous(callback);\n\t},\n\n\tcurrentSong: function(callback) {\n\t\tthis.exports.currentSong(callback);\n\t},\n\n\tdisconnect: function() {\n\t\tthis.exports.disconnect();\n\t},\n\n\tconnect: function(callback) {\n\t\tthis.exports.connect(this.host, this.port, callback);\n\t}\n});\n\nnew MartinsPlayground().listen();","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"_rootNode":{"__isSmartRef__":true,"id":784},"Pane1Selection":{"__isSmartRef__":true,"id":802},"pane1Selection":{"__isSmartRef__":true,"id":802},"Pane2Selection":null,"pane2Selection":null,"Pane3Selection":null,"pane3Selection":null,"Pane4Selection":null,"pane4Selection":null,"Pane4Content":["-----"],"Pane3Content":["-----"],"Pane2Content":[],"Pane1Content":[{"__isSmartRef__":true,"id":781},{"__isSmartRef__":true,"id":813},{"__isSmartRef__":true,"id":814},{"__isSmartRef__":true,"id":815},{"__isSmartRef__":true,"id":816},{"__isSmartRef__":true,"id":817},{"__isSmartRef__":true,"id":818},{"__isSmartRef__":true,"id":819},{"__isSmartRef__":true,"id":820},{"__isSmartRef__":true,"id":821},{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":823},{"__isSmartRef__":true,"id":824},{"__isSmartRef__":true,"id":825},{"__isSmartRef__":true,"id":826},{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":828},{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":830},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":832}],"Pane1Menu":[["Add to world requirements"],["check for redundant klass definitions"],["remove"],["show all"],["reparse"],["open ChangeList viewer"],["show versions"],["load"]],"Pane2Menu":[],"Pane3Menu":[],"currentModuleName":"server/nodejs/MartinsPlayground.js","__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser","__rawNodeInfo__":{"tagName":"widget","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"46:lively.ide.SystemBrowser","namespaceURI":null}]}},"219":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":220},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"220":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":221}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"145:ButtonMorph","origin":{"__isSmartRef__":true,"id":233},"shape":{"__isSmartRef__":true,"id":234},"priorExtent":{"__isSmartRef__":true,"id":239},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":235},"lighterFill":{"__isSmartRef__":true,"id":240},"command":{"__isSmartRef__":true,"id":219},"label":{"__isSmartRef__":true,"id":221},"pvtCachedTransform":{"__isSmartRef__":true,"id":243},"attributeConnections":[{"__isSmartRef__":true,"id":244},{"__isSmartRef__":true,"id":245}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":246},"nextNavigableSibling":{"__isSmartRef__":true,"id":248},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"145:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(0,385.64374755859376)","namespaceURI":null}]}},"221":{"textString":"Add module","savedTextString":"Add module","submorphs":[{"__isSmartRef__":true,"id":222}],"owner":{"__isSmartRef__":true,"id":220},"_livelyDataWrapperId_":"148:TextMorph","origin":{"__isSmartRef__":true,"id":227},"shape":{"__isSmartRef__":true,"id":228},"textContent":{"__isSmartRef__":true,"id":229},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":230},"textSelection":{"__isSmartRef__":true,"id":222},"priorExtent":{"__isSmartRef__":true,"id":231},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":232},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"148:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(30.532810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"222":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":221},"_livelyDataWrapperId_":"150:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":223},"shape":{"__isSmartRef__":true,"id":224},"priorExtent":{"__isSmartRef__":true,"id":225},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":226},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"150:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"223":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"224":{"_livelyDataWrapperId_":"149:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"149:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"225":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"226":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"227":{"x":30.532810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"228":{"_x":0,"_y":0,"_width":66,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"66","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"229":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"230":{"a":1,"b":0,"c":0,"d":1,"e":30.532810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"231":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"232":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"233":{"x":0,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"234":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":235},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#146:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"235":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":238}],"refcount":1,"_livelyDataWrapperId_":"146:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"146:lively.paint.LinearGradient","namespaceURI":null}]}},"236":{"x":0,"y":1,"width":0,"height":-1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"237":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"238":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"239":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"240":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":241},{"__isSmartRef__":true,"id":242}],"refcount":0,"_livelyDataWrapperId_":"147:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"147:lively.paint.LinearGradient","namespaceURI":null}]}},"241":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"242":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"243":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"244":{"sourceObj":{"__isSmartRef__":true,"id":220},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":219},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"245":{"sourceObj":{"__isSmartRef__":true,"id":220},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":220},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"246":{"model":{"__isSmartRef__":true,"id":247},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"247":{},"248":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":249}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"151:ButtonMorph","origin":{"__isSmartRef__":true,"id":261},"shape":{"__isSmartRef__":true,"id":262},"priorExtent":{"__isSmartRef__":true,"id":266},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":263},"lighterFill":{"__isSmartRef__":true,"id":267},"command":{"__isSmartRef__":true,"id":270},"label":{"__isSmartRef__":true,"id":249},"pvtCachedTransform":{"__isSmartRef__":true,"id":271},"attributeConnections":[{"__isSmartRef__":true,"id":272},{"__isSmartRef__":true,"id":273}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":274},"nextNavigableSibling":{"__isSmartRef__":true,"id":276},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"151:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(124.06562151227679,385.64374755859376)","namespaceURI":null}]}},"249":{"textString":"Load all","savedTextString":"Load all","submorphs":[{"__isSmartRef__":true,"id":250}],"owner":{"__isSmartRef__":true,"id":248},"_livelyDataWrapperId_":"154:TextMorph","origin":{"__isSmartRef__":true,"id":255},"shape":{"__isSmartRef__":true,"id":256},"textContent":{"__isSmartRef__":true,"id":257},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":258},"textSelection":{"__isSmartRef__":true,"id":250},"priorExtent":{"__isSmartRef__":true,"id":259},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":260},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"154:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(41.532810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"250":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":249},"_livelyDataWrapperId_":"156:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":251},"shape":{"__isSmartRef__":true,"id":252},"priorExtent":{"__isSmartRef__":true,"id":253},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":254},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"156:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"251":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"252":{"_livelyDataWrapperId_":"155:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"155:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"253":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"254":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"255":{"x":41.532810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"256":{"_x":0,"_y":0,"_width":44,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"44","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"257":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"258":{"a":1,"b":0,"c":0,"d":1,"e":41.532810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"259":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"260":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"261":{"x":124.06562151227679,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"262":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":263},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#152:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"263":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":264},{"__isSmartRef__":true,"id":265}],"refcount":1,"_livelyDataWrapperId_":"152:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"152:lively.paint.LinearGradient","namespaceURI":null}]}},"264":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"265":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"266":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"267":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":268},{"__isSmartRef__":true,"id":269}],"refcount":0,"_livelyDataWrapperId_":"153:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"153:lively.paint.LinearGradient","namespaceURI":null}]}},"268":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"269":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"270":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":248},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"271":{"a":1,"b":0,"c":0,"d":1,"e":124.06562151227679,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"272":{"sourceObj":{"__isSmartRef__":true,"id":248},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":270},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"273":{"sourceObj":{"__isSmartRef__":true,"id":248},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":248},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"274":{"model":{"__isSmartRef__":true,"id":275},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"275":{},"276":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":277}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"157:ButtonMorph","origin":{"__isSmartRef__":true,"id":289},"shape":{"__isSmartRef__":true,"id":290},"priorExtent":{"__isSmartRef__":true,"id":294},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":291},"lighterFill":{"__isSmartRef__":true,"id":295},"command":{"__isSmartRef__":true,"id":298},"label":{"__isSmartRef__":true,"id":277},"pvtCachedTransform":{"__isSmartRef__":true,"id":299},"attributeConnections":[{"__isSmartRef__":true,"id":300},{"__isSmartRef__":true,"id":301}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":302},"nextNavigableSibling":{"__isSmartRef__":true,"id":304},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"157:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(248.13124302455358,385.64374755859376)","namespaceURI":null}]}},"277":{"textString":"LineNo","savedTextString":"LineNo","submorphs":[{"__isSmartRef__":true,"id":278}],"owner":{"__isSmartRef__":true,"id":276},"_livelyDataWrapperId_":"160:TextMorph","origin":{"__isSmartRef__":true,"id":283},"shape":{"__isSmartRef__":true,"id":284},"textContent":{"__isSmartRef__":true,"id":285},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":286},"textSelection":{"__isSmartRef__":true,"id":278},"priorExtent":{"__isSmartRef__":true,"id":287},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":288},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"160:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(43.532810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"278":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":277},"_livelyDataWrapperId_":"162:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":279},"shape":{"__isSmartRef__":true,"id":280},"priorExtent":{"__isSmartRef__":true,"id":281},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":282},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"162:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"279":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"280":{"_livelyDataWrapperId_":"161:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"161:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"281":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"282":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"283":{"x":43.532810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"284":{"_x":0,"_y":0,"_width":40,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"40","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"285":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"286":{"a":1,"b":0,"c":0,"d":1,"e":43.532810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"287":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"288":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"289":{"x":248.13124302455358,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"290":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":291},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#158:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"291":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":292},{"__isSmartRef__":true,"id":293}],"refcount":1,"_livelyDataWrapperId_":"158:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"158:lively.paint.LinearGradient","namespaceURI":null}]}},"292":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"293":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"294":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"295":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":296},{"__isSmartRef__":true,"id":297}],"refcount":0,"_livelyDataWrapperId_":"159:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"159:lively.paint.LinearGradient","namespaceURI":null}]}},"296":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"297":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"298":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":276},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"299":{"a":1,"b":0,"c":0,"d":1,"e":248.13124302455358,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"300":{"sourceObj":{"__isSmartRef__":true,"id":276},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":298},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"301":{"sourceObj":{"__isSmartRef__":true,"id":276},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":276},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"302":{"model":{"__isSmartRef__":true,"id":303},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"303":{},"304":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":305}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"163:ButtonMorph","origin":{"__isSmartRef__":true,"id":317},"shape":{"__isSmartRef__":true,"id":318},"priorExtent":{"__isSmartRef__":true,"id":322},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":319},"lighterFill":{"__isSmartRef__":true,"id":323},"command":{"__isSmartRef__":true,"id":326},"label":{"__isSmartRef__":true,"id":305},"pvtCachedTransform":{"__isSmartRef__":true,"id":327},"attributeConnections":[{"__isSmartRef__":true,"id":328},{"__isSmartRef__":true,"id":329}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":330},"nextNavigableSibling":{"__isSmartRef__":true,"id":332},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"163:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(372.1968645368304,385.64374755859376)","namespaceURI":null}]}},"305":{"textString":"Refresh","savedTextString":"Refresh","submorphs":[{"__isSmartRef__":true,"id":306}],"owner":{"__isSmartRef__":true,"id":304},"_livelyDataWrapperId_":"166:TextMorph","origin":{"__isSmartRef__":true,"id":311},"shape":{"__isSmartRef__":true,"id":312},"textContent":{"__isSmartRef__":true,"id":313},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":314},"textSelection":{"__isSmartRef__":true,"id":306},"priorExtent":{"__isSmartRef__":true,"id":315},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":316},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"166:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(42.032810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"306":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":305},"_livelyDataWrapperId_":"168:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":307},"shape":{"__isSmartRef__":true,"id":308},"priorExtent":{"__isSmartRef__":true,"id":309},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":310},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"168:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"307":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"308":{"_livelyDataWrapperId_":"167:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"167:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"309":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"310":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"311":{"x":42.032810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"312":{"_x":0,"_y":0,"_width":43,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"43","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"313":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"314":{"a":1,"b":0,"c":0,"d":1,"e":42.032810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"315":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"316":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"317":{"x":372.1968645368304,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"318":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":319},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#164:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"319":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":320},{"__isSmartRef__":true,"id":321}],"refcount":1,"_livelyDataWrapperId_":"164:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"164:lively.paint.LinearGradient","namespaceURI":null}]}},"320":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"321":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"322":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"323":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":324},{"__isSmartRef__":true,"id":325}],"refcount":0,"_livelyDataWrapperId_":"165:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"165:lively.paint.LinearGradient","namespaceURI":null}]}},"324":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"325":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"326":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":304},"__LivelyClassName__":"lively.ide.RefreshCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"327":{"a":1,"b":0,"c":0,"d":1,"e":372.1968645368304,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"328":{"sourceObj":{"__isSmartRef__":true,"id":304},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":326},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"329":{"sourceObj":{"__isSmartRef__":true,"id":304},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":304},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"330":{"model":{"__isSmartRef__":true,"id":331},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"331":{},"332":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":333}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"169:ButtonMorph","origin":{"__isSmartRef__":true,"id":345},"shape":{"__isSmartRef__":true,"id":346},"priorExtent":{"__isSmartRef__":true,"id":350},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":347},"lighterFill":{"__isSmartRef__":true,"id":351},"command":{"__isSmartRef__":true,"id":354},"label":{"__isSmartRef__":true,"id":333},"pvtCachedTransform":{"__isSmartRef__":true,"id":355},"attributeConnections":[{"__isSmartRef__":true,"id":356},{"__isSmartRef__":true,"id":357}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":358},"nextNavigableSibling":{"__isSmartRef__":true,"id":360},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"169:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(496.26248604910717,385.64374755859376)","namespaceURI":null}]}},"333":{"textString":"Eval on","savedTextString":"Eval on","submorphs":[{"__isSmartRef__":true,"id":334}],"owner":{"__isSmartRef__":true,"id":332},"_livelyDataWrapperId_":"172:TextMorph","origin":{"__isSmartRef__":true,"id":339},"shape":{"__isSmartRef__":true,"id":340},"textContent":{"__isSmartRef__":true,"id":341},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":342},"textSelection":{"__isSmartRef__":true,"id":334},"priorExtent":{"__isSmartRef__":true,"id":343},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":344},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"172:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(43.032810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"334":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":333},"_livelyDataWrapperId_":"174:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":335},"shape":{"__isSmartRef__":true,"id":336},"priorExtent":{"__isSmartRef__":true,"id":337},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":338},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"174:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"335":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"336":{"_livelyDataWrapperId_":"173:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"173:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"337":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"338":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"339":{"x":43.032810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"340":{"_x":0,"_y":0,"_width":41,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"41","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"341":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"342":{"a":1,"b":0,"c":0,"d":1,"e":43.032810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"343":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"344":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"345":{"x":496.26248604910717,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"346":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":347},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#170:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"347":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":348},{"__isSmartRef__":true,"id":349}],"refcount":1,"_livelyDataWrapperId_":"170:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"170:lively.paint.LinearGradient","namespaceURI":null}]}},"348":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"349":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"350":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"351":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":352},{"__isSmartRef__":true,"id":353}],"refcount":0,"_livelyDataWrapperId_":"171:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"171:lively.paint.LinearGradient","namespaceURI":null}]}},"352":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"353":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"354":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":332},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"355":{"a":1,"b":0,"c":0,"d":1,"e":496.26248604910717,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"356":{"sourceObj":{"__isSmartRef__":true,"id":332},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":354},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"357":{"sourceObj":{"__isSmartRef__":true,"id":332},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":332},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"358":{"model":{"__isSmartRef__":true,"id":359},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"359":{},"360":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":361}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"175:ButtonMorph","origin":{"__isSmartRef__":true,"id":373},"shape":{"__isSmartRef__":true,"id":374},"priorExtent":{"__isSmartRef__":true,"id":378},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":375},"lighterFill":{"__isSmartRef__":true,"id":379},"command":{"__isSmartRef__":true,"id":382},"label":{"__isSmartRef__":true,"id":361},"pvtCachedTransform":{"__isSmartRef__":true,"id":383},"attributeConnections":[{"__isSmartRef__":true,"id":384},{"__isSmartRef__":true,"id":385}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":386},"nextNavigableSibling":{"__isSmartRef__":true,"id":388},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"175:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(620.328107561384,385.64374755859376)","namespaceURI":null}]}},"361":{"textString":"Sort","savedTextString":"Sort","submorphs":[{"__isSmartRef__":true,"id":362}],"owner":{"__isSmartRef__":true,"id":360},"_livelyDataWrapperId_":"178:TextMorph","origin":{"__isSmartRef__":true,"id":367},"shape":{"__isSmartRef__":true,"id":368},"textContent":{"__isSmartRef__":true,"id":369},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":370},"textSelection":{"__isSmartRef__":true,"id":362},"priorExtent":{"__isSmartRef__":true,"id":371},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":372},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"178:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(52.532810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"362":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":361},"_livelyDataWrapperId_":"180:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":363},"shape":{"__isSmartRef__":true,"id":364},"priorExtent":{"__isSmartRef__":true,"id":365},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":366},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"180:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"363":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"364":{"_livelyDataWrapperId_":"179:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"179:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"365":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"366":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"367":{"x":52.532810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"368":{"_x":0,"_y":0,"_width":22,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"22","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"369":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"370":{"a":1,"b":0,"c":0,"d":1,"e":52.532810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"371":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"372":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"373":{"x":620.328107561384,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"374":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":375},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#176:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"375":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":376},{"__isSmartRef__":true,"id":377}],"refcount":1,"_livelyDataWrapperId_":"176:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"176:lively.paint.LinearGradient","namespaceURI":null}]}},"376":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"377":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"378":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"379":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":380},{"__isSmartRef__":true,"id":381}],"refcount":0,"_livelyDataWrapperId_":"177:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"177:lively.paint.LinearGradient","namespaceURI":null}]}},"380":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"381":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"382":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":360},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"383":{"a":1,"b":0,"c":0,"d":1,"e":620.328107561384,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"384":{"sourceObj":{"__isSmartRef__":true,"id":360},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":382},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"385":{"sourceObj":{"__isSmartRef__":true,"id":360},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":360},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"386":{"model":{"__isSmartRef__":true,"id":387},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"387":{},"388":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":389}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"181:ButtonMorph","origin":{"__isSmartRef__":true,"id":402},"shape":{"__isSmartRef__":true,"id":403},"priorExtent":{"__isSmartRef__":true,"id":407},"value":false,"normalFill":{"__isSmartRef__":true,"id":404},"lighterFill":{"__isSmartRef__":true,"id":408},"command":{"__isSmartRef__":true,"id":411},"label":{"__isSmartRef__":true,"id":389},"pvtCachedTransform":{"__isSmartRef__":true,"id":412},"attributeConnections":[{"__isSmartRef__":true,"id":413},{"__isSmartRef__":true,"id":414}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"modelPlug":{"__isSmartRef__":true,"id":415},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"181:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(744.3937290736608,385.64374755859376)","namespaceURI":null}]}},"389":{"textString":"View as...","savedTextString":"View as...","submorphs":[{"__isSmartRef__":true,"id":390}],"owner":{"__isSmartRef__":true,"id":388},"_livelyDataWrapperId_":"184:TextMorph","origin":{"__isSmartRef__":true,"id":395},"shape":{"__isSmartRef__":true,"id":396},"textContent":{"__isSmartRef__":true,"id":397},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":399},"textSelection":{"__isSmartRef__":true,"id":390},"priorExtent":{"__isSmartRef__":true,"id":400},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":401},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"textColor":{"__isSmartRef__":true,"id":398},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"184:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(37.532810756138396,14.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"390":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":389},"_livelyDataWrapperId_":"186:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":391},"shape":{"__isSmartRef__":true,"id":392},"priorExtent":{"__isSmartRef__":true,"id":393},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":394},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"186:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"391":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"392":{"_livelyDataWrapperId_":"185:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"185:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"393":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"394":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"395":{"x":37.532810756138396,"y":14.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"396":{"_x":0,"_y":0,"_width":52,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"52","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"397":{"_fill":{"__isSmartRef__":true,"id":398},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(102,102,102)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"398":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"399":{"a":1,"b":0,"c":0,"d":1,"e":37.532810756138396,"f":14.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"400":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"401":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"402":{"x":744.3937290736608,"y":385.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"403":{"_x":0,"_y":0,"_width":124.06562151227679,"_height":39,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":404},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"124.06562151227679","namespaceURI":null},{"key":"height","value":"39","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#182:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"404":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":405},{"__isSmartRef__":true,"id":406}],"refcount":1,"_livelyDataWrapperId_":"182:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"182:lively.paint.LinearGradient","namespaceURI":null}]}},"405":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"406":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"407":{"x":124.06562151227679,"y":39,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"408":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":409},{"__isSmartRef__":true,"id":410}],"refcount":0,"_livelyDataWrapperId_":"183:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"183:lively.paint.LinearGradient","namespaceURI":null}]}},"409":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"410":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"411":{"browser":{"__isSmartRef__":true,"id":218},"button":{"__isSmartRef__":true,"id":388},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"412":{"a":1,"b":0,"c":0,"d":1,"e":744.3937290736608,"f":385.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"413":{"sourceObj":{"__isSmartRef__":true,"id":388},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":411},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"414":{"sourceObj":{"__isSmartRef__":true,"id":388},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":388},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"415":{"model":{"__isSmartRef__":true,"id":416},"setIsActive":"setIsActive","getIsActive":"getIsActive","__LivelyClassName__":"ModelPlug","__SourceModuleName__":"Global.lively.OldBase"},"416":{},"417":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"418":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"419":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"420":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"421":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"422":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"423":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/server/nodejs/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"424":{"sourceObj":{"__isSmartRef__":true,"id":218},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":425},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"425":{"baseWidth":220.11483764648438,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":426},{"__isSmartRef__":true,"id":441},{"__isSmartRef__":true,"id":454},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":480},{"__isSmartRef__":true,"id":493},{"__isSmartRef__":true,"id":506},{"__isSmartRef__":true,"id":519},{"__isSmartRef__":true,"id":532},{"__isSmartRef__":true,"id":545},{"__isSmartRef__":true,"id":558},{"__isSmartRef__":true,"id":571},{"__isSmartRef__":true,"id":586},{"__isSmartRef__":true,"id":599},{"__isSmartRef__":true,"id":612},{"__isSmartRef__":true,"id":625},{"__isSmartRef__":true,"id":638},{"__isSmartRef__":true,"id":651},{"__isSmartRef__":true,"id":664},{"__isSmartRef__":true,"id":677},{"__isSmartRef__":true,"id":690}],"owner":{"__isSmartRef__":true,"id":703},"_livelyDataWrapperId_":"63:FilterableListMorph","origin":{"__isSmartRef__":true,"id":778},"shape":{"__isSmartRef__":true,"id":779},"priorExtent":{"__isSmartRef__":true,"id":780},"itemList":[{"__isSmartRef__":true,"id":781},{"__isSmartRef__":true,"id":813},{"__isSmartRef__":true,"id":814},{"__isSmartRef__":true,"id":815},{"__isSmartRef__":true,"id":816},{"__isSmartRef__":true,"id":817},{"__isSmartRef__":true,"id":818},{"__isSmartRef__":true,"id":819},{"__isSmartRef__":true,"id":820},{"__isSmartRef__":true,"id":821},{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":823},{"__isSmartRef__":true,"id":824},{"__isSmartRef__":true,"id":825},{"__isSmartRef__":true,"id":826},{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":828},{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":830},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":832}],"selectedLineNo":11,"selection":{"__isSmartRef__":true,"id":833},"pvtCachedTransform":{"__isSmartRef__":true,"id":834},"savedFill":null,"filter":{"__isSmartRef__":true,"id":835},"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":836},{"__isSmartRef__":true,"id":837},{"__isSmartRef__":true,"id":838},{"__isSmartRef__":true,"id":839}],"doNotSerialize":["$$selection","$$getMenu"],"doNotCopyProperties":["$$selection","$$getMenu"],"savedTextColor":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"63:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"426":{"textString":"tests/","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":427}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"64:TextMorph","origin":{"__isSmartRef__":true,"id":432},"shape":{"__isSmartRef__":true,"id":433},"textContent":{"__isSmartRef__":true,"id":434},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":435},"textSelection":{"__isSmartRef__":true,"id":427},"priorExtent":{"__isSmartRef__":true,"id":436},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":437},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":438},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"64:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"427":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":426},"_livelyDataWrapperId_":"66:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":428},"shape":{"__isSmartRef__":true,"id":429},"priorExtent":{"__isSmartRef__":true,"id":430},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":431},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"66:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"428":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"429":{"_livelyDataWrapperId_":"65:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"65:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"430":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"431":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"432":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"433":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"434":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"435":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"436":{"x":205.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"437":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"438":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"439":{"onMouseDown":"onMouseDown","onMouseMove":"onMouseMove","onMouseUp":"onMouseUp"},"440":{"x":0,"y":1.5,"width":0,"height":-1.5,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"441":{"textString":"../","savedTextString":"../","submorphs":[{"__isSmartRef__":true,"id":442}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"187:TextMorph","origin":{"__isSmartRef__":true,"id":447},"shape":{"__isSmartRef__":true,"id":448},"textContent":{"__isSmartRef__":true,"id":449},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":450},"textSelection":{"__isSmartRef__":true,"id":442},"priorExtent":{"__isSmartRef__":true,"id":451},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":452},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":453},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"187:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,22.2)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"442":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":441},"_livelyDataWrapperId_":"189:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":443},"shape":{"__isSmartRef__":true,"id":444},"priorExtent":{"__isSmartRef__":true,"id":445},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":446},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"189:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"443":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"444":{"_livelyDataWrapperId_":"188:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"188:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"445":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"446":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"447":{"x":3,"y":22.2,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"448":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"449":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"450":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":22.2,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"451":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"452":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"453":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"454":{"textString":"Base.js (not parsed)","savedTextString":"Base.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":455}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"190:TextMorph","origin":{"__isSmartRef__":true,"id":460},"shape":{"__isSmartRef__":true,"id":461},"textContent":{"__isSmartRef__":true,"id":462},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":463},"textSelection":{"__isSmartRef__":true,"id":455},"priorExtent":{"__isSmartRef__":true,"id":464},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":465},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":466},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"190:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,39.9)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"455":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":454},"_livelyDataWrapperId_":"192:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":456},"shape":{"__isSmartRef__":true,"id":457},"priorExtent":{"__isSmartRef__":true,"id":458},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":459},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"192:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"456":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"457":{"_livelyDataWrapperId_":"191:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"191:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"458":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"459":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"460":{"x":3,"y":39.9,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"461":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"462":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"463":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":39.9,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"464":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"465":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"466":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"467":{"textString":"CodeSearchServer.js (not parsed)","savedTextString":"CodeSearchServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":468}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"193:TextMorph","origin":{"__isSmartRef__":true,"id":473},"shape":{"__isSmartRef__":true,"id":474},"textContent":{"__isSmartRef__":true,"id":475},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":476},"textSelection":{"__isSmartRef__":true,"id":468},"priorExtent":{"__isSmartRef__":true,"id":477},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":478},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":479},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"193:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,57.599999999999994)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"468":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":467},"_livelyDataWrapperId_":"195:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":469},"shape":{"__isSmartRef__":true,"id":470},"priorExtent":{"__isSmartRef__":true,"id":471},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":472},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"195:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"469":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"470":{"_livelyDataWrapperId_":"194:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"194:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"471":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"472":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"473":{"x":3,"y":57.599999999999994,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"474":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"475":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"476":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":57.599999999999994,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"477":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"478":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"479":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"480":{"textString":"CommandLineServer.js (not parsed)","savedTextString":"CommandLineServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":481}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"196:TextMorph","origin":{"__isSmartRef__":true,"id":486},"shape":{"__isSmartRef__":true,"id":487},"textContent":{"__isSmartRef__":true,"id":488},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":489},"textSelection":{"__isSmartRef__":true,"id":481},"priorExtent":{"__isSmartRef__":true,"id":490},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":491},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":492},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"196:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,75.3)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"481":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":480},"_livelyDataWrapperId_":"198:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":482},"shape":{"__isSmartRef__":true,"id":483},"priorExtent":{"__isSmartRef__":true,"id":484},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":485},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"198:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"482":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"483":{"_livelyDataWrapperId_":"197:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"197:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"484":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"485":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"486":{"x":3,"y":75.3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"487":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"488":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"489":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":75.3,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"490":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"491":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"492":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"493":{"textString":"DatabaseQueryServer.js (not parsed)","savedTextString":"DatabaseQueryServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":494}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"199:TextMorph","origin":{"__isSmartRef__":true,"id":499},"shape":{"__isSmartRef__":true,"id":500},"textContent":{"__isSmartRef__":true,"id":501},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":502},"textSelection":{"__isSmartRef__":true,"id":494},"priorExtent":{"__isSmartRef__":true,"id":503},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":504},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":505},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"199:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,93)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"494":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":493},"_livelyDataWrapperId_":"201:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":495},"shape":{"__isSmartRef__":true,"id":496},"priorExtent":{"__isSmartRef__":true,"id":497},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":498},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"201:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"495":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"496":{"_livelyDataWrapperId_":"200:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"200:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"497":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"498":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"499":{"x":3,"y":93,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"500":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"501":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"502":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":93,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"503":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"504":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"505":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"506":{"textString":"EventTrackerServer.js (not parsed)","savedTextString":"EventTrackerServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":507}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"202:TextMorph","origin":{"__isSmartRef__":true,"id":512},"shape":{"__isSmartRef__":true,"id":513},"textContent":{"__isSmartRef__":true,"id":514},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":515},"textSelection":{"__isSmartRef__":true,"id":507},"priorExtent":{"__isSmartRef__":true,"id":516},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":517},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":518},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"202:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,110.7)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"507":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":506},"_livelyDataWrapperId_":"204:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":508},"shape":{"__isSmartRef__":true,"id":509},"priorExtent":{"__isSmartRef__":true,"id":510},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":511},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"204:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"508":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"509":{"_livelyDataWrapperId_":"203:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"203:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"510":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"511":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"512":{"x":3,"y":110.7,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"513":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"514":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"515":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":110.7,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"516":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"517":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"518":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"519":{"textString":"LaTeXServer.js (not parsed)","savedTextString":"LaTeXServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":520}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"205:TextMorph","origin":{"__isSmartRef__":true,"id":525},"shape":{"__isSmartRef__":true,"id":526},"textContent":{"__isSmartRef__":true,"id":527},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":528},"textSelection":{"__isSmartRef__":true,"id":520},"priorExtent":{"__isSmartRef__":true,"id":529},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":530},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":531},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"205:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,128.4)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"520":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":519},"_livelyDataWrapperId_":"207:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":521},"shape":{"__isSmartRef__":true,"id":522},"priorExtent":{"__isSmartRef__":true,"id":523},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":524},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"207:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"521":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"522":{"_livelyDataWrapperId_":"206:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"206:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"523":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"524":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"525":{"x":3,"y":128.4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"526":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"527":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"528":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":128.4,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"529":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"530":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"531":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"532":{"textString":"livelyServer.js (not parsed)","savedTextString":"livelyServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":533}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"208:TextMorph","origin":{"__isSmartRef__":true,"id":538},"shape":{"__isSmartRef__":true,"id":539},"textContent":{"__isSmartRef__":true,"id":540},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":541},"textSelection":{"__isSmartRef__":true,"id":533},"priorExtent":{"__isSmartRef__":true,"id":542},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":543},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":544},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"208:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,146.1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"533":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":532},"_livelyDataWrapperId_":"210:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":534},"shape":{"__isSmartRef__":true,"id":535},"priorExtent":{"__isSmartRef__":true,"id":536},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":537},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"210:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"534":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"535":{"_livelyDataWrapperId_":"209:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"209:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"536":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"537":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"538":{"x":3,"y":146.1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"539":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"540":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"541":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":146.1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"542":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"543":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"544":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"545":{"textString":"LKLoader.js (not parsed)","savedTextString":"LKLoader.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":546}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"211:TextMorph","origin":{"__isSmartRef__":true,"id":551},"shape":{"__isSmartRef__":true,"id":552},"textContent":{"__isSmartRef__":true,"id":553},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":554},"textSelection":{"__isSmartRef__":true,"id":546},"priorExtent":{"__isSmartRef__":true,"id":555},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":556},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":557},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"211:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,163.79999999999998)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"546":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":545},"_livelyDataWrapperId_":"213:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":547},"shape":{"__isSmartRef__":true,"id":548},"priorExtent":{"__isSmartRef__":true,"id":549},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":550},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"213:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"547":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"548":{"_livelyDataWrapperId_":"212:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"212:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"549":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"550":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"551":{"x":3,"y":163.79999999999998,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"552":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"553":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"554":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":163.79999999999998,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"555":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"556":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"557":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"558":{"textString":"LoadingServer.js (not parsed)","savedTextString":"LoadingServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":559}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"214:TextMorph","origin":{"__isSmartRef__":true,"id":564},"shape":{"__isSmartRef__":true,"id":565},"textContent":{"__isSmartRef__":true,"id":566},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":567},"textSelection":{"__isSmartRef__":true,"id":559},"priorExtent":{"__isSmartRef__":true,"id":568},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":569},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":570},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"214:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,181.49999999999997)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"559":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":558},"_livelyDataWrapperId_":"216:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":560},"shape":{"__isSmartRef__":true,"id":561},"priorExtent":{"__isSmartRef__":true,"id":562},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":563},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"216:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"560":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"561":{"_livelyDataWrapperId_":"215:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"215:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"562":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"563":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"564":{"x":3,"y":181.49999999999997,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"565":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"566":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"567":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":181.49999999999997,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"568":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"569":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"570":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"571":{"textString":"MartinsPlayground.js","savedTextString":"MartinsPlayground.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":572}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"217:TextMorph","origin":{"__isSmartRef__":true,"id":577},"shape":{"__isSmartRef__":true,"id":578},"textContent":{"__isSmartRef__":true,"id":580},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":582},"textSelection":{"__isSmartRef__":true,"id":572},"priorExtent":{"__isSmartRef__":true,"id":583},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":584},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":585},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"textColor":{"__isSmartRef__":true,"id":581},"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"217:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,199.19999999999996)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"572":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":571},"_livelyDataWrapperId_":"219:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":573},"shape":{"__isSmartRef__":true,"id":574},"priorExtent":{"__isSmartRef__":true,"id":575},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":576},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"219:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"573":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"574":{"_livelyDataWrapperId_":"218:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"218:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"575":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"576":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"577":{"x":3,"y":199.19999999999996,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"578":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":579},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(83,130,161)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"579":{"r":0.3254901960784314,"g":0.5098039215686274,"b":0.6313725490196078,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"580":{"_fill":{"__isSmartRef__":true,"id":581},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"581":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"582":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":199.19999999999996,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"583":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"584":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"585":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"586":{"textString":"MasterServer.js (not parsed)","savedTextString":"MasterServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":587}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"220:TextMorph","origin":{"__isSmartRef__":true,"id":592},"shape":{"__isSmartRef__":true,"id":593},"textContent":{"__isSmartRef__":true,"id":594},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":595},"textSelection":{"__isSmartRef__":true,"id":587},"priorExtent":{"__isSmartRef__":true,"id":596},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":597},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":598},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"220:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,216.89999999999995)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"587":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":586},"_livelyDataWrapperId_":"222:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":588},"shape":{"__isSmartRef__":true,"id":589},"priorExtent":{"__isSmartRef__":true,"id":590},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":591},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"222:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"588":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"589":{"_livelyDataWrapperId_":"221:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"221:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"590":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"591":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"592":{"x":3,"y":216.89999999999995,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"593":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"594":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"595":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":216.89999999999995,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"596":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"597":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"598":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"599":{"textString":"miniprototype.js (not parsed)","savedTextString":"miniprototype.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":600}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"223:TextMorph","origin":{"__isSmartRef__":true,"id":605},"shape":{"__isSmartRef__":true,"id":606},"textContent":{"__isSmartRef__":true,"id":607},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":608},"textSelection":{"__isSmartRef__":true,"id":600},"priorExtent":{"__isSmartRef__":true,"id":609},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":610},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":611},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"223:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,234.59999999999994)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"600":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":599},"_livelyDataWrapperId_":"225:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":601},"shape":{"__isSmartRef__":true,"id":602},"priorExtent":{"__isSmartRef__":true,"id":603},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":604},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"225:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"601":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"602":{"_livelyDataWrapperId_":"224:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"224:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"603":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"604":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"605":{"x":3,"y":234.59999999999994,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"606":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"607":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"608":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":234.59999999999994,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"609":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"610":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"611":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"612":{"textString":"OAuthServer.js (not parsed)","savedTextString":"OAuthServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":613}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"226:TextMorph","origin":{"__isSmartRef__":true,"id":618},"shape":{"__isSmartRef__":true,"id":619},"textContent":{"__isSmartRef__":true,"id":620},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":621},"textSelection":{"__isSmartRef__":true,"id":613},"priorExtent":{"__isSmartRef__":true,"id":622},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":623},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":624},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"226:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,252.29999999999993)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"613":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":612},"_livelyDataWrapperId_":"228:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":614},"shape":{"__isSmartRef__":true,"id":615},"priorExtent":{"__isSmartRef__":true,"id":616},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":617},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"228:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"614":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"615":{"_livelyDataWrapperId_":"227:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"227:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"616":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"617":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"618":{"x":3,"y":252.29999999999993,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"619":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"620":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"621":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":252.29999999999993,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"622":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"623":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"624":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"625":{"textString":"PDFCreator.js (not parsed)","savedTextString":"PDFCreator.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":626}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"229:TextMorph","origin":{"__isSmartRef__":true,"id":631},"shape":{"__isSmartRef__":true,"id":632},"textContent":{"__isSmartRef__":true,"id":633},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":634},"textSelection":{"__isSmartRef__":true,"id":626},"priorExtent":{"__isSmartRef__":true,"id":635},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":636},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":637},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"229:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,269.99999999999994)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"626":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":625},"_livelyDataWrapperId_":"231:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":627},"shape":{"__isSmartRef__":true,"id":628},"priorExtent":{"__isSmartRef__":true,"id":629},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":630},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"231:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"627":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"628":{"_livelyDataWrapperId_":"230:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"230:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"629":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"630":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"631":{"x":3,"y":269.99999999999994,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"632":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"633":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"634":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":269.99999999999994,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"635":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"636":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"637":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"638":{"textString":"SandboxServer.js (not parsed)","savedTextString":"SandboxServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":639}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"232:TextMorph","origin":{"__isSmartRef__":true,"id":644},"shape":{"__isSmartRef__":true,"id":645},"textContent":{"__isSmartRef__":true,"id":646},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":647},"textSelection":{"__isSmartRef__":true,"id":639},"priorExtent":{"__isSmartRef__":true,"id":648},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":649},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":650},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"232:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,287.69999999999993)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"639":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":638},"_livelyDataWrapperId_":"234:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":640},"shape":{"__isSmartRef__":true,"id":641},"priorExtent":{"__isSmartRef__":true,"id":642},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":643},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"234:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"640":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"641":{"_livelyDataWrapperId_":"233:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"233:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"642":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"643":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"644":{"x":3,"y":287.69999999999993,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"645":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"646":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"647":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":287.69999999999993,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"648":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"649":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"650":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"651":{"textString":"simpleChat.js (not parsed)","savedTextString":"simpleChat.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":652}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"235:TextMorph","origin":{"__isSmartRef__":true,"id":657},"shape":{"__isSmartRef__":true,"id":658},"textContent":{"__isSmartRef__":true,"id":659},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":660},"textSelection":{"__isSmartRef__":true,"id":652},"priorExtent":{"__isSmartRef__":true,"id":661},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":662},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":663},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"235:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,305.3999999999999)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"652":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":651},"_livelyDataWrapperId_":"237:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":653},"shape":{"__isSmartRef__":true,"id":654},"priorExtent":{"__isSmartRef__":true,"id":655},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":656},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"237:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"653":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"654":{"_livelyDataWrapperId_":"236:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"236:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"655":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"656":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"657":{"x":3,"y":305.3999999999999,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"658":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"659":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"660":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":305.3999999999999,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"661":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"662":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"663":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"664":{"textString":"TestServer.js (not parsed)","savedTextString":"TestServer.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":665}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"238:TextMorph","origin":{"__isSmartRef__":true,"id":670},"shape":{"__isSmartRef__":true,"id":671},"textContent":{"__isSmartRef__":true,"id":672},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":673},"textSelection":{"__isSmartRef__":true,"id":665},"priorExtent":{"__isSmartRef__":true,"id":674},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":675},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":676},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"238:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,323.0999999999999)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"665":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":664},"_livelyDataWrapperId_":"240:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":666},"shape":{"__isSmartRef__":true,"id":667},"priorExtent":{"__isSmartRef__":true,"id":668},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":669},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"240:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"666":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"667":{"_livelyDataWrapperId_":"239:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"239:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"668":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"669":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"670":{"x":3,"y":323.0999999999999,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"671":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"672":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"673":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":323.0999999999999,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"674":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"675":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"676":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"677":{"textString":"WebInterface.js (not parsed)","savedTextString":"WebInterface.js (not parsed)","submorphs":[{"__isSmartRef__":true,"id":678}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"241:TextMorph","origin":{"__isSmartRef__":true,"id":683},"shape":{"__isSmartRef__":true,"id":684},"textContent":{"__isSmartRef__":true,"id":685},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":686},"textSelection":{"__isSmartRef__":true,"id":678},"priorExtent":{"__isSmartRef__":true,"id":687},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":688},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":689},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"241:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,340.7999999999999)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"678":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":677},"_livelyDataWrapperId_":"243:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":679},"shape":{"__isSmartRef__":true,"id":680},"priorExtent":{"__isSmartRef__":true,"id":681},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":682},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"243:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"679":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"680":{"_livelyDataWrapperId_":"242:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"242:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"681":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"682":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"683":{"x":3,"y":340.7999999999999,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"684":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"685":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"686":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":340.7999999999999,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"687":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"688":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"689":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"690":{"textString":"Local code","savedTextString":"Local code","submorphs":[{"__isSmartRef__":true,"id":691}],"owner":{"__isSmartRef__":true,"id":425},"_livelyDataWrapperId_":"244:TextMorph","origin":{"__isSmartRef__":true,"id":696},"shape":{"__isSmartRef__":true,"id":697},"textContent":{"__isSmartRef__":true,"id":698},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":699},"textSelection":{"__isSmartRef__":true,"id":691},"priorExtent":{"__isSmartRef__":true,"id":700},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":701},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":702},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"244:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,358.4999999999999)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"691":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":690},"_livelyDataWrapperId_":"246:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":692},"shape":{"__isSmartRef__":true,"id":693},"priorExtent":{"__isSmartRef__":true,"id":694},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":695},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"246:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"692":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"693":{"_livelyDataWrapperId_":"245:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"245:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"694":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"695":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"696":{"x":3,"y":358.4999999999999,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"697":{"_x":0,"_y":0,"_width":220.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"220.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"698":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"699":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":358.4999999999999,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"700":{"x":208.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"701":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"702":{"target":{"__isSmartRef__":true,"id":425},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"703":{"submorphs":[{"__isSmartRef__":true,"id":425}],"owner":{"__isSmartRef__":true,"id":704},"_livelyDataWrapperId_":"68:ClipMorph","origin":{"__isSmartRef__":true,"id":763},"shape":{"__isSmartRef__":true,"id":764},"priorExtent":{"__isSmartRef__":true,"id":766},"clip":{"__isSmartRef__":true,"id":767},"_clip-path":"url(#69:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":769},"suppressHandles":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":770},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"68:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#69:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"704":{"submorphs":[{"__isSmartRef__":true,"id":703},{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":730}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"67:ScrollPane","origin":{"__isSmartRef__":true,"id":757},"shape":{"__isSmartRef__":true,"id":758},"priorExtent":{"__isSmartRef__":true,"id":759},"pvtCachedTransform":{"__isSmartRef__":true,"id":760},"clipMorph":{"__isSmartRef__":true,"id":703},"verticalScrollBar":{"__isSmartRef__":true,"id":705},"attributeConnections":[{"__isSmartRef__":true,"id":761},{"__isSmartRef__":true,"id":762}],"menuButton":{"__isSmartRef__":true,"id":730},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"67:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,48.25497131347657)","namespaceURI":null}]}},"705":{"submorphs":[{"__isSmartRef__":true,"id":706}],"owner":{"__isSmartRef__":true,"id":704},"_livelyDataWrapperId_":"70:SliderMorph","origin":{"__isSmartRef__":true,"id":719},"shape":{"__isSmartRef__":true,"id":720},"priorExtent":{"__isSmartRef__":true,"id":726},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":727},"slider":{"__isSmartRef__":true,"id":706},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":728},{"__isSmartRef__":true,"id":729}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"70:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(203.61483764648438,13.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"706":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":705},"_livelyDataWrapperId_":"71:Morph","origin":{"__isSmartRef__":true,"id":707},"shape":{"__isSmartRef__":true,"id":708},"priorExtent":{"__isSmartRef__":true,"id":715},"pvtCachedTransform":{"__isSmartRef__":true,"id":716},"mouseHandler":{"__isSmartRef__":true,"id":717},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"71:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"707":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"708":{"_x":0,"_y":0,"_width":14,"_height":296.02408656557935,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"296.02408656557935","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"709":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"710":{"vector":{"__isSmartRef__":true,"id":711},"stops":[{"__isSmartRef__":true,"id":712},{"__isSmartRef__":true,"id":713},{"__isSmartRef__":true,"id":714}],"refcount":188,"_livelyDataWrapperId_":"18:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"18:lively.paint.LinearGradient","namespaceURI":null}]}},"711":{"x":0,"y":0,"width":1,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"712":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"713":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"714":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"715":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"716":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"717":{"target":{"__isSmartRef__":true,"id":705},"eventSpec":{"__isSmartRef__":true,"id":718},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"718":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"719":{"x":203.61483764648438,"y":13.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"720":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"721":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"722":{"vector":{"__isSmartRef__":true,"id":711},"stops":[{"__isSmartRef__":true,"id":723},{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":725}],"refcount":286,"_livelyDataWrapperId_":"19:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"19:lively.paint.LinearGradient","namespaceURI":null}]}},"723":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"724":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"725":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"726":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"727":{"a":1,"b":0,"c":0,"d":1,"e":203.61483764648438,"f":13.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"728":{"sourceObj":{"__isSmartRef__":true,"id":705},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":704},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"729":{"sourceObj":{"__isSmartRef__":true,"id":705},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":704},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"730":{"submorphs":[{"__isSmartRef__":true,"id":731},{"__isSmartRef__":true,"id":736},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":746}],"owner":{"__isSmartRef__":true,"id":704},"_livelyDataWrapperId_":"119:Morph","origin":{"__isSmartRef__":true,"id":751},"shape":{"__isSmartRef__":true,"id":752},"priorExtent":{"__isSmartRef__":true,"id":753},"pvtCachedTransform":{"__isSmartRef__":true,"id":754},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":755},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"119:Morph","namespaceURI":null},{"key":"transform","value":"translate(204.11483764648438,0)","namespaceURI":null}]}},"731":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":730},"_livelyDataWrapperId_":"120:Morph","origin":{"__isSmartRef__":true,"id":732},"shape":{"__isSmartRef__":true,"id":733},"priorExtent":{"__isSmartRef__":true,"id":734},"pvtCachedTransform":{"__isSmartRef__":true,"id":735},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"120:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"732":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"733":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"734":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"735":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"736":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":730},"_livelyDataWrapperId_":"121:Morph","origin":{"__isSmartRef__":true,"id":737},"shape":{"__isSmartRef__":true,"id":738},"priorExtent":{"__isSmartRef__":true,"id":739},"pvtCachedTransform":{"__isSmartRef__":true,"id":740},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"121:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"737":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"738":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"739":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"740":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"741":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":730},"_livelyDataWrapperId_":"122:Morph","origin":{"__isSmartRef__":true,"id":742},"shape":{"__isSmartRef__":true,"id":743},"priorExtent":{"__isSmartRef__":true,"id":744},"pvtCachedTransform":{"__isSmartRef__":true,"id":745},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"122:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"742":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"743":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"744":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"745":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"746":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":730},"_livelyDataWrapperId_":"123:Morph","origin":{"__isSmartRef__":true,"id":747},"shape":{"__isSmartRef__":true,"id":748},"priorExtent":{"__isSmartRef__":true,"id":749},"pvtCachedTransform":{"__isSmartRef__":true,"id":750},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"123:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"747":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"748":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"749":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"750":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"751":{"x":204.11483764648438,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"752":{"_x":0,"_y":0,"_width":14,"_height":14,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"753":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"754":{"a":1,"b":0,"c":0,"d":1,"e":204.11483764648438,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"755":{"target":{"__isSmartRef__":true,"id":704},"eventSpec":{"__isSmartRef__":true,"id":756},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"756":{"onMouseDown":"menuButtonPressed"},"757":{"x":0,"y":48.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"758":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":337.7847991943359,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"759":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"760":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":48.25497131347657,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"761":{"sourceObj":{"__isSmartRef__":true,"id":704},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":705},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"762":{"sourceObj":{"__isSmartRef__":true,"id":704},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane1Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"763":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"764":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"765":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"766":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"767":{"_livelyDataWrapperId_":"69:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":768},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"69:lively.scene.Clip","namespaceURI":null}]}},"768":{"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"769":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"770":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":771}},"771":{"varMapping":{"__isSmartRef__":true,"id":772},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":777},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"772":{"this":{"__isSmartRef__":true,"id":703},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":773}},"773":{"$super":{"__isSmartRef__":true,"id":774}},"774":{"varMapping":{"__isSmartRef__":true,"id":775},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":776},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"775":{"obj":{"__isSmartRef__":true,"id":703},"name":"layoutOnSubmorphLayout"},"776":{},"777":{},"778":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"779":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"780":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"781":{"isListItem":true,"string":"tests/","value":{"__isSmartRef__":true,"id":782}},"782":{"target":{"__isSmartRef__":true,"id":783},"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"localName":"tests/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"783":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/server/nodejs/tests/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"784":{"target":{"__isSmartRef__":true,"id":785},"browser":{"__isSmartRef__":true,"id":218},"parent":null,"allFiles":["server/nodejs/LaTeXServer.js","server/nodejs/LoadingServer.js","server/nodejs/TestServer.js","server/nodejs/OAuthServer.js","server/nodejs/Base.js","server/nodejs/CommandLineServer.js","server/nodejs/DatabaseQueryServer.js","server/nodejs/miniprototype.js","server/nodejs/MartinsPlayground.js","server/nodejs/MasterServer.js","server/nodejs/EventTrackerServer.js","server/nodejs/SandboxServer.js","server/nodejs/CodeSearchServer.js","server/nodejs/simpleChat.js","server/nodejs/PDFCreator.js","server/nodejs/livelyServer.js","server/nodejs/LKLoader.js","server/nodejs/WebInterface.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":783}],"parentNamespacePath":{"__isSmartRef__":true,"id":791},"_childNodes":[{"__isSmartRef__":true,"id":782},{"__isSmartRef__":true,"id":792},{"__isSmartRef__":true,"id":793},{"__isSmartRef__":true,"id":794},{"__isSmartRef__":true,"id":795},{"__isSmartRef__":true,"id":796},{"__isSmartRef__":true,"id":797},{"__isSmartRef__":true,"id":798},{"__isSmartRef__":true,"id":799},{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":801},{"__isSmartRef__":true,"id":802},{"__isSmartRef__":true,"id":803},{"__isSmartRef__":true,"id":804},{"__isSmartRef__":true,"id":805},{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":807},{"__isSmartRef__":true,"id":808},{"__isSmartRef__":true,"id":809},{"__isSmartRef__":true,"id":810},{"__isSmartRef__":true,"id":811}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"785":{"modules":{"__isSmartRef__":true,"id":786},"registeredBrowsers":[{"__isSmartRef__":true,"id":218}],"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide.SourceDatabase"},"786":{"server/nodejs/MartinsPlayground.js":{"__isSmartRef__":true,"id":787}},"787":{"_moduleName":"server.nodejs.MartinsPlayground","_type":"js","_ast":{"__isSmartRef__":true,"id":788},"__LivelyClassName__":"lively.ide.ModuleWrapper","__SourceModuleName__":"Global.lively.ide.SourceDatabase"},"788":{"name":"server/nodejs/MartinsPlayground.js","type":"completeFileDef","startIndex":0,"stopIndex":4337,"fileName":"server/nodejs/MartinsPlayground.js","_subElements":[{"__isSmartRef__":true,"id":789},{"__isSmartRef__":true,"id":790}],"sourceControl":{"__isSmartRef__":true,"id":785},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"789":{"name":null,"type":"unknown","startIndex":0,"stopIndex":23,"fileName":"server/nodejs/MartinsPlayground.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":785},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"790":{"name":null,"type":"errorDef","startIndex":24,"stopIndex":4337,"fileName":"server/nodejs/MartinsPlayground.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":785},"fileString":"var sys = require('sys'),\n\tnet = require('net'),\n\tevents = require('events');\n\nvar livelyServer = require('./livelyServer');\n\nrequire('./miniprototype');\nrequire('./Base');\n\nlivelyServer.AbstractHandler.subclass('MartinsPlayground',\n'initializing', {\n\tport: 8100,\n\n\tinitialize: function($super) {\n\t\t$super();\n\t\tthis.mpc = new MPDClient('localhost', 6600);\n\t\tthis.mpc.connect(function() {\n\t\t\tsys.puts(\"mpc connection established.\");\n\t\t});\n\t}\n},\n'crap', {\n\n\thelloWorldEnd: function(request, response, content) {\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\t\tsys.puts(\"where is this going?\");\n\t\tresponse.write(\"Hello World!\");\n\t\tresponse.end(\"\\n\");\n\t},\n\n\t\n\n\tdebugOutputEnd: function(request, response, content) {\n\t\t\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\n\t\tthis.mpc.previous(function(data) {\n\n\t\t\tresponse.write(data);\n\t\t\tresponse.end(\"\\n\\n\");\n\t\t});\n\t}\n});\n\n/**\n * Copyright (c) 2010 Danny Tatom \n * Copyright (c) 2011 Martin Czuchra \n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n **/\n\nObject.subclass('MPDClient',\n\n'initializing', {\n\n\tinitialize: function($super, host, port) {\n\t\t// no initialize in object? $super();\n\t\tvar connection, queue = [];\n\n\t\tthis.host = host;\n\t\tthis.port = port;\n\t\tthis.exports = new events.EventEmitter();\n\n\t\tthis.exports.connect = function(h, p, callback) {\n\t\t\tvar that = this;\n\t\t\tsys.log(\"attempting to connect to \" + h + \":\" + p);\n\t\t\tconnection = net.createConnection(p, h);\n\t\t\tconnection.setEncoding('utf8');\n\n\t\t\tconnection.addListener('connect', function() {\n\t\t\t\tsys.log(\"calling connect callback\");\n\t\t\t\tcallback();\n\t\t\t});\n\n\t\t\tconnection.addListener('data', function(data) {\n\t\t\t\tsys.log(\"receiving data\");\n\t\t\t\tvar object = buildObject(data);\n\n\t\t\t\tif (queue.length > 0) {\n\t\t\t\t\tif (queue[0].length === 1) {\n\t\t\t\t\t\tthat.emit(queue[0], object);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthat.emit(queue[0][0], object);\n\t\t\t\t\t\tqueue[0][1](object);\n\t\t\t\t\t}\n\t\t\t\t\tqueue.shift(0);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\tthis.exports.disconnect = function() {\n\t\t\tsys.log(\"ending connection\");\n\t\t\tconnection.end();\n\t\t};\n\n\t\tthis.exports.previous = function(callback) {\n\t\t\tsys.log(\"selecting previous\");\n\t\t\tsendCommand('previous', callback);\n\t\t};\n\n\t\tthis.exports.next = function(callback) {\n\t\t\tsys.log(\"selecting next\");\n\t\t\tsendCommand('next', callback);\n\t\t};\n\n\t\tthis.exports.currentSong = function(callback) {\n\t\t\tsys.log(\"fetching current song information\");\n\t\t\tsendCommand('currentsong', callback);\n\t\t};\n\n\t\tsendCommand = function(command, callback) {\n\t\t\tif (callback) {\n\t\t\t\tqueue.push([command, callback]);\n\t\t\t} else {\n\t\t\t\tqueue.push([command]);\n\t\t\t}\n\t\t\tconnection.write(command + '\\n');\n\t\t};\n\n\t\tthis.buildObject = function(string) {\n\t\t\tvar pairs = string.split('\\n'),\n\t\t\t\tobject = {};\n\n\t\t\tpairs.forEach(function(pair) {\n\t\t\t\tvar kv = pair.split(/: /);\n\t\t\t\tvar key = kv[0].toLowerCase(),\n\t\t\t\t\tvalue = kv[1];\n\n\t\t\t object[key] = value;\n\t\t\t});\n\n\t\t\treturn object;\n\t\t};\n\n\t}\n},\n'music', {\n\n\tnext: function(callback) {\n\t\tthis.exports.next(callback);\n\t},\n\n\tprevious: function(callback) {\n\t\tthis.exports.previous(callback);\n\t},\n\n\tcurrentSong: function(callback) {\n\t\tthis.exports.currentSong(callback);\n\t},\n\n\tdisconnect: function() {\n\t\tthis.exports.disconnect();\n\t},\n\n\tconnect: function(callback) {\n\t\tthis.exports.connect(this.host, this.port, callback);\n\t}\n});\n\nnew MartinsPlayground().listen();","__LivelyClassName__":"lively.ide.ParseErrorFileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"791":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/server/nodejs/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"792":{"target":{"__isSmartRef__":true,"id":791},"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"793":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/Base.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"794":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/CodeSearchServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"795":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/CommandLineServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"796":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/DatabaseQueryServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"797":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/EventTrackerServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"798":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/LaTeXServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"799":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/livelyServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"800":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/LKLoader.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"801":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/LoadingServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"802":{"target":{"__isSmartRef__":true,"id":788},"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/MartinsPlayground.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"803":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/MasterServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"804":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/miniprototype.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"805":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/OAuthServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"806":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/PDFCreator.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"807":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/SandboxServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"808":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/simpleChat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"809":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/TestServer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"810":{"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/WebInterface.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"811":{"target":{"__isSmartRef__":true,"id":812},"browser":{"__isSmartRef__":true,"id":218},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"812":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"813":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":792}},"814":{"isListItem":true,"string":"Base.js (not parsed)","value":{"__isSmartRef__":true,"id":793}},"815":{"isListItem":true,"string":"CodeSearchServer.js (not parsed)","value":{"__isSmartRef__":true,"id":794}},"816":{"isListItem":true,"string":"CommandLineServer.js (not parsed)","value":{"__isSmartRef__":true,"id":795}},"817":{"isListItem":true,"string":"DatabaseQueryServer.js (not parsed)","value":{"__isSmartRef__":true,"id":796}},"818":{"isListItem":true,"string":"EventTrackerServer.js (not parsed)","value":{"__isSmartRef__":true,"id":797}},"819":{"isListItem":true,"string":"LaTeXServer.js (not parsed)","value":{"__isSmartRef__":true,"id":798}},"820":{"isListItem":true,"string":"livelyServer.js (not parsed)","value":{"__isSmartRef__":true,"id":799}},"821":{"isListItem":true,"string":"LKLoader.js (not parsed)","value":{"__isSmartRef__":true,"id":800}},"822":{"isListItem":true,"string":"LoadingServer.js (not parsed)","value":{"__isSmartRef__":true,"id":801}},"823":{"isListItem":true,"string":"MartinsPlayground.js","value":{"__isSmartRef__":true,"id":802}},"824":{"isListItem":true,"string":"MasterServer.js (not parsed)","value":{"__isSmartRef__":true,"id":803}},"825":{"isListItem":true,"string":"miniprototype.js (not parsed)","value":{"__isSmartRef__":true,"id":804}},"826":{"isListItem":true,"string":"OAuthServer.js (not parsed)","value":{"__isSmartRef__":true,"id":805}},"827":{"isListItem":true,"string":"PDFCreator.js (not parsed)","value":{"__isSmartRef__":true,"id":806}},"828":{"isListItem":true,"string":"SandboxServer.js (not parsed)","value":{"__isSmartRef__":true,"id":807}},"829":{"isListItem":true,"string":"simpleChat.js (not parsed)","value":{"__isSmartRef__":true,"id":808}},"830":{"isListItem":true,"string":"TestServer.js (not parsed)","value":{"__isSmartRef__":true,"id":809}},"831":{"isListItem":true,"string":"WebInterface.js (not parsed)","value":{"__isSmartRef__":true,"id":810}},"832":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":811}},"833":{"target":{"__isSmartRef__":true,"id":788},"browser":{"__isSmartRef__":true,"id":218},"parent":{"__isSmartRef__":true,"id":784},"moduleName":"server/nodejs/MartinsPlayground.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"834":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"835":{"__regExp__":"/.*/i"},"836":{"sourceObj":{"__isSmartRef__":true,"id":425},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setPane1Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"837":{"sourceObj":{"__isSmartRef__":true,"id":425},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane1Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"838":{"sourceObj":{"__isSmartRef__":true,"id":425},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane1Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"839":{"sourceObj":{"__isSmartRef__":true,"id":425},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane1Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"840":{"sourceObj":{"__isSmartRef__":true,"id":218},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":841},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"841":{"baseWidth":220.11483764648438,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":842}],"owner":{"__isSmartRef__":true,"id":855},"_livelyDataWrapperId_":"72:FilterableListMorph","origin":{"__isSmartRef__":true,"id":918},"shape":{"__isSmartRef__":true,"id":919},"priorExtent":{"__isSmartRef__":true,"id":920},"itemList":["-----"],"selectedLineNo":-1,"selection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":921},"savedFill":null,"filter":{"__isSmartRef__":true,"id":835},"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":922},{"__isSmartRef__":true,"id":923},{"__isSmartRef__":true,"id":924},{"__isSmartRef__":true,"id":925}],"doNotSerialize":["$$selection","$$getMenu"],"doNotCopyProperties":["$$selection","$$getMenu"],"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"72:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"842":{"textString":"-----","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":843}],"owner":{"__isSmartRef__":true,"id":841},"_livelyDataWrapperId_":"73:TextMorph","origin":{"__isSmartRef__":true,"id":848},"shape":{"__isSmartRef__":true,"id":849},"textContent":{"__isSmartRef__":true,"id":850},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":851},"textSelection":{"__isSmartRef__":true,"id":843},"priorExtent":{"__isSmartRef__":true,"id":852},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":853},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":854},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"73:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"843":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":842},"_livelyDataWrapperId_":"75:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":844},"shape":{"__isSmartRef__":true,"id":845},"priorExtent":{"__isSmartRef__":true,"id":846},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":847},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"75:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"844":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"845":{"_livelyDataWrapperId_":"74:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"74:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"846":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"847":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"848":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"849":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"850":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"851":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"852":{"x":205.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"853":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"854":{"target":{"__isSmartRef__":true,"id":841},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"855":{"submorphs":[{"__isSmartRef__":true,"id":841}],"owner":{"__isSmartRef__":true,"id":856},"_livelyDataWrapperId_":"77:ClipMorph","origin":{"__isSmartRef__":true,"id":904},"shape":{"__isSmartRef__":true,"id":905},"priorExtent":{"__isSmartRef__":true,"id":906},"clip":{"__isSmartRef__":true,"id":907},"_clip-path":"url(#78:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":909},"suppressHandles":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":910},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"77:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#78:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"856":{"submorphs":[{"__isSmartRef__":true,"id":855},{"__isSmartRef__":true,"id":857},{"__isSmartRef__":true,"id":871}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"76:ScrollPane","origin":{"__isSmartRef__":true,"id":898},"shape":{"__isSmartRef__":true,"id":899},"priorExtent":{"__isSmartRef__":true,"id":900},"pvtCachedTransform":{"__isSmartRef__":true,"id":901},"clipMorph":{"__isSmartRef__":true,"id":855},"verticalScrollBar":{"__isSmartRef__":true,"id":857},"attributeConnections":[{"__isSmartRef__":true,"id":902},{"__isSmartRef__":true,"id":903}],"menuButton":{"__isSmartRef__":true,"id":871},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"76:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(217.11483764648438,48.25497131347657)","namespaceURI":null}]}},"857":{"submorphs":[{"__isSmartRef__":true,"id":858}],"owner":{"__isSmartRef__":true,"id":856},"_livelyDataWrapperId_":"79:SliderMorph","origin":{"__isSmartRef__":true,"id":865},"shape":{"__isSmartRef__":true,"id":866},"priorExtent":{"__isSmartRef__":true,"id":867},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":868},"slider":{"__isSmartRef__":true,"id":858},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":869},{"__isSmartRef__":true,"id":870}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"79:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(203.61483764648438,13.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"858":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":857},"_livelyDataWrapperId_":"80:Morph","origin":{"__isSmartRef__":true,"id":859},"shape":{"__isSmartRef__":true,"id":860},"priorExtent":{"__isSmartRef__":true,"id":861},"pvtCachedTransform":{"__isSmartRef__":true,"id":862},"mouseHandler":{"__isSmartRef__":true,"id":863},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"80:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"859":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"860":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"861":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"862":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"863":{"target":{"__isSmartRef__":true,"id":857},"eventSpec":{"__isSmartRef__":true,"id":864},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"864":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"865":{"x":203.61483764648438,"y":13.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"866":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"867":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"868":{"a":1,"b":0,"c":0,"d":1,"e":203.61483764648438,"f":13.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"869":{"sourceObj":{"__isSmartRef__":true,"id":857},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":856},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"870":{"sourceObj":{"__isSmartRef__":true,"id":857},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":856},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"871":{"submorphs":[{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":877},{"__isSmartRef__":true,"id":882},{"__isSmartRef__":true,"id":887}],"owner":{"__isSmartRef__":true,"id":856},"_livelyDataWrapperId_":"124:Morph","origin":{"__isSmartRef__":true,"id":892},"shape":{"__isSmartRef__":true,"id":893},"priorExtent":{"__isSmartRef__":true,"id":894},"pvtCachedTransform":{"__isSmartRef__":true,"id":895},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":896},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"124:Morph","namespaceURI":null},{"key":"transform","value":"translate(204.11483764648438,0)","namespaceURI":null}]}},"872":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":871},"_livelyDataWrapperId_":"125:Morph","origin":{"__isSmartRef__":true,"id":873},"shape":{"__isSmartRef__":true,"id":874},"priorExtent":{"__isSmartRef__":true,"id":875},"pvtCachedTransform":{"__isSmartRef__":true,"id":876},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"125:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"873":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"874":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"875":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"876":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"877":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":871},"_livelyDataWrapperId_":"126:Morph","origin":{"__isSmartRef__":true,"id":878},"shape":{"__isSmartRef__":true,"id":879},"priorExtent":{"__isSmartRef__":true,"id":880},"pvtCachedTransform":{"__isSmartRef__":true,"id":881},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"126:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"878":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"879":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"880":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"881":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"882":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":871},"_livelyDataWrapperId_":"127:Morph","origin":{"__isSmartRef__":true,"id":883},"shape":{"__isSmartRef__":true,"id":884},"priorExtent":{"__isSmartRef__":true,"id":885},"pvtCachedTransform":{"__isSmartRef__":true,"id":886},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"127:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"883":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"884":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"885":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"886":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"887":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":871},"_livelyDataWrapperId_":"128:Morph","origin":{"__isSmartRef__":true,"id":888},"shape":{"__isSmartRef__":true,"id":889},"priorExtent":{"__isSmartRef__":true,"id":890},"pvtCachedTransform":{"__isSmartRef__":true,"id":891},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"128:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"888":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"889":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"890":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"891":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"892":{"x":204.11483764648438,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"893":{"_x":0,"_y":0,"_width":14,"_height":14,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"894":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"895":{"a":1,"b":0,"c":0,"d":1,"e":204.11483764648438,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"896":{"target":{"__isSmartRef__":true,"id":856},"eventSpec":{"__isSmartRef__":true,"id":897},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"897":{"onMouseDown":"menuButtonPressed"},"898":{"x":217.11483764648438,"y":48.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"899":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":337.7847991943359,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"900":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"901":{"a":1,"b":0,"c":0,"d":1,"e":217.11483764648438,"f":48.25497131347657,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"902":{"sourceObj":{"__isSmartRef__":true,"id":856},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":857},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"903":{"sourceObj":{"__isSmartRef__":true,"id":856},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane2Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"904":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"905":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"906":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"907":{"_livelyDataWrapperId_":"78:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":908},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"78:lively.scene.Clip","namespaceURI":null}]}},"908":{"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"909":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"910":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":911}},"911":{"varMapping":{"__isSmartRef__":true,"id":912},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":917},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"912":{"this":{"__isSmartRef__":true,"id":855},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":913}},"913":{"$super":{"__isSmartRef__":true,"id":914}},"914":{"varMapping":{"__isSmartRef__":true,"id":915},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":916},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"915":{"obj":{"__isSmartRef__":true,"id":855},"name":"layoutOnSubmorphLayout"},"916":{},"917":{},"918":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"919":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"920":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"921":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"922":{"sourceObj":{"__isSmartRef__":true,"id":841},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setPane2Selection","converter":null,"converterString":null,"updater":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"923":{"sourceObj":{"__isSmartRef__":true,"id":841},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane2Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"924":{"sourceObj":{"__isSmartRef__":true,"id":841},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane2Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"925":{"sourceObj":{"__isSmartRef__":true,"id":841},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane2Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"926":{"sourceObj":{"__isSmartRef__":true,"id":218},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":927},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"927":{"baseWidth":220.11483764648438,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":928}],"owner":{"__isSmartRef__":true,"id":941},"_livelyDataWrapperId_":"81:FilterableListMorph","origin":{"__isSmartRef__":true,"id":1004},"shape":{"__isSmartRef__":true,"id":1005},"priorExtent":{"__isSmartRef__":true,"id":1006},"itemList":["-----"],"selectedLineNo":-1,"selection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1007},"savedFill":null,"filter":{"__isSmartRef__":true,"id":835},"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1008},{"__isSmartRef__":true,"id":1009},{"__isSmartRef__":true,"id":1010},{"__isSmartRef__":true,"id":1011}],"doNotSerialize":["$$selection","$$getMenu"],"doNotCopyProperties":["$$selection","$$getMenu"],"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"81:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"928":{"textString":"-----","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":929}],"owner":{"__isSmartRef__":true,"id":927},"_livelyDataWrapperId_":"82:TextMorph","origin":{"__isSmartRef__":true,"id":934},"shape":{"__isSmartRef__":true,"id":935},"textContent":{"__isSmartRef__":true,"id":936},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":937},"textSelection":{"__isSmartRef__":true,"id":929},"priorExtent":{"__isSmartRef__":true,"id":938},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":939},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":940},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"82:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"929":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":928},"_livelyDataWrapperId_":"84:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":930},"shape":{"__isSmartRef__":true,"id":931},"priorExtent":{"__isSmartRef__":true,"id":932},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":933},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"84:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"930":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"931":{"_livelyDataWrapperId_":"83:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"83:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"932":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"933":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"934":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"935":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"936":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"937":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"938":{"x":205.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"939":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"940":{"target":{"__isSmartRef__":true,"id":927},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"941":{"submorphs":[{"__isSmartRef__":true,"id":927}],"owner":{"__isSmartRef__":true,"id":942},"_livelyDataWrapperId_":"86:ClipMorph","origin":{"__isSmartRef__":true,"id":990},"shape":{"__isSmartRef__":true,"id":991},"priorExtent":{"__isSmartRef__":true,"id":992},"clip":{"__isSmartRef__":true,"id":993},"_clip-path":"url(#87:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":995},"suppressHandles":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":996},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"86:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#87:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"942":{"submorphs":[{"__isSmartRef__":true,"id":941},{"__isSmartRef__":true,"id":943},{"__isSmartRef__":true,"id":957}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"85:ScrollPane","origin":{"__isSmartRef__":true,"id":984},"shape":{"__isSmartRef__":true,"id":985},"priorExtent":{"__isSmartRef__":true,"id":986},"pvtCachedTransform":{"__isSmartRef__":true,"id":987},"clipMorph":{"__isSmartRef__":true,"id":941},"verticalScrollBar":{"__isSmartRef__":true,"id":943},"attributeConnections":[{"__isSmartRef__":true,"id":988},{"__isSmartRef__":true,"id":989}],"menuButton":{"__isSmartRef__":true,"id":957},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"85:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(434.22967529296875,48.25497131347657)","namespaceURI":null}]}},"943":{"submorphs":[{"__isSmartRef__":true,"id":944}],"owner":{"__isSmartRef__":true,"id":942},"_livelyDataWrapperId_":"88:SliderMorph","origin":{"__isSmartRef__":true,"id":951},"shape":{"__isSmartRef__":true,"id":952},"priorExtent":{"__isSmartRef__":true,"id":953},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":954},"slider":{"__isSmartRef__":true,"id":944},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":955},{"__isSmartRef__":true,"id":956}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"88:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(203.61483764648438,13.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"944":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":943},"_livelyDataWrapperId_":"89:Morph","origin":{"__isSmartRef__":true,"id":945},"shape":{"__isSmartRef__":true,"id":946},"priorExtent":{"__isSmartRef__":true,"id":947},"pvtCachedTransform":{"__isSmartRef__":true,"id":948},"mouseHandler":{"__isSmartRef__":true,"id":949},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"89:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"945":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"946":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"947":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"948":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"949":{"target":{"__isSmartRef__":true,"id":943},"eventSpec":{"__isSmartRef__":true,"id":950},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"950":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"951":{"x":203.61483764648438,"y":13.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"952":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"953":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"954":{"a":1,"b":0,"c":0,"d":1,"e":203.61483764648438,"f":13.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"955":{"sourceObj":{"__isSmartRef__":true,"id":943},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":942},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"956":{"sourceObj":{"__isSmartRef__":true,"id":943},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":942},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"957":{"submorphs":[{"__isSmartRef__":true,"id":958},{"__isSmartRef__":true,"id":963},{"__isSmartRef__":true,"id":968},{"__isSmartRef__":true,"id":973}],"owner":{"__isSmartRef__":true,"id":942},"_livelyDataWrapperId_":"129:Morph","origin":{"__isSmartRef__":true,"id":978},"shape":{"__isSmartRef__":true,"id":979},"priorExtent":{"__isSmartRef__":true,"id":980},"pvtCachedTransform":{"__isSmartRef__":true,"id":981},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":982},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"129:Morph","namespaceURI":null},{"key":"transform","value":"translate(204.11483764648438,0)","namespaceURI":null}]}},"958":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":957},"_livelyDataWrapperId_":"130:Morph","origin":{"__isSmartRef__":true,"id":959},"shape":{"__isSmartRef__":true,"id":960},"priorExtent":{"__isSmartRef__":true,"id":961},"pvtCachedTransform":{"__isSmartRef__":true,"id":962},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"130:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"959":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"960":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"961":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"962":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"963":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":957},"_livelyDataWrapperId_":"131:Morph","origin":{"__isSmartRef__":true,"id":964},"shape":{"__isSmartRef__":true,"id":965},"priorExtent":{"__isSmartRef__":true,"id":966},"pvtCachedTransform":{"__isSmartRef__":true,"id":967},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"131:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"964":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"965":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"966":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"967":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"968":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":957},"_livelyDataWrapperId_":"132:Morph","origin":{"__isSmartRef__":true,"id":969},"shape":{"__isSmartRef__":true,"id":970},"priorExtent":{"__isSmartRef__":true,"id":971},"pvtCachedTransform":{"__isSmartRef__":true,"id":972},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"132:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"969":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"970":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"971":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"972":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"973":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":957},"_livelyDataWrapperId_":"133:Morph","origin":{"__isSmartRef__":true,"id":974},"shape":{"__isSmartRef__":true,"id":975},"priorExtent":{"__isSmartRef__":true,"id":976},"pvtCachedTransform":{"__isSmartRef__":true,"id":977},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"133:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"974":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"975":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"976":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"977":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"978":{"x":204.11483764648438,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"979":{"_x":0,"_y":0,"_width":14,"_height":14,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"980":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"981":{"a":1,"b":0,"c":0,"d":1,"e":204.11483764648438,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"982":{"target":{"__isSmartRef__":true,"id":942},"eventSpec":{"__isSmartRef__":true,"id":983},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"983":{"onMouseDown":"menuButtonPressed"},"984":{"x":434.22967529296875,"y":48.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"985":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":337.7847991943359,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"986":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"987":{"a":1,"b":0,"c":0,"d":1,"e":434.22967529296875,"f":48.25497131347657,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"988":{"sourceObj":{"__isSmartRef__":true,"id":942},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":943},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"989":{"sourceObj":{"__isSmartRef__":true,"id":942},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane3Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"990":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"991":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"992":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"993":{"_livelyDataWrapperId_":"87:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":994},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"87:lively.scene.Clip","namespaceURI":null}]}},"994":{"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"995":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"996":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":997}},"997":{"varMapping":{"__isSmartRef__":true,"id":998},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":1003},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"998":{"this":{"__isSmartRef__":true,"id":941},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":999}},"999":{"$super":{"__isSmartRef__":true,"id":1000}},"1000":{"varMapping":{"__isSmartRef__":true,"id":1001},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1002},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1001":{"obj":{"__isSmartRef__":true,"id":941},"name":"layoutOnSubmorphLayout"},"1002":{},"1003":{},"1004":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1005":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"1006":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1007":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1008":{"sourceObj":{"__isSmartRef__":true,"id":927},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setPane3Selection","converter":null,"converterString":null,"updater":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1009":{"sourceObj":{"__isSmartRef__":true,"id":927},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane3Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1010":{"sourceObj":{"__isSmartRef__":true,"id":927},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane3Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1011":{"sourceObj":{"__isSmartRef__":true,"id":927},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane3Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1012":{"sourceObj":{"__isSmartRef__":true,"id":218},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":1013},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1013":{"baseWidth":220.11483764648438,"textStyle":null,"submorphs":[{"__isSmartRef__":true,"id":1014}],"owner":{"__isSmartRef__":true,"id":1027},"_livelyDataWrapperId_":"90:FilterableListMorph","origin":{"__isSmartRef__":true,"id":1090},"shape":{"__isSmartRef__":true,"id":1091},"priorExtent":{"__isSmartRef__":true,"id":1092},"itemList":["-----"],"selectedLineNo":-1,"selection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1093},"savedFill":null,"filter":{"__isSmartRef__":true,"id":835},"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1094},{"__isSmartRef__":true,"id":1095},{"__isSmartRef__":true,"id":1096},{"__isSmartRef__":true,"id":1097}],"doNotSerialize":["$$selection","$$getMenu"],"doNotCopyProperties":["$$selection","$$getMenu"],"__LivelyClassName__":"FilterableListMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"FilterableListMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"90:FilterableListMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1014":{"textString":"-----","savedTextString":"-----","submorphs":[{"__isSmartRef__":true,"id":1015}],"owner":{"__isSmartRef__":true,"id":1013},"_livelyDataWrapperId_":"91:TextMorph","origin":{"__isSmartRef__":true,"id":1020},"shape":{"__isSmartRef__":true,"id":1021},"textContent":{"__isSmartRef__":true,"id":1022},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1023},"textSelection":{"__isSmartRef__":true,"id":1015},"priorExtent":{"__isSmartRef__":true,"id":1024},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1025},"wrap":"None","mouseHandler":{"__isSmartRef__":true,"id":1026},"_pointer-events":"none","autoAdjustPadding":false,"suppressHandles":true,"acceptInput":false,"suppressGrabbing":true,"focusHaloBorderWidth":0,"margin":{"__isSmartRef__":true,"id":440},"openForDragAndDrop":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"91:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(3,4.5)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1015":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1014},"_livelyDataWrapperId_":"93:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1016},"shape":{"__isSmartRef__":true,"id":1017},"priorExtent":{"__isSmartRef__":true,"id":1018},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":1019},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"93:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1016":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1017":{"_livelyDataWrapperId_":"92:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"92:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1018":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1019":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1020":{"x":3,"y":4.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1021":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1022":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1023":{"a":1,"b":0,"c":0,"d":1,"e":3,"f":4.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1024":{"x":205.11483764648438,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1025":{"x":4,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"1026":{"target":{"__isSmartRef__":true,"id":1013},"eventSpec":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"1027":{"submorphs":[{"__isSmartRef__":true,"id":1013}],"owner":{"__isSmartRef__":true,"id":1028},"_livelyDataWrapperId_":"95:ClipMorph","origin":{"__isSmartRef__":true,"id":1076},"shape":{"__isSmartRef__":true,"id":1077},"priorExtent":{"__isSmartRef__":true,"id":1078},"clip":{"__isSmartRef__":true,"id":1079},"_clip-path":"url(#96:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":1081},"suppressHandles":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1082},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"95:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#96:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1028":{"submorphs":[{"__isSmartRef__":true,"id":1027},{"__isSmartRef__":true,"id":1029},{"__isSmartRef__":true,"id":1043}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"94:ScrollPane","origin":{"__isSmartRef__":true,"id":1070},"shape":{"__isSmartRef__":true,"id":1071},"priorExtent":{"__isSmartRef__":true,"id":1072},"pvtCachedTransform":{"__isSmartRef__":true,"id":1073},"clipMorph":{"__isSmartRef__":true,"id":1027},"verticalScrollBar":{"__isSmartRef__":true,"id":1029},"attributeConnections":[{"__isSmartRef__":true,"id":1074},{"__isSmartRef__":true,"id":1075}],"menuButton":{"__isSmartRef__":true,"id":1043},"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"94:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(651.3445129394531,48.25497131347657)","namespaceURI":null}]}},"1029":{"submorphs":[{"__isSmartRef__":true,"id":1030}],"owner":{"__isSmartRef__":true,"id":1028},"_livelyDataWrapperId_":"97:SliderMorph","origin":{"__isSmartRef__":true,"id":1037},"shape":{"__isSmartRef__":true,"id":1038},"priorExtent":{"__isSmartRef__":true,"id":1039},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":1040},"slider":{"__isSmartRef__":true,"id":1030},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1041},{"__isSmartRef__":true,"id":1042}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"97:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(203.61483764648438,13.5)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"1030":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1029},"_livelyDataWrapperId_":"98:Morph","origin":{"__isSmartRef__":true,"id":1031},"shape":{"__isSmartRef__":true,"id":1032},"priorExtent":{"__isSmartRef__":true,"id":1033},"pvtCachedTransform":{"__isSmartRef__":true,"id":1034},"mouseHandler":{"__isSmartRef__":true,"id":1035},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"98:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"1031":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1032":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1033":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1034":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1035":{"target":{"__isSmartRef__":true,"id":1029},"eventSpec":{"__isSmartRef__":true,"id":1036},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"1036":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"1037":{"x":203.61483764648438,"y":13.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1038":{"_x":0,"_y":0,"_width":14,"_height":324.7847991943359,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"324.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1039":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1040":{"a":1,"b":0,"c":0,"d":1,"e":203.61483764648438,"f":13.5,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1041":{"sourceObj":{"__isSmartRef__":true,"id":1029},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1028},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1042":{"sourceObj":{"__isSmartRef__":true,"id":1029},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":1028},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1043":{"submorphs":[{"__isSmartRef__":true,"id":1044},{"__isSmartRef__":true,"id":1049},{"__isSmartRef__":true,"id":1054},{"__isSmartRef__":true,"id":1059}],"owner":{"__isSmartRef__":true,"id":1028},"_livelyDataWrapperId_":"134:Morph","origin":{"__isSmartRef__":true,"id":1064},"shape":{"__isSmartRef__":true,"id":1065},"priorExtent":{"__isSmartRef__":true,"id":1066},"pvtCachedTransform":{"__isSmartRef__":true,"id":1067},"suppressHandles":true,"mouseHandler":{"__isSmartRef__":true,"id":1068},"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"134:Morph","namespaceURI":null},{"key":"transform","value":"translate(204.11483764648438,0)","namespaceURI":null}]}},"1044":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1043},"_livelyDataWrapperId_":"135:Morph","origin":{"__isSmartRef__":true,"id":1045},"shape":{"__isSmartRef__":true,"id":1046},"priorExtent":{"__isSmartRef__":true,"id":1047},"pvtCachedTransform":{"__isSmartRef__":true,"id":1048},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"135:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1045":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1046":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,4 8,4","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1047":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1048":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1049":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1043},"_livelyDataWrapperId_":"136:Morph","origin":{"__isSmartRef__":true,"id":1050},"shape":{"__isSmartRef__":true,"id":1051},"priorExtent":{"__isSmartRef__":true,"id":1052},"pvtCachedTransform":{"__isSmartRef__":true,"id":1053},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"136:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1050":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1051":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,6 4,6","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1052":{"x":2,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1053":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1054":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1043},"_livelyDataWrapperId_":"137:Morph","origin":{"__isSmartRef__":true,"id":1055},"shape":{"__isSmartRef__":true,"id":1056},"priorExtent":{"__isSmartRef__":true,"id":1057},"pvtCachedTransform":{"__isSmartRef__":true,"id":1058},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"137:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1055":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1056":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,8 6,8","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1057":{"x":4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1058":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1059":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1043},"_livelyDataWrapperId_":"138:Morph","origin":{"__isSmartRef__":true,"id":1060},"shape":{"__isSmartRef__":true,"id":1061},"priorExtent":{"__isSmartRef__":true,"id":1062},"pvtCachedTransform":{"__isSmartRef__":true,"id":1063},"mouseHandler":null,"_pointer-events":"none","__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"138:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1060":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1061":{"_stroke":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Polyline","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"polyline","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"points","value":"2,10 8,10","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1062":{"x":6,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1063":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1064":{"x":204.11483764648438,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1065":{"_x":0,"_y":0,"_width":14,"_height":14,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":722},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"14","namespaceURI":null},{"key":"height","value":"14","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null}]}},"1066":{"x":14,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1067":{"a":1,"b":0,"c":0,"d":1,"e":204.11483764648438,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1068":{"target":{"__isSmartRef__":true,"id":1028},"eventSpec":{"__isSmartRef__":true,"id":1069},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"1069":{"onMouseDown":"menuButtonPressed"},"1070":{"x":651.3445129394531,"y":48.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1071":{"_x":0,"_y":0,"_width":217.11483764648438,"_height":337.7847991943359,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"217.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"1072":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1073":{"a":1,"b":0,"c":0,"d":1,"e":651.3445129394531,"f":48.25497131347657,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1074":{"sourceObj":{"__isSmartRef__":true,"id":1028},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":1029},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1075":{"sourceObj":{"__isSmartRef__":true,"id":1028},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane4Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1076":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1077":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1078":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1079":{"_livelyDataWrapperId_":"96:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":1080},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"96:lively.scene.Clip","namespaceURI":null}]}},"1080":{"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1081":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1082":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":1083}},"1083":{"varMapping":{"__isSmartRef__":true,"id":1084},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":1089},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1084":{"this":{"__isSmartRef__":true,"id":1027},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1085}},"1085":{"$super":{"__isSmartRef__":true,"id":1086}},"1086":{"varMapping":{"__isSmartRef__":true,"id":1087},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1088},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1087":{"obj":{"__isSmartRef__":true,"id":1027},"name":"layoutOnSubmorphLayout"},"1088":{},"1089":{},"1090":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1091":{"_x":0,"_y":0,"_width":205.11483764648438,"_height":337.7847991943359,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":765},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"205.11483764648438","namespaceURI":null},{"key":"height","value":"337.7847991943359","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"1092":{"x":217.11483764648438,"y":337.7847991943359,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1093":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1094":{"sourceObj":{"__isSmartRef__":true,"id":1013},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setPane4Selection","converter":null,"converterString":null,"updater":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1095":{"sourceObj":{"__isSmartRef__":true,"id":1013},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane4Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1096":{"sourceObj":{"__isSmartRef__":true,"id":1013},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane4Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1097":{"sourceObj":{"__isSmartRef__":true,"id":1013},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"getPane4Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1098":{"sourceObj":{"__isSmartRef__":true,"id":218},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":1099},"targetMethodName":"setTextString","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1099":{"textString":"var sys = require('sys'),\n\tnet = require('net'),\n\tevents = require('events');\n\nvar livelyServer = require('./livelyServer');\n\nrequire('./miniprototype');\nrequire('./Base');\n\nlivelyServer.AbstractHandler.subclass('MartinsPlayground',\n'initializing', {\n\tport: 8100,\n\n\tinitialize: function($super) {\n\t\t$super();\n\t\tthis.mpc = new MPDClient('localhost', 6600);\n\t\tthis.mpc.connect(function() {\n\t\t\tsys.puts(\"mpc connection established.\");\n\t\t});\n\t}\n},\n'crap', {\n\n\thelloWorldEnd: function(request, response, content) {\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\t\tsys.puts(\"where is this going?\");\n\t\tresponse.write(\"Hello World!\");\n\t\tresponse.end(\"\\n\");\n\t},\n\n\t\n\n\tdebugOutputEnd: function(request, response, content) {\n\t\t\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\n\t\tthis.mpc.previous(function(data) {\n\n\t\t\tresponse.write(data);\n\t\t\tresponse.end(\"\\n\\n\");\n\t\t});\n\t}\n});\n\n/**\n * Copyright (c) 2010 Danny Tatom \n * Copyright (c) 2011 Martin Czuchra \n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n **/\n\nObject.subclass('MPDClient',\n\n'initializing', {\n\n\tinitialize: function($super, host, port) {\n\t\t// no initialize in object? $super();\n\t\tvar connection, queue = [];\n\n\t\tthis.host = host;\n\t\tthis.port = port;\n\t\tthis.exports = new events.EventEmitter();\n\n\t\tthis.exports.connect = function(h, p, callback) {\n\t\t\tvar that = this;\n\t\t\tsys.log(\"attempting to connect to \" + h + \":\" + p);\n\t\t\tconnection = net.createConnection(p, h);\n\t\t\tconnection.setEncoding('utf8');\n\n\t\t\tconnection.addListener('connect', function() {\n\t\t\t\tsys.log(\"calling connect callback\");\n\t\t\t\tcallback();\n\t\t\t});\n\n\t\t\tconnection.addListener('data', function(data) {\n\t\t\t\tsys.log(\"receiving data\");\n\t\t\t\tvar object = buildObject(data);\n\n\t\t\t\tif (queue.length > 0) {\n\t\t\t\t\tif (queue[0].length === 1) {\n\t\t\t\t\t\tthat.emit(queue[0], object);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthat.emit(queue[0][0], object);\n\t\t\t\t\t\tqueue[0][1](object);\n\t\t\t\t\t}\n\t\t\t\t\tqueue.shift(0);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\tthis.exports.disconnect = function() {\n\t\t\tsys.log(\"ending connection\");\n\t\t\tconnection.end();\n\t\t};\n\n\t\tthis.exports.previous = function(callback) {\n\t\t\tsys.log(\"selecting previous\");\n\t\t\tsendCommand('previous', callback);\n\t\t};\n\n\t\tthis.exports.next = function(callback) {\n\t\t\tsys.log(\"selecting next\");\n\t\t\tsendCommand('next', callback);\n\t\t};\n\n\t\tthis.exports.currentSong = function(callback) {\n\t\t\tsys.log(\"fetching current song information\");\n\t\t\tsendCommand('currentsong', callback);\n\t\t};\n\n\t\tsendCommand = function(command, callback) {\n\t\t\tif (callback) {\n\t\t\t\tqueue.push([command, callback]);\n\t\t\t} else {\n\t\t\t\tqueue.push([command]);\n\t\t\t}\n\t\t\tconnection.write(command + '\\n');\n\t\t};\n\n\t\tthis.buildObject = function(string) {\n\t\t\tvar pairs = string.split('\\n'),\n\t\t\t\tobject = {};\n\n\t\t\tpairs.forEach(function(pair) {\n\t\t\t\tvar kv = pair.split(/: /);\n\t\t\t\tvar key = kv[0].toLowerCase(),\n\t\t\t\t\tvalue = kv[1];\n\n\t\t\t object[key] = value;\n\t\t\t});\n\n\t\t\treturn object;\n\t\t};\n\n\t}\n},\n'music', {\n\n\tnext: function(callback) {\n\t\tthis.exports.next(callback);\n\t},\n\n\tprevious: function(callback) {\n\t\tthis.exports.previous(callback);\n\t},\n\n\tcurrentSong: function(callback) {\n\t\tthis.exports.currentSong(callback);\n\t},\n\n\tdisconnect: function() {\n\t\tthis.exports.disconnect();\n\t},\n\n\tconnect: function(callback) {\n\t\tthis.exports.connect(this.host, this.port, callback);\n\t}\n});\n\nnew MartinsPlayground().listen();","savedTextString":"var sys = require('sys'),\n\tnet = require('net'),\n\tevents = require('events');\n\nvar livelyServer = require('./livelyServer');\n\nrequire('./miniprototype');\nrequire('./Base');\n\nlivelyServer.AbstractHandler.subclass('MartinsPlayground',\n'initializing', {\n\tport: 8100,\n\n\tinitialize: function($super) {\n\t\t$super();\n\t\tthis.mpc = new MPDClient('localhost', 6600);\n\t\tthis.mpc.connect(function() {\n\t\t\tsys.puts(\"mpc connection established.\");\n\t\t});\n\t}\n},\n'crap', {\n\n\thelloWorldEnd: function(request, response, content) {\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\t\tsys.puts(\"where is this going?\");\n\t\tresponse.write(\"Hello World!\");\n\t\tresponse.end(\"\\n\");\n\t},\n\n\t\n\n\tdebugOutputEnd: function(request, response, content) {\n\t\t\n\t\tresponse.writeHead(200, {'Content-Type': 'text/plain'});\n\n\t\tthis.mpc.previous(function(data) {\n\n\t\t\tresponse.write(data);\n\t\t\tresponse.end(\"\\n\\n\");\n\t\t});\n\t}\n});\n\n/**\n * Copyright (c) 2010 Danny Tatom \n * Copyright (c) 2011 Martin Czuchra \n * \n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n * \n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n * \n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n **/\n\nObject.subclass('MPDClient',\n\n'initializing', {\n\n\tinitialize: function($super, host, port) {\n\t\t// no initialize in object? $super();\n\t\tvar connection, queue = [];\n\n\t\tthis.host = host;\n\t\tthis.port = port;\n\t\tthis.exports = new events.EventEmitter();\n\n\t\tthis.exports.connect = function(h, p, callback) {\n\t\t\tvar that = this;\n\t\t\tsys.log(\"attempting to connect to \" + h + \":\" + p);\n\t\t\tconnection = net.createConnection(p, h);\n\t\t\tconnection.setEncoding('utf8');\n\n\t\t\tconnection.addListener('connect', function() {\n\t\t\t\tsys.log(\"calling connect callback\");\n\t\t\t\tcallback();\n\t\t\t});\n\n\t\t\tconnection.addListener('data', function(data) {\n\t\t\t\tsys.log(\"receiving data\");\n\t\t\t\tvar object = buildObject(data);\n\n\t\t\t\tif (queue.length > 0) {\n\t\t\t\t\tif (queue[0].length === 1) {\n\t\t\t\t\t\tthat.emit(queue[0], object);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthat.emit(queue[0][0], object);\n\t\t\t\t\t\tqueue[0][1](object);\n\t\t\t\t\t}\n\t\t\t\t\tqueue.shift(0);\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\tthis.exports.disconnect = function() {\n\t\t\tsys.log(\"ending connection\");\n\t\t\tconnection.end();\n\t\t};\n\n\t\tthis.exports.previous = function(callback) {\n\t\t\tsys.log(\"selecting previous\");\n\t\t\tsendCommand('previous', callback);\n\t\t};\n\n\t\tthis.exports.next = function(callback) {\n\t\t\tsys.log(\"selecting next\");\n\t\t\tsendCommand('next', callback);\n\t\t};\n\n\t\tthis.exports.currentSong = function(callback) {\n\t\t\tsys.log(\"fetching current song information\");\n\t\t\tsendCommand('currentsong', callback);\n\t\t};\n\n\t\tsendCommand = function(command, callback) {\n\t\t\tif (callback) {\n\t\t\t\tqueue.push([command, callback]);\n\t\t\t} else {\n\t\t\t\tqueue.push([command]);\n\t\t\t}\n\t\t\tconnection.write(command + '\\n');\n\t\t};\n\n\t\tthis.buildObject = function(string) {\n\t\t\tvar pairs = string.split('\\n'),\n\t\t\t\tobject = {};\n\n\t\t\tpairs.forEach(function(pair) {\n\t\t\t\tvar kv = pair.split(/: /);\n\t\t\t\tvar key = kv[0].toLowerCase(),\n\t\t\t\t\tvalue = kv[1];\n\n\t\t\t object[key] = value;\n\t\t\t});\n\n\t\t\treturn object;\n\t\t};\n\n\t}\n},\n'music', {\n\n\tnext: function(callback) {\n\t\tthis.exports.next(callback);\n\t},\n\n\tprevious: function(callback) {\n\t\tthis.exports.previous(callback);\n\t},\n\n\tcurrentSong: function(callback) {\n\t\tthis.exports.currentSong(callback);\n\t},\n\n\tdisconnect: function() {\n\t\tthis.exports.disconnect();\n\t},\n\n\tconnect: function(callback) {\n\t\tthis.exports.connect(this.host, this.port, callback);\n\t}\n});\n\nnew MartinsPlayground().listen();","submorphs":[{"__isSmartRef__":true,"id":1100}],"owner":{"__isSmartRef__":true,"id":1105},"_livelyDataWrapperId_":"100:TextMorph","origin":{"__isSmartRef__":true,"id":1141},"shape":{"__isSmartRef__":true,"id":1142},"textContent":{"__isSmartRef__":true,"id":1143},"lineNumberHint":4,"pvtCachedTransform":{"__isSmartRef__":true,"id":1144},"textSelection":{"__isSmartRef__":true,"id":1100},"priorExtent":{"__isSmartRef__":true,"id":1145},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":1146},"suppressHandles":true,"maxSafeSize":2000000,"noEval":true,"attributeConnections":[{"__isSmartRef__":true,"id":1150}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"styleClass":["Browser_codePaneText"],"textStyle":{"__isSmartRef__":true,"id":1151},"fontFamily":"Courier","undoTextStyle":{"__isSmartRef__":true,"id":1354},"isSelecting":false,"hasKeyboardFocus":false,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"100:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,-94.47170829132118)","namespaceURI":null},{"key":"class","value":"Browser_codePaneText","namespaceURI":null}]},"withLayers":["BrowserSyntaxHighlightLayer"]},"1100":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1099},"_livelyDataWrapperId_":"102:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1101},"shape":{"__isSmartRef__":true,"id":1102},"priorExtent":{"__isSmartRef__":true,"id":1103},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":1104},"isCursor":true,"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"102:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1101":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1102":{"_livelyDataWrapperId_":"101:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"101:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1103":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1104":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1105":{"submorphs":[{"__isSmartRef__":true,"id":1099}],"owner":{"__isSmartRef__":true,"id":1106},"_livelyDataWrapperId_":"105:ClipMorph","origin":{"__isSmartRef__":true,"id":1127},"shape":{"__isSmartRef__":true,"id":1128},"priorExtent":{"__isSmartRef__":true,"id":1129},"clip":{"__isSmartRef__":true,"id":1130},"_clip-path":"url(#106:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":1132},"suppressHandles":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1133},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"105:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#106:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1106":{"submorphs":[{"__isSmartRef__":true,"id":1105},{"__isSmartRef__":true,"id":1107}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"104:ScrollPane","origin":{"__isSmartRef__":true,"id":1122},"shape":{"__isSmartRef__":true,"id":1123},"priorExtent":{"__isSmartRef__":true,"id":1124},"pvtCachedTransform":{"__isSmartRef__":true,"id":1125},"clipMorph":{"__isSmartRef__":true,"id":1105},"verticalScrollBar":{"__isSmartRef__":true,"id":1107},"attributeConnections":[{"__isSmartRef__":true,"id":1126}],"styleClass":["Browser_codePane"],"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"104:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,434.29474182128905)","namespaceURI":null},{"key":"class","value":"Browser_codePane","namespaceURI":null}]}},"1107":{"submorphs":[{"__isSmartRef__":true,"id":1108}],"owner":{"__isSmartRef__":true,"id":1106},"_livelyDataWrapperId_":"107:SliderMorph","origin":{"__isSmartRef__":true,"id":1115},"shape":{"__isSmartRef__":true,"id":1116},"priorExtent":{"__isSmartRef__":true,"id":1117},"value":0.0455,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":1118},"slider":{"__isSmartRef__":true,"id":1108},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1119},{"__isSmartRef__":true,"id":1120}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"hitPoint":{"__isSmartRef__":true,"id":1121},"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"107:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(855.4593505859375,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"1108":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1107},"_livelyDataWrapperId_":"108:Morph","origin":{"__isSmartRef__":true,"id":1109},"shape":{"__isSmartRef__":true,"id":1110},"priorExtent":{"__isSmartRef__":true,"id":1111},"pvtCachedTransform":{"__isSmartRef__":true,"id":1112},"mouseHandler":{"__isSmartRef__":true,"id":1113},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"108:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,17.509019916032347)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"1109":{"x":0,"y":17.509019916032347,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1110":{"_x":0,"_y":0,"_width":13,"_height":88.08509434388677,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"88.08509434388677","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1111":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1112":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":17.509019916032347,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1113":{"target":{"__isSmartRef__":true,"id":1107},"eventSpec":{"__isSmartRef__":true,"id":1114},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"1114":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"1115":{"x":855.4593505859375,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1116":{"_x":0,"_y":0,"_width":13,"_height":472.8987188720703,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"472.8987188720703","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1117":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1118":{"a":1,"b":0,"c":0,"d":1,"e":855.4593505859375,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1119":{"sourceObj":{"__isSmartRef__":true,"id":1107},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1106},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1120":{"sourceObj":{"__isSmartRef__":true,"id":1107},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":1106},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1121":{"x":8.5,"y":29.3046875,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1122":{"x":0,"y":434.29474182128905,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1123":{"_x":0,"_y":0,"_width":868.4593505859375,"_height":472.8987188720703,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868.4593505859375","namespaceURI":null},{"key":"height","value":"472.8987188720703","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"1124":{"x":868.4593505859375,"y":472.8987188720703,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1125":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":434.29474182128905,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1126":{"sourceObj":{"__isSmartRef__":true,"id":1106},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":1107},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1127":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1128":{"_x":0,"_y":0,"_width":856.4593505859375,"_height":472.8987188720703,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"856.4593505859375","namespaceURI":null},{"key":"height","value":"472.8987188720703","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1129":{"x":868.4593505859375,"y":472.8987188720703,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1130":{"_livelyDataWrapperId_":"106:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":1131},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"106:lively.scene.Clip","namespaceURI":null}]}},"1131":{"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"856.4593505859375","namespaceURI":null},{"key":"height","value":"472.8987188720703","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1132":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1133":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":1134}},"1134":{"varMapping":{"__isSmartRef__":true,"id":1135},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":1140},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1135":{"this":{"__isSmartRef__":true,"id":1105},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1136}},"1136":{"$super":{"__isSmartRef__":true,"id":1137}},"1137":{"varMapping":{"__isSmartRef__":true,"id":1138},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1139},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1138":{"obj":{"__isSmartRef__":true,"id":1105},"name":"layoutOnSubmorphLayout"},"1139":{},"1140":{},"1141":{"x":0,"y":-94.47170829132118,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1142":{"_x":0,"_y":0,"_width":856.4593505859375,"_height":2541.2000000000085,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"856.4593505859375","namespaceURI":null},{"key":"height","value":"2541.2000000000085","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1143":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Courier","namespaceURI":null}]}},"1144":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":-94.47170829132118,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1145":{"x":856.4593505859375,"y":464.8987188720703,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1146":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"103:Morph","origin":{"__isSmartRef__":true,"id":1147},"shape":{"__isSmartRef__":true,"id":1148},"priorExtent":{"__isSmartRef__":true,"id":1149},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"103:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1147":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1148":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":215},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"5","namespaceURI":null},{"key":"height","value":"5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"1149":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1150":{"sourceObj":{"__isSmartRef__":true,"id":1099},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setSourceString","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1151":{"runs":[3,15,5,18,5,21,8,4,3,24,16,12,17,11,8,4,28,1,8,1,19,2,14,2,1,2,5,1,4,4,11,1,8,9,1,15,4,7,3,11,11,2,4,5,4,13,8,3,1,13,29,5,1,4,1,1,1,2,6,2,1,3,14,1,8,29,1,22,3,2,1,14,2,12,1,14,22,20,14,18,4,4,1,7,15,1,8,29,1,25,3,2,1,14,2,12,1,6,4,14,8,7,1,43,6,5,1,4,1,1,1,4,1159,2,6,1,8,1,11,3,14,2,1,3,11,1,8,21,1,3,37,3,3,28,4,16,4,16,4,11,3,27,4,19,8,17,1,4,3,8,4,13,27,7,3,77,6,30,9,2,8,3,1,13,26,22,1,30,6,2,8,7,1,13,16,7,3,34,2,17,1,2,1,6,2,8,1,13,1,2,1,23,1,17,1,1,4,1,1,23,1,2,1,24,1,2,1,16,1,18,1,7,1,4,1,5,1,5,4,22,8,3,1,12,19,26,1,5,4,20,8,11,1,12,20,18,10,15,1,5,4,16,8,11,1,12,16,18,6,15,1,5,4,23,8,11,1,12,35,18,13,15,1,19,8,20,1,4,2,12,1,41,1,1,4,1,1,31,1,31,4,5,1,5,4,15,8,9,1,4,3,23,4,16,2,20,8,7,1,5,3,20,4,7,3,12,1,33,1,35,1,7,6,11,1,4,1,1,1,2,7,2,1,3,5,1,8,11,1,3,4,26,1,4,9,1,8,11,1,3,4,30,1,4,12,1,8,11,1,3,4,33,1,4,11,1,8,3,1,3,4,24,1,4,8,1,8,11,1,3,4,17,4,7,4,19,1,1,1,4,3,31],"values":[{"__isSmartRef__":true,"id":1152},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1155},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1157},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1158},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1159},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1160},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1161},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1162},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1163},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1164},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1166},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1167},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1168},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1170},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1172},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1174},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1175},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1177},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1178},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1179},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1180},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1181},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1182},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1183},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1184},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1185},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1186},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1187},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1188},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1189},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1191},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1193},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1194},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1195},{"__isSmartRef__":true,"id":1196},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1197},{"__isSmartRef__":true,"id":1198},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1199},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1200},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1202},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1203},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1204},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1205},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1206},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1207},{"__isSmartRef__":true,"id":1208},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1209},{"__isSmartRef__":true,"id":1210},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1211},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1212},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1213},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1214},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1215},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1216},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1217},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1218},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1219},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1220},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1221},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1223},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1224},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1225},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1226},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1227},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1228},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1229},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1230},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1231},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1232},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1233},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1234},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1235},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1236},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1237},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1238},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1239},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1240},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1241},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1242},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1243},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1244},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1245},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1246},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1247},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1248},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1249},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1250},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1251},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1252},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1253},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1254},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1255},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1256},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1257},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1258},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1259},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1260},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1261},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1262},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1263},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1264},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1265},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1267},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1268},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1269},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1271},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1273},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1274},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1275},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1276},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1277},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1278},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1279},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1280},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1281},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1282},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1283},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1284},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1285},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1286},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1287},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1288},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1289},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1290},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1291},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1292},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1293},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1294},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1295},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1296},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1297},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1298},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1299},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1300},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1301},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1302},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1303},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1304},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1305},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1306},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1307},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1308},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1309},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1310},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1311},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1312},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1313},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1315},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1316},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1317},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1318},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1319},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1320},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1321},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1322},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1323},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1325},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1326},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1327},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1328},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1329},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1330},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1331},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1332},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1333},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1334},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1335},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1336},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1337},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1338},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1339},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1340},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1341},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1342},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1343},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1344},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1345},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1346},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1347},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1348},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1349},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1350},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1351},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1353},{"__isSmartRef__":true,"id":1154}],"lastIndex":122,"lastRunIndex":11,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"1152":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1153":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1154":{"color":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1155":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1156":{"r":0,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1157":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1158":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1159":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1160":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1161":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1162":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1163":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1164":{"color":{"__isSmartRef__":true,"id":1165},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1165":{"r":0.5019607843137255,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1166":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1167":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1168":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1169":{"r":0,"g":0.5019607843137255,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1170":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1171":{"r":0.5450980392156862,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1172":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1173":{"r":0,"g":0,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1174":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1175":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1176":{"r":0,"g":0,"b":0.5450980392156862,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1177":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1178":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1179":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1180":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1181":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1182":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1183":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1184":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1185":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1186":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1187":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1188":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1189":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1190":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1191":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1192":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1193":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1194":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1195":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1196":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1197":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1198":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1199":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1200":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1201":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1202":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1203":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1204":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1205":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1206":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1207":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1208":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1209":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1210":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1211":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1212":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1213":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1214":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1215":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1216":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1217":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1218":{"color":{"__isSmartRef__":true,"id":1165},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1219":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1220":{"color":{"__isSmartRef__":true,"id":1165},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1221":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1222":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1223":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1224":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1225":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1226":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1227":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1228":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1229":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1230":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1231":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1232":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1233":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1234":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1235":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1236":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1237":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1238":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1239":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1240":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1241":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1242":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1243":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1244":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1245":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1246":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1247":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1248":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1249":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1250":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1251":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1252":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1253":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1254":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1255":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1256":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1257":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1258":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1259":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1260":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1261":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1262":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1263":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1264":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1265":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1266":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1267":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1268":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1269":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1270":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1271":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1272":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1273":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1274":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1275":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1276":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1277":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1278":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1279":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1280":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1281":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1282":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1283":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1284":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1285":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1286":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1287":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1288":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1289":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1290":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1291":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1292":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1293":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1294":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1295":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1296":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1297":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1298":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1299":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1300":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1301":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1302":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1303":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1304":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1305":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1306":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1307":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1308":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1309":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1310":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1311":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1312":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1313":{"color":{"__isSmartRef__":true,"id":1314},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1314":{"r":0.5019607843137255,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1315":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1316":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1317":{"color":{"__isSmartRef__":true,"id":1173},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1318":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1319":{"color":{"__isSmartRef__":true,"id":1153},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1320":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1321":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1322":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1323":{"color":{"__isSmartRef__":true,"id":1156},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1324":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1325":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1326":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1327":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1328":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1329":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1330":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1331":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1332":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1333":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1334":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1335":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1336":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1337":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1338":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1339":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1340":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1341":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1342":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1343":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1344":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1345":{"color":{"__isSmartRef__":true,"id":1171},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1346":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1347":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1348":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1349":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1350":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1351":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1352":{"color":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1353":{"color":{"__isSmartRef__":true,"id":1176},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1354":{"runs":[6],"values":[{"__isSmartRef__":true,"id":1355}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"1355":{"color":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"TextEmphasis","__SourceModuleName__":"Global.lively.Text"},"1356":{"sourceObj":{"__isSmartRef__":true,"id":218},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":200},"targetMethodName":"setTextString","converter":null,"converterString":null,"updaterString":"function ($upd, value) { value && $upd(String(value)) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1357":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1358":{"_x":0,"_y":0,"_width":682.76748046875,"_height":38.60397705078125,"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"682.76748046875","namespaceURI":null},{"key":"height","value":"38.60397705078125","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1359":{"x":694.76748046875,"y":38.60397705078125,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1360":{"_livelyDataWrapperId_":"54:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":1361},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"54:lively.scene.Clip","namespaceURI":null}]}},"1361":{"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"682.76748046875","namespaceURI":null},{"key":"height","value":"38.60397705078125","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1362":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1363":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":1364}},"1364":{"varMapping":{"__isSmartRef__":true,"id":1365},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":1370},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1365":{"this":{"__isSmartRef__":true,"id":199},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1366}},"1366":{"$super":{"__isSmartRef__":true,"id":1367}},"1367":{"varMapping":{"__isSmartRef__":true,"id":1368},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1369},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1368":{"obj":{"__isSmartRef__":true,"id":199},"name":"layoutOnSubmorphLayout"},"1369":{},"1370":{},"1371":{"submorphs":[{"__isSmartRef__":true,"id":1372}],"owner":{"__isSmartRef__":true,"id":198},"_livelyDataWrapperId_":"55:SliderMorph","origin":{"__isSmartRef__":true,"id":1379},"shape":{"__isSmartRef__":true,"id":1380},"priorExtent":{"__isSmartRef__":true,"id":1381},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":1382},"slider":{"__isSmartRef__":true,"id":1372},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1383},{"__isSmartRef__":true,"id":1384}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"55:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(681.76748046875,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"1372":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1371},"_livelyDataWrapperId_":"56:Morph","origin":{"__isSmartRef__":true,"id":1373},"shape":{"__isSmartRef__":true,"id":1374},"priorExtent":{"__isSmartRef__":true,"id":1375},"pvtCachedTransform":{"__isSmartRef__":true,"id":1376},"mouseHandler":{"__isSmartRef__":true,"id":1377},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"56:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"1373":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1374":{"_x":0,"_y":0,"_width":13,"_height":36.74819403255385,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"36.74819403255385","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1375":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1376":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1377":{"target":{"__isSmartRef__":true,"id":1371},"eventSpec":{"__isSmartRef__":true,"id":1378},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"1378":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"1379":{"x":681.76748046875,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1380":{"_x":0,"_y":0,"_width":13,"_height":38.60397705078125,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"38.60397705078125","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1381":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1382":{"a":1,"b":0,"c":0,"d":1,"e":681.76748046875,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1383":{"sourceObj":{"__isSmartRef__":true,"id":1371},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":198},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1384":{"sourceObj":{"__isSmartRef__":true,"id":1371},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":198},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1385":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1386":{"_x":0,"_y":0,"_width":694.76748046875,"_height":38.60397705078125,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"694.76748046875","namespaceURI":null},{"key":"height","value":"38.60397705078125","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"1387":{"x":694.76748046875,"y":38.60397705078125,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1388":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1389":{"sourceObj":{"__isSmartRef__":true,"id":198},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":1371},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1390":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":1391}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"57:ButtonMorph","origin":{"__isSmartRef__":true,"id":1403},"shape":{"__isSmartRef__":true,"id":1404},"priorExtent":{"__isSmartRef__":true,"id":1408},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1405},"lighterFill":{"__isSmartRef__":true,"id":1409},"pvtCachedTransform":{"__isSmartRef__":true,"id":1412},"nextNavigableSibling":{"__isSmartRef__":true,"id":1413},"label":{"__isSmartRef__":true,"id":1391},"attributeConnections":[{"__isSmartRef__":true,"id":1437}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"57:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(694.76748046875,0)","namespaceURI":null}]}},"1391":{"textString":"codebase","savedTextString":"codebase","submorphs":[{"__isSmartRef__":true,"id":1392}],"owner":{"__isSmartRef__":true,"id":1390},"_livelyDataWrapperId_":"139:TextMorph","origin":{"__isSmartRef__":true,"id":1397},"shape":{"__isSmartRef__":true,"id":1398},"textContent":{"__isSmartRef__":true,"id":1399},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1400},"textSelection":{"__isSmartRef__":true,"id":1392},"priorExtent":{"__isSmartRef__":true,"id":1401},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1402},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"139:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(26.607561035156245,14.201988525390627)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1392":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1391},"_livelyDataWrapperId_":"141:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1393},"shape":{"__isSmartRef__":true,"id":1394},"priorExtent":{"__isSmartRef__":true,"id":1395},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":1396},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"141:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1393":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1394":{"_livelyDataWrapperId_":"140:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"140:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1395":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1396":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1397":{"x":26.607561035156245,"y":14.201988525390627,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1398":{"_x":0,"_y":0,"_width":54,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"54","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1399":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1400":{"a":1,"b":0,"c":0,"d":1,"e":26.607561035156245,"f":14.201988525390627,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1401":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1402":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"1403":{"x":694.76748046875,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1404":{"_x":0,"_y":0,"_width":104.21512207031249,"_height":38.60397705078125,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":1405},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"104.21512207031249","namespaceURI":null},{"key":"height","value":"38.60397705078125","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#58:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"1405":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":1406},{"__isSmartRef__":true,"id":1407}],"refcount":1,"_livelyDataWrapperId_":"58:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"58:lively.paint.LinearGradient","namespaceURI":null}]}},"1406":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"1407":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"1408":{"x":104.21512207031249,"y":38.60397705078125,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1409":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":1410},{"__isSmartRef__":true,"id":1411}],"refcount":0,"_livelyDataWrapperId_":"59:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"59:lively.paint.LinearGradient","namespaceURI":null}]}},"1410":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"1411":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"1412":{"a":1,"b":0,"c":0,"d":1,"e":694.76748046875,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1413":{"baseFill":{"__isSmartRef__":true,"id":16},"submorphs":[{"__isSmartRef__":true,"id":1414}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"60:ButtonMorph","origin":{"__isSmartRef__":true,"id":1426},"shape":{"__isSmartRef__":true,"id":1427},"priorExtent":{"__isSmartRef__":true,"id":1431},"value":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1428},"lighterFill":{"__isSmartRef__":true,"id":1432},"pvtCachedTransform":{"__isSmartRef__":true,"id":1435},"label":{"__isSmartRef__":true,"id":1414},"attributeConnections":[{"__isSmartRef__":true,"id":1436}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"nextNavigableSibling":{"__isSmartRef__":true,"id":220},"__LivelyClassName__":"ButtonMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ButtonMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"60:ButtonMorph","namespaceURI":null},{"key":"class","value":"button","namespaceURI":null},{"key":"transform","value":"translate(798.9826025390626,0)","namespaceURI":null}]}},"1414":{"textString":"local","savedTextString":"local","submorphs":[{"__isSmartRef__":true,"id":1415}],"owner":{"__isSmartRef__":true,"id":1413},"_livelyDataWrapperId_":"142:TextMorph","origin":{"__isSmartRef__":true,"id":1420},"shape":{"__isSmartRef__":true,"id":1421},"textContent":{"__isSmartRef__":true,"id":1422},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1423},"textSelection":{"__isSmartRef__":true,"id":1415},"priorExtent":{"__isSmartRef__":true,"id":1424},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":1425},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"142:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(23.2383740234375,14.201988525390627)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1415":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1414},"_livelyDataWrapperId_":"144:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1416},"shape":{"__isSmartRef__":true,"id":1417},"priorExtent":{"__isSmartRef__":true,"id":1418},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":1419},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"144:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1416":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1417":{"_livelyDataWrapperId_":"143:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"143:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1418":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1419":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1420":{"x":23.2383740234375,"y":14.201988525390627,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1421":{"_x":0,"_y":0,"_width":26,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"26","namespaceURI":null},{"key":"height","value":"13.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1422":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1423":{"a":1,"b":0,"c":0,"d":1,"e":23.2383740234375,"f":14.201988525390627,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1424":{"x":188,"y":92,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1425":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"1426":{"x":798.9826025390626,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1427":{"_x":0,"_y":0,"_width":69.476748046875,"_height":38.60397705078125,"_stroke":{"__isSmartRef__":true,"id":36},"_fill":{"__isSmartRef__":true,"id":1428},"_rx":5,"_ry":5,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"69.476748046875","namespaceURI":null},{"key":"height","value":"38.60397705078125","namespaceURI":null},{"key":"stroke-width","value":"0.6","namespaceURI":null},{"key":"stroke","value":"rgb(128,114,119)","namespaceURI":null},{"key":"fill","value":"url(#61:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"5","namespaceURI":null},{"key":"ry","value":"5","namespaceURI":null}]}},"1428":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":1429},{"__isSmartRef__":true,"id":1430}],"refcount":1,"_livelyDataWrapperId_":"61:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"61:lively.paint.LinearGradient","namespaceURI":null}]}},"1429":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(209,209,209)","namespaceURI":null}]}},"1430":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"1431":{"x":69.476748046875,"y":38.60397705078125,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1432":{"vector":{"__isSmartRef__":true,"id":236},"stops":[{"__isSmartRef__":true,"id":1433},{"__isSmartRef__":true,"id":1434}],"refcount":0,"_livelyDataWrapperId_":"62:lively.paint.LinearGradient","__LivelyClassName__":"lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"1","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"0","namespaceURI":null},{"key":"id","value":"62:lively.paint.LinearGradient","namespaceURI":null}]}},"1433":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(232,232,232)","namespaceURI":null}]}},"1434":{"__LivelyClassName__":"lively.paint.Stop","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(244,244,244)","namespaceURI":null}]}},"1435":{"a":1,"b":0,"c":0,"d":1,"e":798.9826025390626,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1436":{"sourceObj":{"__isSmartRef__":true,"id":1413},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.source.getDirectory() }","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1437":{"sourceObj":{"__isSmartRef__":true,"id":1390},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":218},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.codeBase.withFilename('lively/')}","updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1438":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"99:HorizontalDivider","origin":{"__isSmartRef__":true,"id":1439},"shape":{"__isSmartRef__":true,"id":1440},"priorExtent":{"__isSmartRef__":true,"id":1442},"fixed":[{"__isSmartRef__":true,"id":220},{"__isSmartRef__":true,"id":248},{"__isSmartRef__":true,"id":276},{"__isSmartRef__":true,"id":304},{"__isSmartRef__":true,"id":332},{"__isSmartRef__":true,"id":360},{"__isSmartRef__":true,"id":388}],"scalingBelow":[{"__isSmartRef__":true,"id":1106}],"scalingAbove":[{"__isSmartRef__":true,"id":704},{"__isSmartRef__":true,"id":856},{"__isSmartRef__":true,"id":942},{"__isSmartRef__":true,"id":1028}],"minHeight":20,"pointerConnection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1443},"styleClass":["Browser_resizer"],"__LivelyClassName__":"HorizontalDivider","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"HorizontalDivider","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"99:HorizontalDivider","namespaceURI":null},{"key":"transform","value":"translate(0,424.64374755859376)","namespaceURI":null},{"key":"class","value":"Browser_resizer","namespaceURI":null}]}},"1439":{"x":0,"y":424.64374755859376,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1440":{"_x":0,"_y":0,"_width":868.4593505859375,"_height":9.650994262695313,"_fill":{"__isSmartRef__":true,"id":1441},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868.4593505859375","namespaceURI":null},{"key":"height","value":"9.650994262695313","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null}]}},"1441":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1442":{"x":868.4593505859375,"y":9.650994262695313,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1443":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":424.64374755859376,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1444":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"109:HorizontalDivider","origin":{"__isSmartRef__":true,"id":1445},"shape":{"__isSmartRef__":true,"id":1446},"priorExtent":{"__isSmartRef__":true,"id":1447},"fixed":[],"scalingBelow":[{"__isSmartRef__":true,"id":1448}],"scalingAbove":[{"__isSmartRef__":true,"id":1106}],"minHeight":20,"pointerConnection":null,"pvtCachedTransform":{"__isSmartRef__":true,"id":1498},"styleClass":["Browser_resizer"],"__LivelyClassName__":"HorizontalDivider","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"HorizontalDivider","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"109:HorizontalDivider","namespaceURI":null},{"key":"transform","value":"translate(0,907.1934606933593)","namespaceURI":null},{"key":"class","value":"Browser_resizer","namespaceURI":null}]}},"1445":{"x":0,"y":907.1934606933593,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1446":{"_x":0,"_y":0,"_width":868.4593505859375,"_height":9.650994262695313,"_fill":{"__isSmartRef__":true,"id":1441},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868.4593505859375","namespaceURI":null},{"key":"height","value":"9.650994262695313","namespaceURI":null},{"key":"fill","value":"rgb(204,204,204)","namespaceURI":null}]}},"1447":{"x":868.4593505859375,"y":9.650994262695313,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1448":{"submorphs":[{"__isSmartRef__":true,"id":1449},{"__isSmartRef__":true,"id":1479}],"owner":{"__isSmartRef__":true,"id":197},"_livelyDataWrapperId_":"114:ScrollPane","origin":{"__isSmartRef__":true,"id":1493},"shape":{"__isSmartRef__":true,"id":1494},"priorExtent":{"__isSmartRef__":true,"id":1495},"pvtCachedTransform":{"__isSmartRef__":true,"id":1496},"clipMorph":{"__isSmartRef__":true,"id":1449},"verticalScrollBar":{"__isSmartRef__":true,"id":1479},"attributeConnections":[{"__isSmartRef__":true,"id":1497}],"styleClass":["Browser_commentPane"],"__LivelyClassName__":"ScrollPane","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ScrollPane","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"114:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,916.8444549560546)","namespaceURI":null},{"key":"class","value":"Browser_commentPane","namespaceURI":null}]}},"1449":{"submorphs":[{"__isSmartRef__":true,"id":1450}],"owner":{"__isSmartRef__":true,"id":1448},"_livelyDataWrapperId_":"115:ClipMorph","origin":{"__isSmartRef__":true,"id":1465},"shape":{"__isSmartRef__":true,"id":1466},"priorExtent":{"__isSmartRef__":true,"id":1467},"clip":{"__isSmartRef__":true,"id":1468},"_clip-path":"url(#116:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":1470},"suppressHandles":true,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1471},"__LivelyClassName__":"ClipMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"ClipMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"115:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#116:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1450":{"textString":"","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":1451}],"owner":{"__isSmartRef__":true,"id":1449},"_livelyDataWrapperId_":"110:TextMorph","origin":{"__isSmartRef__":true,"id":1456},"shape":{"__isSmartRef__":true,"id":1457},"textContent":{"__isSmartRef__":true,"id":1458},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":1459},"textSelection":{"__isSmartRef__":true,"id":1451},"priorExtent":{"__isSmartRef__":true,"id":1460},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":1461},"suppressHandles":true,"styleClass":["Browser_commentPaneText"],"__LivelyClassName__":"TextMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"110:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"Browser_commentPaneText","namespaceURI":null}]}},"1451":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1450},"_livelyDataWrapperId_":"112:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":1452},"shape":{"__isSmartRef__":true,"id":1453},"priorExtent":{"__isSmartRef__":true,"id":1454},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":1455},"__LivelyClassName__":"TextSelectionMorph","__SourceModuleName__":"Global.lively.Text","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TextSelectionMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"112:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"1452":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1453":{"_livelyDataWrapperId_":"111:lively.scene.Group","content":[],"_fill":null,"__LivelyClassName__":"lively.scene.Group","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"111:lively.scene.Group","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1454":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1455":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1456":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1457":{"_x":0,"_y":0,"_width":856.4593505859375,"_height":48.25497131347657,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"856.4593505859375","namespaceURI":null},{"key":"height","value":"48.25497131347657","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1458":{"_fill":{"__isSmartRef__":true,"id":12},"__LivelyClassName__":"lively.scene.Text","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(0,0,0)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"1459":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1460":{"x":856.4593505859375,"y":40.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1461":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"113:Morph","origin":{"__isSmartRef__":true,"id":1462},"shape":{"__isSmartRef__":true,"id":1463},"priorExtent":{"__isSmartRef__":true,"id":1464},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"113:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"1462":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1463":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":12},"_fill":{"__isSmartRef__":true,"id":215},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"5","namespaceURI":null},{"key":"height","value":"5","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"rgb(204,0,0)","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null}]}},"1464":{"x":5,"y":5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1465":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1466":{"_x":0,"_y":0,"_width":856.4593505859375,"_height":48.25497131347657,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"856.4593505859375","namespaceURI":null},{"key":"height","value":"48.25497131347657","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1467":{"x":868.4593505859375,"y":48.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1468":{"_livelyDataWrapperId_":"116:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":1469},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"116:lively.scene.Clip","namespaceURI":null}]}},"1469":{"_fill":{"__isSmartRef__":true,"id":208},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"856.4593505859375","namespaceURI":null},{"key":"height","value":"48.25497131347657","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1470":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1471":{"layoutOnSubmorphLayout":{"__isSmartRef__":true,"id":1472}},"1472":{"varMapping":{"__isSmartRef__":true,"id":1473},"source":"function layoutOnSubmorphLayout() { return true }","funcProperties":{"__isSmartRef__":true,"id":1478},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1473":{"this":{"__isSmartRef__":true,"id":1449},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1474}},"1474":{"$super":{"__isSmartRef__":true,"id":1475}},"1475":{"varMapping":{"__isSmartRef__":true,"id":1476},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1477},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"1476":{"obj":{"__isSmartRef__":true,"id":1449},"name":"layoutOnSubmorphLayout"},"1477":{},"1478":{},"1479":{"submorphs":[{"__isSmartRef__":true,"id":1480}],"owner":{"__isSmartRef__":true,"id":1448},"_livelyDataWrapperId_":"117:SliderMorph","origin":{"__isSmartRef__":true,"id":1487},"shape":{"__isSmartRef__":true,"id":1488},"priorExtent":{"__isSmartRef__":true,"id":1489},"value":0,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":1490},"slider":{"__isSmartRef__":true,"id":1480},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":1491},{"__isSmartRef__":true,"id":1492}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"__LivelyClassName__":"SliderMorph","__SourceModuleName__":"Global.lively.Widgets","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"SliderMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"117:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(855.4593505859375,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"1480":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":1479},"_livelyDataWrapperId_":"118:Morph","origin":{"__isSmartRef__":true,"id":1481},"shape":{"__isSmartRef__":true,"id":1482},"priorExtent":{"__isSmartRef__":true,"id":1483},"pvtCachedTransform":{"__isSmartRef__":true,"id":1484},"mouseHandler":{"__isSmartRef__":true,"id":1485},"styleClass":["slider"],"__LivelyClassName__":"Morph","__SourceModuleName__":"Global.lively.oldCore.Morphs","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"Morph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"118:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"1481":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1482":{"_x":0,"_y":0,"_width":13,"_height":46.37203312906713,"_stroke":{"__isSmartRef__":true,"id":709},"_fill":{"__isSmartRef__":true,"id":710},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"46.37203312906713","namespaceURI":null},{"key":"stroke","value":"rgb(102,102,102)","namespaceURI":null},{"key":"fill","value":"url(#18:lively.paint.LinearGradient)","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1483":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1484":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1485":{"target":{"__isSmartRef__":true,"id":1479},"eventSpec":{"__isSmartRef__":true,"id":1486},"__LivelyClassName__":"MouseHandlerForRelay","__SourceModuleName__":"Global.lively.oldCore.Morphs"},"1486":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"1487":{"x":855.4593505859375,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1488":{"_x":0,"_y":0,"_width":13,"_height":48.25497131347657,"_stroke":{"__isSmartRef__":true,"id":721},"_fill":{"__isSmartRef__":true,"id":722},"_rx":6,"_ry":6,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"13","namespaceURI":null},{"key":"height","value":"48.25497131347657","namespaceURI":null},{"key":"stroke","value":"rgb(204,204,204)","namespaceURI":null},{"key":"fill","value":"url(#19:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"rx","value":"6","namespaceURI":null},{"key":"ry","value":"6","namespaceURI":null},{"key":"stroke-width","value":"1","namespaceURI":null}]}},"1489":{"x":5,"y":10,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1490":{"a":1,"b":0,"c":0,"d":1,"e":855.4593505859375,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1491":{"sourceObj":{"__isSmartRef__":true,"id":1479},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1448},"targetMethodName":"setVerticalScrollPosition","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1492":{"sourceObj":{"__isSmartRef__":true,"id":1479},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":1448},"targetMethodName":"getVerticalVisibleExtent","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1493":{"x":0,"y":916.8444549560546,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1494":{"_x":0,"_y":0,"_width":868.4593505859375,"_height":48.25497131347657,"_fill":null,"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868.4593505859375","namespaceURI":null},{"key":"height","value":"48.25497131347657","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"1495":{"x":868.4593505859375,"y":48.25497131347657,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1496":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":916.8444549560546,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1497":{"sourceObj":{"__isSmartRef__":true,"id":1448},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":1479},"targetMethodName":"setValue","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1498":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":907.1934606933593,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1499":{"x":0,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1500":{"_x":0,"_y":0,"_width":868.4593505859375,"_height":965.0994262695312,"_stroke":{"__isSmartRef__":true,"id":1501},"_fill":{"__isSmartRef__":true,"id":1502},"__LivelyClassName__":"lively.scene.Rectangle","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868.4593505859375","namespaceURI":null},{"key":"height","value":"965.0994262695312","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(51,51,51)","namespaceURI":null},{"key":"fill","value":"rgb(243,243,243)","namespaceURI":null}]}},"1501":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1502":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1503":{"x":868.4593505859375,"y":965.0994262695312,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1504":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1505":{"x":298.5406494140625,"y":173.90057373046875,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1506":{"_x":0,"_y":0,"_width":868.4593505859375,"_height":987.0994262695312,"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"868.4593505859375","namespaceURI":null},{"key":"height","value":"987.0994262695312","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"1507":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1508":{"a":1,"b":0,"c":0,"d":1,"e":298.5406494140625,"f":173.90057373046875,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1509":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1510":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1511":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"1512":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1513":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1514":{"_fill":{"__isSmartRef__":true,"id":1515},"_stroke":null,"__SourceModuleName__":"Global.lively.scene","_x":0,"_y":0,"_width":5000,"_height":5000,"__LivelyClassName__":"lively.scene.Rectangle","__rawNodeInfo__":{"tagName":"rect","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x","value":"0","namespaceURI":null},{"key":"y","value":"0","namespaceURI":null},{"key":"width","value":"5000","namespaceURI":null},{"key":"height","value":"5000","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null}]}},"1515":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1516":{"x":1665,"y":867,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1517":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":1518},"button":{"__isSmartRef__":true,"id":1523},"widgetPanel":{"__isSmartRef__":true,"id":1524},"focusHalo":{"__isSmartRef__":true,"id":1527},"panel":{"__isSmartRef__":true,"id":1529},"link":{"__isSmartRef__":true,"id":1530},"helpText":{"__isSmartRef__":true,"id":1532},"menu_items":{"__isSmartRef__":true,"id":1534},"menu_list":{"__isSmartRef__":true,"id":1536},"slider":{"__isSmartRef__":true,"id":1538},"slider_background":{"__isSmartRef__":true,"id":1539},"slider_horizontal":{"__isSmartRef__":true,"id":1540},"slider_background_horizontal":{"__isSmartRef__":true,"id":1547},"titleBar":{"__isSmartRef__":true,"id":1552},"titleBar_label":{"__isSmartRef__":true,"id":1553},"titleBar_label_highlight":{"__isSmartRef__":true,"id":1554},"titleBar_button_label":{"__isSmartRef__":true,"id":1555},"titleBar_closeButton":{"__isSmartRef__":true,"id":1556},"titleBar_menuButton":{"__isSmartRef__":true,"id":1562},"titleBar_collapseButton":{"__isSmartRef__":true,"id":1568},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":1574},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":1575},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":1576},"clock":{"__isSmartRef__":true,"id":1577},"fabrik":{"__isSmartRef__":true,"id":1582},"world":{"__isSmartRef__":true,"id":1584}},"1518":{"borderColor":{"__isSmartRef__":true,"id":1519}},"1519":{"vector":{"__isSmartRef__":true,"id":1520},"stops":[{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1522}],"refcount":0,"_livelyDataWrapperId_":"16:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"1","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"16:lively.paint.LinearGradient","namespaceURI":null}]}},"1520":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1521":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"1522":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(12,12,12)","namespaceURI":null}]}},"1523":{"borderColor":{"__isSmartRef__":true,"id":36},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":16}},"1524":{"borderColor":{"__isSmartRef__":true,"id":1525},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":1526},"opacity":0.4},"1525":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1526":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1527":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":1528},"strokeOpacity":0.5},"1528":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1529":{"fill":{"__isSmartRef__":true,"id":1502},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":1501}},"1530":{"borderColor":{"__isSmartRef__":true,"id":1531},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":721}},"1531":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1532":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":1533},"fillOpacity":0.8},"1533":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1534":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":1535}},"1535":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1536":{"fill":{"__isSmartRef__":true,"id":1537}},"1537":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1538":{"borderColor":{"__isSmartRef__":true,"id":709},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":710}},"1539":{"borderColor":{"__isSmartRef__":true,"id":721},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":722}},"1540":{"borderColor":{"__isSmartRef__":true,"id":1541},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":1542}},"1541":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1542":{"vector":{"__isSmartRef__":true,"id":1543},"stops":[{"__isSmartRef__":true,"id":1544},{"__isSmartRef__":true,"id":1545},{"__isSmartRef__":true,"id":1546}],"refcount":0,"_livelyDataWrapperId_":"20:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"20:lively.paint.LinearGradient","namespaceURI":null}]}},"1543":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1544":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(196,211,221)","namespaceURI":null}]}},"1545":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(137,167,187)","namespaceURI":null}]}},"1546":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(96,130,153)","namespaceURI":null}]}},"1547":{"borderColor":{"__isSmartRef__":true,"id":1541},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":1548}},"1548":{"vector":{"__isSmartRef__":true,"id":1543},"stops":[{"__isSmartRef__":true,"id":1549},{"__isSmartRef__":true,"id":1550},{"__isSmartRef__":true,"id":1551}],"refcount":0,"_livelyDataWrapperId_":"21:lively.paint.LinearGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.LinearGradient","__rawNodeInfo__":{"tagName":"linearGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"x1","value":"0","namespaceURI":null},{"key":"y1","value":"0","namespaceURI":null},{"key":"x2","value":"0","namespaceURI":null},{"key":"y2","value":"1","namespaceURI":null},{"key":"id","value":"21:lively.paint.LinearGradient","namespaceURI":null}]}},"1549":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"1550":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.4","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"1551":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(245,245,245)","namespaceURI":null}]}},"1552":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":1541},"fill":{"__isSmartRef__":true,"id":89}},"1553":{"fill":null},"1554":{"fill":{"__isSmartRef__":true,"id":109},"fillOpacity":0.5},"1555":{"textColor":{"__isSmartRef__":true,"id":124},"fontStyle":"bold"},"1556":{"fill":{"__isSmartRef__":true,"id":1557}},"1557":{"stops":[{"__isSmartRef__":true,"id":1558},{"__isSmartRef__":true,"id":1559},{"__isSmartRef__":true,"id":1560}],"f":{"__isSmartRef__":true,"id":1561},"refcount":110,"_livelyDataWrapperId_":"23:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"23:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"1558":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"1559":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"1560":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"1561":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1562":{"fill":{"__isSmartRef__":true,"id":1563}},"1563":{"stops":[{"__isSmartRef__":true,"id":1564},{"__isSmartRef__":true,"id":1565},{"__isSmartRef__":true,"id":1566}],"f":{"__isSmartRef__":true,"id":1567},"refcount":110,"_livelyDataWrapperId_":"24:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"24:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"1564":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"1565":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"1566":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"1567":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1568":{"fill":{"__isSmartRef__":true,"id":1569}},"1569":{"stops":[{"__isSmartRef__":true,"id":1570},{"__isSmartRef__":true,"id":1571},{"__isSmartRef__":true,"id":1572}],"f":{"__isSmartRef__":true,"id":1573},"refcount":110,"_livelyDataWrapperId_":"25:lively.paint.RadialGradient","_fx":0.4,"_fy":0.2,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"25:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"1570":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(240,240,240)","namespaceURI":null}]}},"1571":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0.5","namespaceURI":null},{"key":"stop-color","value":"rgb(204,204,204)","namespaceURI":null}]}},"1572":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(122,122,122)","namespaceURI":null}]}},"1573":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1574":{"fill":{"__isSmartRef__":true,"id":132}},"1575":{"fill":{"__isSmartRef__":true,"id":158}},"1576":{"fill":{"__isSmartRef__":true,"id":184}},"1577":{"borderColor":{"__isSmartRef__":true,"id":1578},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":1579}},"1578":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1579":{"stops":[{"__isSmartRef__":true,"id":1580},{"__isSmartRef__":true,"id":1581}],"refcount":0,"_livelyDataWrapperId_":"29:lively.paint.RadialGradient","__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"29:lively.paint.RadialGradient","namespaceURI":null}]}},"1580":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"0","namespaceURI":null},{"key":"stop-color","value":"rgb(243,243,243)","namespaceURI":null}]}},"1581":{"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.paint.Stop","__rawNodeInfo__":{"tagName":"stop","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"offset","value":"1","namespaceURI":null},{"key":"stop-color","value":"rgb(230,230,230)","namespaceURI":null}]}},"1582":{"borderColor":{"__isSmartRef__":true,"id":1583},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":721},"opacity":1},"1583":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1584":{"fill":{"__isSmartRef__":true,"id":109}},"isSimplifiedRegistry":true}}]]>