3);\n\t\t\t\t});\n\t\t\t\tvar cpuCount = cpuProps.length;\n\n\t\t\t\treturn pv.transpose(\n\t\t\t\t\tself.data.slice(-200).collect(function(dataset) {\n\t\t\t\t\t\treturn cpuProps.collect(function(prop) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tx: dataset.timestamp,\n\t\t\t\t\t\t\t\ty: 100 - dataset[prop].idle / cpuCount\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t});\n\t\t\t\t\t})\n\t\t\t\t);\n\t\t\t})\n\t\t\t.x(function(d) {\n\t\t\t\treturn pv.Scale.linear(\n\t\t\t\t\tpv.min(self.data.slice(-200), function(d) { return d.timestamp; }),\n\t\t\t\t\tpv.max(self.data.slice(-200), function(d) { return d.timestamp; })\n\t\t\t\t).range(0, w)(d.x - this.parent.parent.offset());\n\t\t\t})\n\t\t\t.y(function(d) { return cpuY(d.y); })\n\t\t.layer.add(pv.Area);\n\n\t\tcpuVis.add(pv.Rule)\n\t\t\t.data(cpuY.ticks(3))\n\t\t\t.bottom(cpuY)\n\t\t\t.strokeStyle(function(d) { return (d ? \"rgba(128,128,128,.2)\" : \"#000\"); })\n\t\t.anchor(\"left\").add(pv.Label)\n\t\t\t.text(function(y) { return y + '%' });\n\n\t\treturn vis;\n\t},\n});\n","savedTextString":"ProtoVisDrawing.subclass('StackedChartsDiagram',\n'default category', {\n\tinitialize: function($super, parent) {\n\t\t$super(parent);\n\t\tthis.setData([]);\n\t},\n\tsetData: function(newData) {\n\t\tthis.data = newData;\n\t},\n\tdraw: function(w, h) {\n\t\tvar self = this;\n\n\t\tw = w - 40;\n\t\th = h - 25;\n\t\tvar\tx = pv.Scale.linear(\n\t\t\t\tpv.min(self.data, function(d) { return d.timestamp; }),\n\t\t\t\tpv.max(self.data, function(d) { return d.timestamp; })\n\t\t\t).range(0, w),\n\t\t\tcpuY = pv.Scale.linear(0, 100).range(0, h),\n\t\t\tdateFormat = pv.Format.date('%H:%M:%S');\n\n\t\tvar vis = new pv.Panel()\n\t\t\t.width(w)\n\t\t\t.height(h)\n\t\t\t.bottom(20)\n\t\t\t.left(30)\n\t\t\t.right(10)\n\t\t\t.top(5);\n\n\t\tvar cpuVis = vis.add(pv.Panel)\n\t\t\t.top(0)\n\t\t\t.height(h);\n\n\t\tcpuVis.add(pv.Rule)\n\t\t\t.def(\"xScale\", function() {\n\t\t\t\treturn pv.Scale.linear(\n\t\t\t\t\tpv.min(self.data.slice(-200), function(d) { return d.timestamp; }),\n\t\t\t\t\tpv.max(self.data.slice(-200), function(d) { return d.timestamp; })\n\t\t\t\t).range(0, w);\n\t\t\t})\n\t\t\t.data(function() {\n\t\t\t\treturn this.xScale().ticks();\n\t\t\t})\n\t\t\t.visible(function(d) { return d; })\n\t\t\t.left(function(arg) { return this.xScale()(arg); })\n\t\t\t.bottom(-5)\n\t\t\t.height(5)\n\t\t.anchor(\"bottom\").add(pv.Label)\n\t\t\t.text(function(d) { return dateFormat(new Date(d)); });\n\n\t\tcpuVis.add(pv.Layout.Stack)\n\t\t\t.def('offset', 0)\n\t\t\t.layers(function() {\n\t\t\t\t// this.offset(Math.max((dataset.length - 200) / 10, 0));\n\t\t\t\tif (self.data.length == 0) return self.data;\n\n\t\t\t\tvar cpuProps = Properties.own(self.data[0]).findAll(function(prop) {\n\t\t\t\t\treturn prop.startsWith('cpu') && (prop.length > 3);\n\t\t\t\t});\n\t\t\t\tvar cpuCount = cpuProps.length;\n\n\t\t\t\treturn pv.transpose(\n\t\t\t\t\tself.data.slice(-200).collect(function(dataset) {\n\t\t\t\t\t\treturn cpuProps.collect(function(prop) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tx: dataset.timestamp,\n\t\t\t\t\t\t\t\ty: 100 - dataset[prop].idle / cpuCount\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t});\n\t\t\t\t\t})\n\t\t\t\t);\n\t\t\t})\n\t\t\t.x(function(d) {\n\t\t\t\treturn pv.Scale.linear(\n\t\t\t\t\tpv.min(self.data.slice(-200), function(d) { return d.timestamp; }),\n\t\t\t\t\tpv.max(self.data.slice(-200), function(d) { return d.timestamp; })\n\t\t\t\t).range(0, w)(d.x - this.parent.parent.offset());\n\t\t\t})\n\t\t\t.y(function(d) { return cpuY(d.y); })\n\t\t.layer.add(pv.Area);\n\n\t\tcpuVis.add(pv.Rule)\n\t\t\t.data(cpuY.ticks(3))\n\t\t\t.bottom(cpuY)\n\t\t\t.strokeStyle(function(d) { return (d ? \"rgba(128,128,128,.2)\" : \"#000\"); })\n\t\t.anchor(\"left\").add(pv.Label)\n\t\t\t.text(function(y) { return y + '%' });\n\n\t\treturn vis;\n\t},\n});\n","submorphs":[{"__isSmartRef__":true,"id":339}],"owner":{"__isSmartRef__":true,"id":337},"_livelyDataWrapperId_":"1711:TextMorph","origin":{"__isSmartRef__":true,"id":344},"shape":{"__isSmartRef__":true,"id":345},"textContent":{"__isSmartRef__":true,"id":348},"lineNumberHint":90,"pvtCachedTransform":{"__isSmartRef__":true,"id":349},"textSelection":{"__isSmartRef__":true,"id":339},"priorExtent":{"__isSmartRef__":true,"id":350},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":351},"suppressHandles":true,"openForDragAndDrop":false,"fontFamily":"Courier","hasKeyboardFocus":false,"isSelecting":false,"lastSearchString":"LKparent","__SourceModuleName__":"Global.lively.Text","tabReplacePrefix":"\\","__LivelyClassName__":"TextMorph","__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":"1711:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,-745.5999755859375)","namespaceURI":null}]}},"339":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":338},"_livelyDataWrapperId_":"1713:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":340},"shape":{"__isSmartRef__":true,"id":341},"priorExtent":{"__isSmartRef__":true,"id":342},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":343},"openForDragAndDrop":false,"isCursor":true,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"1713:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"340":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"341":{"_livelyDataWrapperId_":"1712:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1712: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}]}},"342":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"343":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"344":{"x":0,"y":-745.5999755859375,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"345":{"_x":0,"_y":0,"_width":661,"_height":1317.2000000000007,"_stroke":{"__isSmartRef__":true,"id":346},"_fill":{"__isSmartRef__":true,"id":347},"__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":"661","namespaceURI":null},{"key":"height","value":"1317.2000000000007","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}]}},"346":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"347":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"348":{"_fill":{"__isSmartRef__":true,"id":61},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__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}]}},"349":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":-745.5999755859375,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"350":{"x":649,"y":1309.199951171875,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"351":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"1714:Morph","origin":{"__isSmartRef__":true,"id":352},"shape":{"__isSmartRef__":true,"id":353},"priorExtent":{"__isSmartRef__":true,"id":355},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":356},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":357},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__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":"1714:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"352":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"353":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":346},"_fill":{"__isSmartRef__":true,"id":354},"__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":"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}]}},"354":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"355":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"356":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"357":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"358":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"359":{"_x":0,"_y":0,"_width":661,"_height":414,"_fill":{"__isSmartRef__":true,"id":347},"__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":"661","namespaceURI":null},{"key":"height","value":"414","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}]}},"360":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"361":{"_livelyDataWrapperId_":"35:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":362},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"35:lively.scene.Clip","namespaceURI":null}]}},"362":{"_fill":{"__isSmartRef__":true,"id":347},"__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":"661","namespaceURI":null},{"key":"height","value":"414","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}]}},"363":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"364":{"submorphs":[{"__isSmartRef__":true,"id":365}],"owner":{"__isSmartRef__":true,"id":336},"_livelyDataWrapperId_":"1718:SliderMorph","origin":{"__isSmartRef__":true,"id":372},"shape":{"__isSmartRef__":true,"id":373},"priorExtent":{"__isSmartRef__":true,"id":374},"value":0.805531541975189,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":375},"slider":{"__isSmartRef__":true,"id":365},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":376},{"__isSmartRef__":true,"id":377}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","focusHalo":null,"hitPoint":{"__isSmartRef__":true,"id":378},"__LivelyClassName__":"SliderMorph","__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":"1718:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(660,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"365":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":364},"_livelyDataWrapperId_":"1719:Morph","origin":{"__isSmartRef__":true,"id":366},"shape":{"__isSmartRef__":true,"id":367},"priorExtent":{"__isSmartRef__":true,"id":368},"pvtCachedTransform":{"__isSmartRef__":true,"id":369},"mouseHandler":{"__isSmartRef__":true,"id":370},"styleClass":["slider"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__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":"1719:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,229.53991090059623)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null}]}},"366":{"x":0,"y":229.53991090059623,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"367":{"_x":0,"_y":0,"_width":13,"_height":129.0454092241291,"_stroke":{"__isSmartRef__":true,"id":190},"_fill":{"__isSmartRef__":true,"id":191},"_rx":6,"_ry":6,"__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":"13","namespaceURI":null},{"key":"height","value":"129.0454092241291","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}]}},"368":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"369":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":229.53991090059623,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"370":{"target":{"__isSmartRef__":true,"id":364},"eventSpec":{"__isSmartRef__":true,"id":371},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"371":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"372":{"x":660,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"373":{"_x":0,"_y":0,"_width":13,"_height":414,"_stroke":{"__isSmartRef__":true,"id":202},"_fill":{"__isSmartRef__":true,"id":203},"_rx":6,"_ry":6,"__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":"13","namespaceURI":null},{"key":"height","value":"414","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}]}},"374":{"x":5,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"375":{"a":1,"b":0,"c":0,"d":1,"e":660,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"376":{"sourceObj":{"__isSmartRef__":true,"id":364},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":336},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"377":{"sourceObj":{"__isSmartRef__":true,"id":364},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":336},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"378":{"x":5.5,"y":44.83577953252808,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"379":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"380":{"_x":0,"_y":0,"_width":673,"_height":414,"_fill":null,"_stroke":{"__isSmartRef__":true,"id":346},"__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":"673","namespaceURI":null},{"key":"height","value":"414","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"381":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"382":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"383":{"sourceObj":{"__isSmartRef__":true,"id":336},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":364},"targetMethodName":"setValue","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"384":{"submorphs":[{"__isSmartRef__":true,"id":385},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":409},{"__isSmartRef__":true,"id":430},{"__isSmartRef__":true,"id":451}],"owner":{"__isSmartRef__":true,"id":335},"_livelyDataWrapperId_":"1721:TitleBarMorph","origin":{"__isSmartRef__":true,"id":472},"shape":{"__isSmartRef__":true,"id":473},"priorExtent":{"__isSmartRef__":true,"id":474},"pvtCachedTransform":{"__isSmartRef__":true,"id":475},"mouseHandler":null,"_pointer-events":"none","contentMorph":{"__isSmartRef__":true,"id":386},"windowMorph":{"__isSmartRef__":true,"id":335},"label":{"__isSmartRef__":true,"id":397},"closeButton":{"__isSmartRef__":true,"id":409},"menuButton":{"__isSmartRef__":true,"id":430},"collapseButton":{"__isSmartRef__":true,"id":451},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"TitleBarMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TitleBarMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1721:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"385":{"submorphs":[{"__isSmartRef__":true,"id":386}],"owner":{"__isSmartRef__":true,"id":384},"_livelyDataWrapperId_":"1723:ClipMorph","origin":{"__isSmartRef__":true,"id":391},"shape":{"__isSmartRef__":true,"id":392},"priorExtent":{"__isSmartRef__":true,"id":393},"clip":{"__isSmartRef__":true,"id":394},"_clip-path":"url(#36:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":396},"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__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":"1723:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#36:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"386":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":385},"_livelyDataWrapperId_":"1722:Morph","origin":{"__isSmartRef__":true,"id":387},"shape":{"__isSmartRef__":true,"id":388},"priorExtent":{"__isSmartRef__":true,"id":389},"pvtCachedTransform":{"__isSmartRef__":true,"id":390},"styleClass":["titleBar"],"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__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":"1722:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"387":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"388":{"_x":0,"_y":0,"_width":673,"_height":30,"_stroke":{"__isSmartRef__":true,"id":346},"_fill":{"__isSmartRef__":true,"id":222},"_rx":8,"_ry":8,"__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":"673","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#22:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"389":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"390":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"391":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"392":{"_x":0,"_y":0,"_width":675,"_height":23,"_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":"675","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"393":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"394":{"_livelyDataWrapperId_":"36:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":395},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"36:lively.scene.Clip","namespaceURI":null}]}},"395":{"_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":"675","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"396":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"397":{"textString":"3. Data visualization","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":398}],"owner":{"__isSmartRef__":true,"id":384},"_livelyDataWrapperId_":"1725:TextMorph","origin":{"__isSmartRef__":true,"id":403},"shape":{"__isSmartRef__":true,"id":404},"textContent":{"__isSmartRef__":true,"id":405},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":406},"textSelection":{"__isSmartRef__":true,"id":398},"priorExtent":{"__isSmartRef__":true,"id":407},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":408},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"openForDragAndDrop":false,"styleClass":["titleBar_label"],"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"1725:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(301,3)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label","namespaceURI":null}]}},"398":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":397},"_livelyDataWrapperId_":"1727:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":399},"shape":{"__isSmartRef__":true,"id":400},"priorExtent":{"__isSmartRef__":true,"id":401},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":402},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"1727:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"399":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"400":{"_livelyDataWrapperId_":"1726:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1726: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}]}},"401":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"402":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"403":{"x":301,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"404":{"_x":0,"_y":0,"_width":122,"_height":17.2,"_stroke":{"__isSmartRef__":true,"id":346},"_fill":null,"_rx":8,"_ry":8,"__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":"122","namespaceURI":null},{"key":"height","value":"17.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},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"405":{"_fill":{"__isSmartRef__":true,"id":61},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__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}]}},"406":{"a":1,"b":0,"c":0,"d":1,"e":301,"f":3,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"407":{"x":110,"y":13.200000762939453,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"408":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"409":{"submorphs":[{"__isSmartRef__":true,"id":410}],"owner":{"__isSmartRef__":true,"id":384},"_livelyDataWrapperId_":"1728:WindowControlMorph","origin":{"__isSmartRef__":true,"id":424},"shape":{"__isSmartRef__":true,"id":425},"priorExtent":{"__isSmartRef__":true,"id":426},"label":{"__isSmartRef__":true,"id":410},"pvtCachedTransform":{"__isSmartRef__":true,"id":427},"styleClass":["titleBar_closeButton"],"attributeConnections":[{"__isSmartRef__":true,"id":428},{"__isSmartRef__":true,"id":429}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1728:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(662,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton","namespaceURI":null}]}},"410":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":411}],"owner":{"__isSmartRef__":true,"id":409},"_livelyDataWrapperId_":"1729:TextMorph","origin":{"__isSmartRef__":true,"id":416},"shape":{"__isSmartRef__":true,"id":417},"textContent":{"__isSmartRef__":true,"id":418},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":419},"textSelection":{"__isSmartRef__":true,"id":411},"priorExtent":{"__isSmartRef__":true,"id":420},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":421},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":256},"textStyle":{"__isSmartRef__":true,"id":422},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"1729:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-4,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"411":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":410},"_livelyDataWrapperId_":"1731:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":412},"shape":{"__isSmartRef__":true,"id":413},"priorExtent":{"__isSmartRef__":true,"id":414},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":415},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"1731:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"412":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"413":{"_livelyDataWrapperId_":"1730:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1730: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}]}},"414":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"415":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"416":{"x":-4,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"417":{"_x":0,"_y":0,"_width":8,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":346},"_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":"8","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}]}},"418":{"_fill":{"__isSmartRef__":true,"id":256},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"419":{"a":1,"b":0,"c":0,"d":1,"e":-4,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"420":{"x":8,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"421":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"422":{"runs":[2],"values":[{"__isSmartRef__":true,"id":423}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"423":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"424":{"x":662,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"425":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":264},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#23:lively.paint.RadialGradient)","namespaceURI":null}]}},"426":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"427":{"a":1,"b":0,"c":0,"d":1,"e":662,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"428":{"sourceObj":{"__isSmartRef__":true,"id":409},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":335},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"429":{"sourceObj":{"__isSmartRef__":true,"id":409},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":335},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"430":{"submorphs":[{"__isSmartRef__":true,"id":431}],"owner":{"__isSmartRef__":true,"id":384},"_livelyDataWrapperId_":"1732:WindowControlMorph","origin":{"__isSmartRef__":true,"id":445},"shape":{"__isSmartRef__":true,"id":446},"priorExtent":{"__isSmartRef__":true,"id":447},"label":{"__isSmartRef__":true,"id":431},"pvtCachedTransform":{"__isSmartRef__":true,"id":448},"styleClass":["titleBar_menuButton"],"attributeConnections":[{"__isSmartRef__":true,"id":449},{"__isSmartRef__":true,"id":450}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1732:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton","namespaceURI":null}]}},"431":{"textString":"M","savedTextString":"M","submorphs":[{"__isSmartRef__":true,"id":432}],"owner":{"__isSmartRef__":true,"id":430},"_livelyDataWrapperId_":"1733:TextMorph","origin":{"__isSmartRef__":true,"id":437},"shape":{"__isSmartRef__":true,"id":438},"textContent":{"__isSmartRef__":true,"id":439},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":440},"textSelection":{"__isSmartRef__":true,"id":432},"priorExtent":{"__isSmartRef__":true,"id":441},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":442},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":256},"textStyle":{"__isSmartRef__":true,"id":443},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"1733:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-5,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"432":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":431},"_livelyDataWrapperId_":"1735:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":433},"shape":{"__isSmartRef__":true,"id":434},"priorExtent":{"__isSmartRef__":true,"id":435},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":436},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"1735:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"433":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"434":{"_livelyDataWrapperId_":"1734:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1734: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}]}},"435":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"436":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"437":{"x":-5,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"438":{"_x":0,"_y":0,"_width":10,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":346},"_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":"10","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}]}},"439":{"_fill":{"__isSmartRef__":true,"id":256},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"440":{"a":1,"b":0,"c":0,"d":1,"e":-5,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"441":{"x":10,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"442":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"443":{"runs":[2],"values":[{"__isSmartRef__":true,"id":444}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"444":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"445":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"446":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":290},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#24:lively.paint.RadialGradient)","namespaceURI":null}]}},"447":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"448":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"449":{"sourceObj":{"__isSmartRef__":true,"id":430},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":335},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"450":{"sourceObj":{"__isSmartRef__":true,"id":430},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":335},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"451":{"submorphs":[{"__isSmartRef__":true,"id":452}],"owner":{"__isSmartRef__":true,"id":384},"_livelyDataWrapperId_":"1736:WindowControlMorph","origin":{"__isSmartRef__":true,"id":466},"shape":{"__isSmartRef__":true,"id":467},"priorExtent":{"__isSmartRef__":true,"id":468},"label":{"__isSmartRef__":true,"id":452},"pvtCachedTransform":{"__isSmartRef__":true,"id":469},"styleClass":["titleBar_collapseButton"],"attributeConnections":[{"__isSmartRef__":true,"id":470},{"__isSmartRef__":true,"id":471}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"1736:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(643,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton","namespaceURI":null}]}},"452":{"textString":"–","savedTextString":"–","submorphs":[{"__isSmartRef__":true,"id":453}],"owner":{"__isSmartRef__":true,"id":451},"_livelyDataWrapperId_":"1737:TextMorph","origin":{"__isSmartRef__":true,"id":458},"shape":{"__isSmartRef__":true,"id":459},"textContent":{"__isSmartRef__":true,"id":460},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":461},"textSelection":{"__isSmartRef__":true,"id":453},"priorExtent":{"__isSmartRef__":true,"id":462},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":463},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":256},"textStyle":{"__isSmartRef__":true,"id":464},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"1737:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-3,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"453":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":452},"_livelyDataWrapperId_":"1739:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":454},"shape":{"__isSmartRef__":true,"id":455},"priorExtent":{"__isSmartRef__":true,"id":456},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":457},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"1739:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"454":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"455":{"_livelyDataWrapperId_":"1738:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"1738: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}]}},"456":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"457":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"458":{"x":-3,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"459":{"_x":0,"_y":0,"_width":7,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":346},"_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":"7","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}]}},"460":{"_fill":{"__isSmartRef__":true,"id":256},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"461":{"a":1,"b":0,"c":0,"d":1,"e":-3,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"462":{"x":7,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"463":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"464":{"runs":[2],"values":[{"__isSmartRef__":true,"id":465}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"465":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"466":{"x":643,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"467":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":316},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#25:lively.paint.RadialGradient)","namespaceURI":null}]}},"468":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"469":{"a":1,"b":0,"c":0,"d":1,"e":643,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"470":{"sourceObj":{"__isSmartRef__":true,"id":451},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":335},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"471":{"sourceObj":{"__isSmartRef__":true,"id":451},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":335},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"472":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"473":{"_x":0,"_y":0,"_width":673,"_height":22,"_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":"673","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"474":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"475":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"476":{"x":39,"y":612,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"477":{"_x":0,"_y":0,"_width":673,"_height":436,"_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":"673","namespaceURI":null},{"key":"height","value":"436","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"478":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"479":{"a":1,"b":0,"c":0,"d":1,"e":39,"f":612,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"480":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"481":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"482":{"textString":"Wiki control","savedTextString":"Wiki control","submorphs":[{"__isSmartRef__":true,"id":483}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"39:TextMorph","origin":{"__isSmartRef__":true,"id":488},"shape":{"__isSmartRef__":true,"id":489},"textContent":{"__isSmartRef__":true,"id":490},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":491},"textSelection":{"__isSmartRef__":true,"id":483},"priorExtent":{"__isSmartRef__":true,"id":492},"useChangeClue":false,"suppressHandles":true,"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":"39:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"483":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":482},"_livelyDataWrapperId_":"41:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":484},"shape":{"__isSmartRef__":true,"id":485},"priorExtent":{"__isSmartRef__":true,"id":486},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":487},"__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":"41:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"484":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"485":{"_livelyDataWrapperId_":"40: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":"40: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}]}},"486":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"487":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"488":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"489":{"_x":0,"_y":0,"_width":80,"_height":21.2,"_stroke":{"__isSmartRef__":true,"id":61},"_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":"80","namespaceURI":null},{"key":"height","value":"21.2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null}]}},"490":{"_fill":{"__isSmartRef__":true,"id":61},"__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}]}},"491":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"492":{"x":68,"y":42,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"493":{"submorphs":[{"__isSmartRef__":true,"id":494},{"__isSmartRef__":true,"id":544}],"owner":{"__isSmartRef__":true,"id":0},"_livelyDataWrapperId_":"335:WindowMorph","origin":{"__isSmartRef__":true,"id":636},"shape":{"__isSmartRef__":true,"id":637},"priorExtent":{"__isSmartRef__":true,"id":638},"pvtCachedTransform":{"__isSmartRef__":true,"id":639},"targetMorph":{"__isSmartRef__":true,"id":494},"titleBar":{"__isSmartRef__":true,"id":544},"contentOffset":{"__isSmartRef__":true,"id":640},"openForDragAndDrop":false,"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":641},"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"335:WindowMorph","namespaceURI":null},{"key":"transform","value":"translate(733,110)","namespaceURI":null}]},"withLayers":["WorkspaceLayer","UndoLayer"]},"494":{"submorphs":[{"__isSmartRef__":true,"id":495},{"__isSmartRef__":true,"id":525}],"owner":{"__isSmartRef__":true,"id":493},"_livelyDataWrapperId_":"330:ScrollPane","origin":{"__isSmartRef__":true,"id":539},"shape":{"__isSmartRef__":true,"id":540},"priorExtent":{"__isSmartRef__":true,"id":541},"pvtCachedTransform":{"__isSmartRef__":true,"id":542},"clipMorph":{"__isSmartRef__":true,"id":495},"verticalScrollBar":{"__isSmartRef__":true,"id":525},"attributeConnections":[{"__isSmartRef__":true,"id":543}],"suppressHandles":true,"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ScrollPane","__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":"330:ScrollPane","namespaceURI":null},{"key":"transform","value":"translate(0,22)","namespaceURI":null}]}},"495":{"submorphs":[{"__isSmartRef__":true,"id":496}],"owner":{"__isSmartRef__":true,"id":494},"_livelyDataWrapperId_":"331:ClipMorph","origin":{"__isSmartRef__":true,"id":519},"shape":{"__isSmartRef__":true,"id":520},"priorExtent":{"__isSmartRef__":true,"id":521},"clip":{"__isSmartRef__":true,"id":522},"_clip-path":"url(#31:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":524},"suppressHandles":true,"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__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":"331:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#31:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"496":{"textString":"if ((typeof cmdExec == 'undefined') || !(cmdExec instanceof CommandLineServerInterface))\n\tcmdExec = new CommandLineServerInterface();\n\nif (typeof cpuData == 'undefined')\n\tcpuData = [];\n\nObject.subclass('CommandLineResponse');\nObject.extend(CommandLineResponse, {\n\tcpuResponse: function(result) {\n\t\tvar d = new Date(result[0]);\n\t\td.setUTCMilliseconds(result[1].substr(0, 3));\n\n\t\tvar timestamp = d.valueOf();\n\t\tvar data = result.slice(2)\n\t\t\t.reject(function(line) { return line.trim() == ''; })\n\t\t\t.collect(function(line) { return line.split(/\\s+/); });\n\n\t\tif (timestamp > 0)\n\t\t\tcpuData.push({timestamp: timestamp, data: data});\n\t},\n});\n\nconnect(cmdExec, 'result', CommandLineResponse, 'cpuResponse', {converter: \n\tfunction(value) {\n\t\treturn value.stdout.split(\"\\n\")\n\t}\n});\n","savedTextString":"if ((typeof cmdExec == 'undefined') || !(cmdExec instanceof CommandLineServerInterface))\n\tcmdExec = new CommandLineServerInterface();\n\nif (typeof cpuData == 'undefined')\n\tcpuData = [];\n\nObject.subclass('CommandLineResponse');\nObject.extend(CommandLineResponse, {\n\tcpuResponse: function(result) {\n\t\tvar d = new Date(result[0]);\n\t\td.setUTCMilliseconds(result[1].substr(0, 3));\n\n\t\tvar timestamp = d.valueOf();\n\t\tvar data = result.slice(2)\n\t\t\t.reject(function(line) { return line.trim() == ''; })\n\t\t\t.collect(function(line) { return line.split(/\\s+/); });\n\n\t\tif (timestamp > 0)\n\t\t\tcpuData.push({timestamp: timestamp, data: data});\n\t},\n});\n\nconnect(cmdExec, 'result', CommandLineResponse, 'cpuResponse', {converter: \n\tfunction(value) {\n\t\treturn value.stdout.split(\"\\n\")\n\t}\n});\n","submorphs":[{"__isSmartRef__":true,"id":497}],"owner":{"__isSmartRef__":true,"id":495},"_livelyDataWrapperId_":"326:TextMorph","origin":{"__isSmartRef__":true,"id":502},"shape":{"__isSmartRef__":true,"id":503},"textContent":{"__isSmartRef__":true,"id":506},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":507},"textSelection":{"__isSmartRef__":true,"id":497},"priorExtent":{"__isSmartRef__":true,"id":508},"useChangeClue":true,"changeClue":{"__isSmartRef__":true,"id":509},"suppressHandles":true,"openForDragAndDrop":false,"fontFamily":"Courier","hasKeyboardFocus":false,"isSelecting":false,"textStyle":{"__isSmartRef__":true,"id":516},"undoTextStyle":{"__isSmartRef__":true,"id":518},"tabReplacePrefix":"\\","__SourceModuleName__":"Global.lively.Text","lastSearchString":"Date","__LivelyClassName__":"TextMorph","__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":"326:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"497":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":496},"_livelyDataWrapperId_":"328:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":498},"shape":{"__isSmartRef__":true,"id":499},"priorExtent":{"__isSmartRef__":true,"id":500},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":501},"openForDragAndDrop":false,"isCursor":true,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"328:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"498":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"499":{"_livelyDataWrapperId_":"327:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"327: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}]}},"500":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"501":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"502":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"503":{"_x":0,"_y":0,"_width":666,"_height":395.59999999999985,"_stroke":{"__isSmartRef__":true,"id":504},"_fill":{"__isSmartRef__":true,"id":505},"__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":"666","namespaceURI":null},{"key":"height","value":"395.59999999999985","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}]}},"504":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"505":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"506":{"_fill":{"__isSmartRef__":true,"id":61},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__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}]}},"507":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"508":{"x":654,"y":474,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"509":{"submorphs":[],"owner":null,"_livelyDataWrapperId_":"329:Morph","origin":{"__isSmartRef__":true,"id":510},"shape":{"__isSmartRef__":true,"id":511},"priorExtent":{"__isSmartRef__":true,"id":513},"mouseHandler":null,"_pointer-events":"none","ignoreWhenCopying":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":514},"rotation":0,"scalePoint":{"__isSmartRef__":true,"id":515},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__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":"329:Morph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null}]}},"510":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"511":{"_x":0,"_y":0,"_width":5,"_height":5,"_stroke":{"__isSmartRef__":true,"id":504},"_fill":{"__isSmartRef__":true,"id":512},"__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":"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}]}},"512":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"513":{"x":5,"y":5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"514":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"515":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"516":{"runs":[772],"values":[{"__isSmartRef__":true,"id":517}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"517":{"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"518":{"runs":[760],"values":[{"__isSmartRef__":true,"id":517}],"lastIndex":0,"lastRunIndex":0,"__LivelyClassName__":"RunArray","__SourceModuleName__":"Global.lively.Text"},"519":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"520":{"_x":0,"_y":0,"_width":666,"_height":416,"_fill":{"__isSmartRef__":true,"id":505},"__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":"666","namespaceURI":null},{"key":"height","value":"416","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}]}},"521":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"522":{"_livelyDataWrapperId_":"31:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":523},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"31:lively.scene.Clip","namespaceURI":null}]}},"523":{"_fill":{"__isSmartRef__":true,"id":505},"__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":"666","namespaceURI":null},{"key":"height","value":"416","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}]}},"524":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"525":{"submorphs":[{"__isSmartRef__":true,"id":526}],"owner":{"__isSmartRef__":true,"id":494},"_livelyDataWrapperId_":"333:SliderMorph","origin":{"__isSmartRef__":true,"id":533},"shape":{"__isSmartRef__":true,"id":534},"priorExtent":{"__isSmartRef__":true,"id":535},"value":1,"sliderExtent":0.1,"valueScale":1,"pvtCachedTransform":{"__isSmartRef__":true,"id":536},"slider":{"__isSmartRef__":true,"id":526},"styleClass":["slider_background"],"suppressHandles":true,"attributeConnections":[{"__isSmartRef__":true,"id":537},{"__isSmartRef__":true,"id":538}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"SliderMorph","__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":"333:SliderMorph","namespaceURI":null},{"key":"transform","value":"translate(665,0)","namespaceURI":null},{"key":"class","value":"slider_background","namespaceURI":null}]}},"526":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":525},"_livelyDataWrapperId_":"334:Morph","origin":{"__isSmartRef__":true,"id":527},"shape":{"__isSmartRef__":true,"id":528},"priorExtent":{"__isSmartRef__":true,"id":529},"pvtCachedTransform":{"__isSmartRef__":true,"id":530},"mouseHandler":{"__isSmartRef__":true,"id":531},"styleClass":["slider"],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__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":"334:Morph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"class","value":"slider","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"527":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"528":{"_x":0,"_y":0,"_width":13,"_height":416,"_stroke":{"__isSmartRef__":true,"id":190},"_fill":{"__isSmartRef__":true,"id":191},"_rx":6,"_ry":6,"__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":"13","namespaceURI":null},{"key":"height","value":"416","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}]}},"529":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"530":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"531":{"target":{"__isSmartRef__":true,"id":525},"eventSpec":{"__isSmartRef__":true,"id":532},"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"MouseHandlerForRelay"},"532":{"onMouseDown":"sliderPressed","onMouseMove":"sliderMoved","onMouseUp":"sliderReleased"},"533":{"x":665,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"534":{"_x":0,"_y":0,"_width":13,"_height":416,"_stroke":{"__isSmartRef__":true,"id":202},"_fill":{"__isSmartRef__":true,"id":203},"_rx":6,"_ry":6,"__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":"13","namespaceURI":null},{"key":"height","value":"416","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}]}},"535":{"x":5,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"536":{"a":1,"b":0,"c":0,"d":1,"e":665,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"537":{"sourceObj":{"__isSmartRef__":true,"id":525},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":494},"targetMethodName":"setVerticalScrollPosition","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"538":{"sourceObj":{"__isSmartRef__":true,"id":525},"sourceAttrName":"getSliderExtent","targetObj":{"__isSmartRef__":true,"id":494},"targetMethodName":"getVerticalVisibleExtent","converterString":null,"updaterString":null,"isActive":false,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"539":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"540":{"_x":0,"_y":0,"_width":678,"_height":416,"_fill":null,"_stroke":{"__isSmartRef__":true,"id":504},"__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":"678","namespaceURI":null},{"key":"height","value":"416","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null}]}},"541":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"542":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":22,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"543":{"sourceObj":{"__isSmartRef__":true,"id":494},"sourceAttrName":"setVerticalScrollPosition","targetObj":{"__isSmartRef__":true,"id":525},"targetMethodName":"setValue","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","isActive":false,"__LivelyClassName__":"AttributeConnection"},"544":{"submorphs":[{"__isSmartRef__":true,"id":545},{"__isSmartRef__":true,"id":557},{"__isSmartRef__":true,"id":569},{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":611}],"owner":{"__isSmartRef__":true,"id":493},"_livelyDataWrapperId_":"336:TitleBarMorph","origin":{"__isSmartRef__":true,"id":632},"shape":{"__isSmartRef__":true,"id":633},"priorExtent":{"__isSmartRef__":true,"id":634},"pvtCachedTransform":{"__isSmartRef__":true,"id":635},"mouseHandler":null,"_pointer-events":"none","contentMorph":{"__isSmartRef__":true,"id":546},"windowMorph":{"__isSmartRef__":true,"id":493},"label":{"__isSmartRef__":true,"id":557},"closeButton":{"__isSmartRef__":true,"id":569},"menuButton":{"__isSmartRef__":true,"id":590},"collapseButton":{"__isSmartRef__":true,"id":611},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"TitleBarMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"TitleBarMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"336:TitleBarMorph","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"545":{"submorphs":[{"__isSmartRef__":true,"id":546}],"owner":{"__isSmartRef__":true,"id":544},"_livelyDataWrapperId_":"338:ClipMorph","origin":{"__isSmartRef__":true,"id":551},"shape":{"__isSmartRef__":true,"id":552},"priorExtent":{"__isSmartRef__":true,"id":553},"clip":{"__isSmartRef__":true,"id":554},"_clip-path":"url(#32:lively.scene.Clip)","isClipMorph":true,"pvtCachedTransform":{"__isSmartRef__":true,"id":556},"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"ClipMorph","__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":"338:ClipMorph","namespaceURI":null},{"key":"clip-path","value":"url(#32:lively.scene.Clip)","namespaceURI":null},{"key":"transform","value":"translate(-1,-1)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"546":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":545},"_livelyDataWrapperId_":"337:Morph","origin":{"__isSmartRef__":true,"id":547},"shape":{"__isSmartRef__":true,"id":548},"priorExtent":{"__isSmartRef__":true,"id":549},"pvtCachedTransform":{"__isSmartRef__":true,"id":550},"styleClass":["titleBar"],"mouseHandler":null,"_pointer-events":"none","openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.oldCore.Morphs","__LivelyClassName__":"Morph","__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":"337:Morph","namespaceURI":null},{"key":"transform","value":"translate(1,1)","namespaceURI":null},{"key":"class","value":"titleBar","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null}]}},"547":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"548":{"_x":0,"_y":0,"_width":678,"_height":30,"_stroke":{"__isSmartRef__":true,"id":504},"_fill":{"__isSmartRef__":true,"id":222},"_rx":8,"_ry":8,"__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":"678","namespaceURI":null},{"key":"height","value":"30","namespaceURI":null},{"key":"stroke","value":"rgb(0,0,0)","namespaceURI":null},{"key":"fill","value":"url(#22:lively.paint.LinearGradient)","namespaceURI":null},{"key":"stroke-width","value":"2","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null}]}},"549":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"550":{"a":1,"b":0,"c":0,"d":1,"e":1,"f":1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"551":{"x":-1,"y":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"552":{"_x":0,"_y":0,"_width":680,"_height":23,"_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":"680","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"553":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"554":{"_livelyDataWrapperId_":"32:lively.scene.Clip","shape":{"__isSmartRef__":true,"id":555},"__LivelyClassName__":"lively.scene.Clip","__SourceModuleName__":"Global.lively.scene","__rawNodeInfo__":{"tagName":"clipPath","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"32:lively.scene.Clip","namespaceURI":null}]}},"555":{"_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":"680","namespaceURI":null},{"key":"height","value":"23","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"556":{"a":1,"b":0,"c":0,"d":1,"e":-1,"f":-1,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"557":{"textString":"1. Data gathering","savedTextString":"","submorphs":[{"__isSmartRef__":true,"id":558}],"owner":{"__isSmartRef__":true,"id":544},"_livelyDataWrapperId_":"340:TextMorph","origin":{"__isSmartRef__":true,"id":563},"shape":{"__isSmartRef__":true,"id":564},"textContent":{"__isSmartRef__":true,"id":565},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":566},"textSelection":{"__isSmartRef__":true,"id":558},"priorExtent":{"__isSmartRef__":true,"id":567},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":568},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"openForDragAndDrop":false,"styleClass":["titleBar_label"],"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"340:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(303.5,3)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_label","namespaceURI":null}]}},"558":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":557},"_livelyDataWrapperId_":"342:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":559},"shape":{"__isSmartRef__":true,"id":560},"priorExtent":{"__isSmartRef__":true,"id":561},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":562},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"342:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"559":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"560":{"_livelyDataWrapperId_":"341:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"341: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}]}},"561":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"562":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"563":{"x":303.5,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"564":{"_x":0,"_y":0,"_width":106,"_height":17.2,"_stroke":{"__isSmartRef__":true,"id":504},"_fill":null,"_rx":8,"_ry":8,"__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":"106","namespaceURI":null},{"key":"height","value":"17.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},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"fill-opacity","value":"0.5","namespaceURI":null}]}},"565":{"_fill":{"__isSmartRef__":true,"id":61},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__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}]}},"566":{"a":1,"b":0,"c":0,"d":1,"e":303.5,"f":3,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"567":{"x":94,"y":13.200000762939453,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"568":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"569":{"submorphs":[{"__isSmartRef__":true,"id":570}],"owner":{"__isSmartRef__":true,"id":544},"_livelyDataWrapperId_":"343:WindowControlMorph","origin":{"__isSmartRef__":true,"id":584},"shape":{"__isSmartRef__":true,"id":585},"priorExtent":{"__isSmartRef__":true,"id":586},"label":{"__isSmartRef__":true,"id":570},"pvtCachedTransform":{"__isSmartRef__":true,"id":587},"styleClass":["titleBar_closeButton"],"attributeConnections":[{"__isSmartRef__":true,"id":588},{"__isSmartRef__":true,"id":589}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"343:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(667,11)","namespaceURI":null},{"key":"class","value":"titleBar_closeButton","namespaceURI":null}]}},"570":{"textString":"X","savedTextString":"X","submorphs":[{"__isSmartRef__":true,"id":571}],"owner":{"__isSmartRef__":true,"id":569},"_livelyDataWrapperId_":"344:TextMorph","origin":{"__isSmartRef__":true,"id":576},"shape":{"__isSmartRef__":true,"id":577},"textContent":{"__isSmartRef__":true,"id":578},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":579},"textSelection":{"__isSmartRef__":true,"id":571},"priorExtent":{"__isSmartRef__":true,"id":580},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":581},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":256},"textStyle":{"__isSmartRef__":true,"id":582},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"344:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-4,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"571":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":570},"_livelyDataWrapperId_":"346:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":572},"shape":{"__isSmartRef__":true,"id":573},"priorExtent":{"__isSmartRef__":true,"id":574},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":575},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"346:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"572":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"573":{"_livelyDataWrapperId_":"345:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"345: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}]}},"574":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"575":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"576":{"x":-4,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"577":{"_x":0,"_y":0,"_width":8,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":504},"_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":"8","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}]}},"578":{"_fill":{"__isSmartRef__":true,"id":256},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"579":{"a":1,"b":0,"c":0,"d":1,"e":-4,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"580":{"x":8,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"581":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"582":{"runs":[2],"values":[{"__isSmartRef__":true,"id":583}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"583":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"584":{"x":667,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"585":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":264},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#23:lively.paint.RadialGradient)","namespaceURI":null}]}},"586":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"587":{"a":1,"b":0,"c":0,"d":1,"e":667,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"588":{"sourceObj":{"__isSmartRef__":true,"id":569},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":493},"targetMethodName":"getCloseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"589":{"sourceObj":{"__isSmartRef__":true,"id":569},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":493},"targetMethodName":"initiateShutdown","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"590":{"submorphs":[{"__isSmartRef__":true,"id":591}],"owner":{"__isSmartRef__":true,"id":544},"_livelyDataWrapperId_":"347:WindowControlMorph","origin":{"__isSmartRef__":true,"id":605},"shape":{"__isSmartRef__":true,"id":606},"priorExtent":{"__isSmartRef__":true,"id":607},"label":{"__isSmartRef__":true,"id":591},"pvtCachedTransform":{"__isSmartRef__":true,"id":608},"styleClass":["titleBar_menuButton"],"attributeConnections":[{"__isSmartRef__":true,"id":609},{"__isSmartRef__":true,"id":610}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"347:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(11,11)","namespaceURI":null},{"key":"class","value":"titleBar_menuButton","namespaceURI":null}]}},"591":{"textString":"M","savedTextString":"M","submorphs":[{"__isSmartRef__":true,"id":592}],"owner":{"__isSmartRef__":true,"id":590},"_livelyDataWrapperId_":"348:TextMorph","origin":{"__isSmartRef__":true,"id":597},"shape":{"__isSmartRef__":true,"id":598},"textContent":{"__isSmartRef__":true,"id":599},"lineNumberHint":0,"pvtCachedTransform":{"__isSmartRef__":true,"id":600},"textSelection":{"__isSmartRef__":true,"id":592},"priorExtent":{"__isSmartRef__":true,"id":601},"useChangeClue":false,"shouldNotRender":false,"padding":{"__isSmartRef__":true,"id":602},"wrap":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":256},"textStyle":{"__isSmartRef__":true,"id":603},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"348:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-5,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"592":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":591},"_livelyDataWrapperId_":"350:TextSelectionMorph","origin":{"__isSmartRef__":true,"id":593},"shape":{"__isSmartRef__":true,"id":594},"priorExtent":{"__isSmartRef__":true,"id":595},"mouseHandler":null,"_pointer-events":"none","pvtCachedTransform":{"__isSmartRef__":true,"id":596},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"350:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"593":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"594":{"_livelyDataWrapperId_":"349:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"349: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}]}},"595":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"596":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"597":{"x":-5,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"598":{"_x":0,"_y":0,"_width":10,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":504},"_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":"10","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}]}},"599":{"_fill":{"__isSmartRef__":true,"id":256},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","namespaceURI":null},{"key":"font-size","value":"12","namespaceURI":null},{"key":"font-family","value":"Helvetica","namespaceURI":null}]}},"600":{"a":1,"b":0,"c":0,"d":1,"e":-5,"f":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"601":{"x":10,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"602":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"603":{"runs":[2],"values":[{"__isSmartRef__":true,"id":604}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"604":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"605":{"x":11,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"606":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":290},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#24:lively.paint.RadialGradient)","namespaceURI":null}]}},"607":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"608":{"a":1,"b":0,"c":0,"d":1,"e":11,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"609":{"sourceObj":{"__isSmartRef__":true,"id":590},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":493},"targetMethodName":"getMenuHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"610":{"sourceObj":{"__isSmartRef__":true,"id":590},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":493},"targetMethodName":"showTargetMorphMenu","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"611":{"submorphs":[{"__isSmartRef__":true,"id":612}],"owner":{"__isSmartRef__":true,"id":544},"_livelyDataWrapperId_":"351:WindowControlMorph","origin":{"__isSmartRef__":true,"id":626},"shape":{"__isSmartRef__":true,"id":627},"priorExtent":{"__isSmartRef__":true,"id":628},"label":{"__isSmartRef__":true,"id":612},"pvtCachedTransform":{"__isSmartRef__":true,"id":629},"styleClass":["titleBar_collapseButton"],"attributeConnections":[{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631}],"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Widgets","__LivelyClassName__":"WindowControlMorph","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"lively:type","value":"WindowControlMorph","namespaceURI":"http://www.experimentalstuff.com/Lively"},{"key":"id","value":"351:WindowControlMorph","namespaceURI":null},{"key":"transform","value":"translate(648,11)","namespaceURI":null},{"key":"class","value":"titleBar_collapseButton","namespaceURI":null}]}},"612":{"textString":"–","savedTextString":"–","submorphs":[{"__isSmartRef__":true,"id":613}],"owner":{"__isSmartRef__":true,"id":611},"_livelyDataWrapperId_":"352: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":"Shrink","mouseHandler":null,"_pointer-events":"none","suppressGrabbing":true,"styleClass":["titleBar_button_label"],"textColor":{"__isSmartRef__":true,"id":256},"textStyle":{"__isSmartRef__":true,"id":624},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextMorph","__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":"352:TextMorph","namespaceURI":null},{"key":"transform","value":"translate(-3,-6)","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"class","value":"titleBar_button_label","namespaceURI":null},{"key":"display","value":"none","namespaceURI":null}]}},"613":{"submorphs":[],"owner":{"__isSmartRef__":true,"id":612},"_livelyDataWrapperId_":"354: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},"openForDragAndDrop":false,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextSelectionMorph","__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":"354:TextSelectionMorph","namespaceURI":null},{"key":"pointer-events","value":"none","namespaceURI":null},{"key":"transform","value":"translate(0,0)","namespaceURI":null}]}},"614":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"615":{"_livelyDataWrapperId_":"353:lively.scene.Group","content":[],"_fill":null,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Group","__rawNodeInfo__":{"tagName":"g","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"353: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,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"617":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"618":{"x":-3,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"619":{"_x":0,"_y":0,"_width":7,"_height":13.2,"_stroke":{"__isSmartRef__":true,"id":504},"_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":"7","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":256},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Text","__rawNodeInfo__":{"tagName":"text","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"kerning","value":"0","namespaceURI":null},{"key":"fill","value":"rgb(127,127,127)","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":-6,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"622":{"x":7,"y":13.199999809265137,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"623":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"624":{"runs":[2],"values":[{"__isSmartRef__":true,"id":625}],"lastIndex":0,"lastRunIndex":0,"__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"RunArray"},"625":{"style":"bold","__SourceModuleName__":"Global.lively.Text","__LivelyClassName__":"TextEmphasis"},"626":{"x":648,"y":11,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"627":{"_cx":0,"_cy":0,"_rx":8,"_ry":8,"_fill":{"__isSmartRef__":true,"id":316},"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Ellipse","__rawNodeInfo__":{"tagName":"ellipse","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"cx","value":"0","namespaceURI":null},{"key":"cy","value":"0","namespaceURI":null},{"key":"rx","value":"8","namespaceURI":null},{"key":"ry","value":"8","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null},{"key":"fill","value":"url(#25:lively.paint.RadialGradient)","namespaceURI":null}]}},"628":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"629":{"a":1,"b":0,"c":0,"d":1,"e":648,"f":11,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"630":{"sourceObj":{"__isSmartRef__":true,"id":611},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":493},"targetMethodName":"getCollapseHelp","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"631":{"sourceObj":{"__isSmartRef__":true,"id":611},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":493},"targetMethodName":"toggleCollapse","converterString":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"632":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"633":{"_x":0,"_y":0,"_width":678,"_height":22,"_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":"678","namespaceURI":null},{"key":"height","value":"22","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"634":{"x":501,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"635":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__SourceModuleName__":"Global.lively.scene","__LivelyClassName__":"lively.scene.Similitude"},"636":{"x":733,"y":110,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"637":{"_x":0,"_y":0,"_width":678,"_height":438,"_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":"678","namespaceURI":null},{"key":"height","value":"438","namespaceURI":null},{"key":"stroke-width","value":"0","namespaceURI":null},{"key":"fill","value":"none","namespaceURI":null},{"key":"stroke-opacity","value":"0","namespaceURI":null}]}},"638":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"639":{"a":1,"b":0,"c":0,"d":1,"e":733,"f":110,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"640":{"x":0,"y":23,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"641":{"x":1,"y":1,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"642":{"a":1,"b":0,"c":0,"d":1,"e":0,"f":0,"__LivelyClassName__":"lively.scene.Similitude","__SourceModuleName__":"Global.lively.scene"},"643":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"644":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"645":{"_fill":{"__isSmartRef__":true,"id":646},"_stroke":{"__isSmartRef__":true,"id":647},"__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":"1805.3","namespaceURI":null},{"key":"height","value":"3500.2","namespaceURI":null},{"key":"fill","value":"rgb(255,255,255)","namespaceURI":null},{"key":"stroke","value":"rgb(255,207,225)","namespaceURI":null},{"key":"stroke-width","value":"2.7","namespaceURI":null},{"key":"stroke-opacity","value":"1","namespaceURI":null},{"key":"fill-opacity","value":"1","namespaceURI":null}]}},"646":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"647":{"r":1,"g":0.8117647058823529,"b":0.8823529411764706,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"648":{"x":1805.300048828125,"y":3500.199951171875,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"649":{"styleName":"hpi","raisedBorder":{"__isSmartRef__":true,"id":650},"button":{"__isSmartRef__":true,"id":655},"widgetPanel":{"__isSmartRef__":true,"id":656},"focusHalo":{"__isSmartRef__":true,"id":659},"panel":{"__isSmartRef__":true,"id":661},"link":{"__isSmartRef__":true,"id":664},"helpText":{"__isSmartRef__":true,"id":666},"menu_items":{"__isSmartRef__":true,"id":668},"menu_list":{"__isSmartRef__":true,"id":670},"slider":{"__isSmartRef__":true,"id":672},"slider_background":{"__isSmartRef__":true,"id":673},"slider_horizontal":{"__isSmartRef__":true,"id":674},"slider_background_horizontal":{"__isSmartRef__":true,"id":681},"titleBar":{"__isSmartRef__":true,"id":686},"titleBar_label":{"__isSmartRef__":true,"id":687},"titleBar_label_highlight":{"__isSmartRef__":true,"id":688},"titleBar_button_label":{"__isSmartRef__":true,"id":690},"titleBar_closeButton":{"__isSmartRef__":true,"id":691},"titleBar_menuButton":{"__isSmartRef__":true,"id":692},"titleBar_collapseButton":{"__isSmartRef__":true,"id":693},"titleBar_closeButton_highlight":{"__isSmartRef__":true,"id":694},"titleBar_menuButton_highlight":{"__isSmartRef__":true,"id":700},"titleBar_collapseButton_highlight":{"__isSmartRef__":true,"id":706},"clock":{"__isSmartRef__":true,"id":712},"fabrik":{"__isSmartRef__":true,"id":717},"world":{"__isSmartRef__":true,"id":719}},"650":{"borderColor":{"__isSmartRef__":true,"id":651}},"651":{"vector":{"__isSmartRef__":true,"id":652},"stops":[{"__isSmartRef__":true,"id":653},{"__isSmartRef__":true,"id":654}],"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}]}},"652":{"x":0,"y":0,"width":1,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"653":{"__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}]}},"654":{"__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}]}},"655":{"borderColor":{"__isSmartRef__":true,"id":67},"borderWidth":0.6,"borderRadius":5,"fill":{"__isSmartRef__":true,"id":46}},"656":{"borderColor":{"__isSmartRef__":true,"id":657},"borderWidth":4,"borderRadius":16,"fill":{"__isSmartRef__":true,"id":658},"opacity":0.4},"657":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"658":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"659":{"fill":null,"borderColor":{"__isSmartRef__":true,"id":660},"strokeOpacity":0.5},"660":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"661":{"fill":{"__isSmartRef__":true,"id":662},"borderWidth":2,"borderColor":{"__isSmartRef__":true,"id":663}},"662":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"663":{"r":0.2,"g":0.2,"b":0.2,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"664":{"borderColor":{"__isSmartRef__":true,"id":665},"borderWidth":1,"fill":{"__isSmartRef__":true,"id":202}},"665":{"r":0,"g":0.8,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"666":{"borderRadius":15,"fill":{"__isSmartRef__":true,"id":667},"fillOpacity":0.8},"667":{"r":1,"g":0.9725490196078431,"b":0.8936274509803921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"668":{"fontSize":14,"textColor":{"__isSmartRef__":true,"id":669}},"669":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"670":{"fill":{"__isSmartRef__":true,"id":671}},"671":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"672":{"borderColor":{"__isSmartRef__":true,"id":190},"borderOpacity":1,"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":191}},"673":{"borderColor":{"__isSmartRef__":true,"id":202},"borderWidth":1,"strokeOpacity":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":203}},"674":{"borderColor":{"__isSmartRef__":true,"id":675},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":676}},"675":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"676":{"vector":{"__isSmartRef__":true,"id":677},"stops":[{"__isSmartRef__":true,"id":678},{"__isSmartRef__":true,"id":679},{"__isSmartRef__":true,"id":680}],"refcount":2,"_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}]}},"677":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"678":{"__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}]}},"679":{"__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}]}},"680":{"__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}]}},"681":{"borderColor":{"__isSmartRef__":true,"id":675},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":682}},"682":{"vector":{"__isSmartRef__":true,"id":677},"stops":[{"__isSmartRef__":true,"id":683},{"__isSmartRef__":true,"id":684},{"__isSmartRef__":true,"id":685}],"refcount":2,"_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}]}},"683":{"__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}]}},"684":{"__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}]}},"685":{"__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}]}},"686":{"borderRadius":8,"borderWidth":2,"bordercolor":{"__isSmartRef__":true,"id":675},"fill":{"__isSmartRef__":true,"id":222}},"687":{"fill":null},"688":{"fill":{"__isSmartRef__":true,"id":689},"fillOpacity":0.5},"689":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"690":{"textColor":{"__isSmartRef__":true,"id":256},"fontStyle":"bold"},"691":{"fill":{"__isSmartRef__":true,"id":264}},"692":{"fill":{"__isSmartRef__":true,"id":290}},"693":{"fill":{"__isSmartRef__":true,"id":316}},"694":{"fill":{"__isSmartRef__":true,"id":695}},"695":{"stops":[{"__isSmartRef__":true,"id":696},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":698}],"f":{"__isSmartRef__":true,"id":699},"refcount":15,"_livelyDataWrapperId_":"26:lively.paint.RadialGradient","fx":0.4,"fy":0.2,"__SourceModuleName__":"Global.lively.scene","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"26:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"696":{"__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(226,179,179)","namespaceURI":null}]}},"697":{"__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(158,0,0)","namespaceURI":null}]}},"698":{"__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(95,0,0)","namespaceURI":null}]}},"699":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"700":{"fill":{"__isSmartRef__":true,"id":701}},"701":{"stops":[{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703},{"__isSmartRef__":true,"id":704}],"f":{"__isSmartRef__":true,"id":705},"refcount":15,"_livelyDataWrapperId_":"27:lively.paint.RadialGradient","fx":0.4,"fy":0.2,"__SourceModuleName__":"Global.lively.scene","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"27:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"702":{"__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(179,219,179)","namespaceURI":null}]}},"703":{"__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(0,133,0)","namespaceURI":null}]}},"704":{"__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(0,79,0)","namespaceURI":null}]}},"705":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"706":{"fill":{"__isSmartRef__":true,"id":707}},"707":{"stops":[{"__isSmartRef__":true,"id":708},{"__isSmartRef__":true,"id":709},{"__isSmartRef__":true,"id":710}],"f":{"__isSmartRef__":true,"id":711},"refcount":15,"_livelyDataWrapperId_":"28:lively.paint.RadialGradient","fx":0.4,"fy":0.2,"__SourceModuleName__":"Global.lively.scene","_fx":0.4,"_fy":0.2,"__LivelyClassName__":"lively.paint.RadialGradient","__rawNodeInfo__":{"tagName":"radialGradient","namespaceURI":"http://www.w3.org/2000/svg","attributes":[{"key":"id","value":"28:lively.paint.RadialGradient","namespaceURI":null},{"key":"fx","value":"0.4","namespaceURI":null},{"key":"fy","value":"0.2","namespaceURI":null}]}},"708":{"__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(255,243,209)","namespaceURI":null}]}},"709":{"__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(255,215,102)","namespaceURI":null}]}},"710":{"__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(153,129,61)","namespaceURI":null}]}},"711":{"x":0.4,"y":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"712":{"borderColor":{"__isSmartRef__":true,"id":713},"borderWidth":4,"fill":{"__isSmartRef__":true,"id":714}},"713":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"714":{"stops":[{"__isSmartRef__":true,"id":715},{"__isSmartRef__":true,"id":716}],"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}]}},"715":{"__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}]}},"716":{"__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}]}},"717":{"borderColor":{"__isSmartRef__":true,"id":718},"borderWidth":1,"borderRadius":2,"fill":{"__isSmartRef__":true,"id":202},"opacity":1},"718":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"719":{"fill":{"__isSmartRef__":true,"id":689}},"isSimplifiedRegistry":true}}]]> Lively Kernel canvas