[object Object].metaInfoLoaded) with value null:\nSyntaxError: Parse error\nundefined\n/repository/webwerkstatt/lively/morphic/MorphAddons.js?1305035351103:451LOGERROR: SyntaxError: Parse error\n/repository/webwerkstatt/lively/morphic/MorphAddons.js?1305035351103:451Cannot create function SyntaxError: Parse error\n/repository/webwerkstatt/lively/morphic/MorphAddons.js?1305035351103:451Error when trying to update AttributeConnection([object Object].loadedMetaInfo --> [object Object].metaInfoLoaded) with value null:\nSyntaxError: Parse error\nundefined\n/repository/webwerkstatt/lively/morphic/MorphAddons.js?1305035351103:451LOGERROR: SyntaxError: Parse error\n/repository/webwerkstatt/lively/morphic/MorphAddons.js?1305035351103:451No FindSenders found in PartsBin/NewWorld\n/repository/webwerkstatt/lively/morphic/MorphAddons.js?1305035351103:451Error in handleEvent TypeError: Result of expression 'part' [undefined] is not an object.\nundefined","__LivelyClassName__":"lively.morphic.TextChunk"},"37":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"38":{"x":1312.3614340942477,"y":374,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"39":{"submorphs":[{"__isSmartRef__":true,"id":40},{"__isSmartRef__":true,"id":52}],"scripts":[],"id":222,"shape":{"__isSmartRef__":true,"id":168},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":170},"_Position":{"__isSmartRef__":true,"id":171},"priorExtent":{"__isSmartRef__":true,"id":172},"targetMorph":{"__isSmartRef__":true,"id":40},"titleBar":{"__isSmartRef__":true,"id":52},"contentOffset":{"__isSmartRef__":true,"id":47},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"_Rotation":0,"_Scale":1,"prevDragPos":{"__isSmartRef__":true,"id":173},"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"40":{"submorphs":[],"scripts":[],"id":221,"shape":{"__isSmartRef__":true,"id":41},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":46},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":47},"priorExtent":{"__isSmartRef__":true,"id":48},"_MaxTextWidth":1153.8719879168443,"_MaxTextHeight":665.0241516737489,"textChunks":[{"__isSmartRef__":true,"id":49}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":39},"layout":{"__isSmartRef__":true,"id":51},"priorSelectionRange":[1975,1975],"charsReplaced":"","lastFindLoc":1579,"savedTextString":"// MethodFinderPane (this)\n\n// ** MethodFinderPane's Scripts **\nthis.addScript(function browse(methodItem) {\n\tif (! methodItem) return;\n\tvar class = methodItem.class\n\tvar methodName = methodItem.method;\n\tvar orgFunc = class.prototype[methodName].getOriginal();\n\t\n\tvar source = \"// changes here only affect runtime\\n\" +\n\t\tclass.type + \".addMethods({\\n\\t\" + methodName + \":\" +\n\t\torgFunc + \"\\n});\"\n\tthis.get('sourceText').setTextString(source)\n\n\tthis.emphasizeStringIn(this.get('sourceText'), \n\t\tthis.get('searchText').textString, {color: Color.red});\n\n\tvar info = '' + orgFunc.sourceModule \n\n\tthis.get('infoText').setTextString(info)\n});\n\nthis.addScript(function emphasizeStringIn(morph, string, style) {\n\tvar m;\n\tvar re = new RegExp(string, \"g\");\n\twhile(m = re.exec(morph.textString)) {\n\t\tvar from = m.index,\n\t\t\tto = m.index + m[0].length;\n\t\tmorph.emphasize(style, from, to)\n\t}\n});\n\nthis.addScript(function itemsFromFinds(finds) {\n\tfinds = finds.sortBy(function(ea) {return ea.search + ' '+ ea.class.name})\n\tvar items = finds.collect(function(ea) {\n\t\tvar pref = \"\";\n\t\tif (ea.search == \"sender\") pref = \"full: \"\n\t\tif (ea.search == \"implementor\") pref = \"name: \"\n\t\treturn {\n\t\t\tisListItem: true,\n\t\t\tvalue: ea,\n\t\t\tstring: pref + ea.class.name + \": \" + ea.method,\n\t\t}\n\t})\n\treturn items\n});\n\nthis.addScript(function reset() {\n\tthis.get('searchResultList').updateList([]);\n\tthis.get('searchResultList').setSelection(null);\n\tthis.get('searchText').setTextString('enter method name her');\n\tthis.get('sourceText').setTextString('no code');\n\tthis.get('infoText').setTextString('');\n});\n\nthis.addScript(function search(searchString) {\n\tvar finds = [];\n\tvar i=0;\n\tvar re = new RegExp(searchString)\n\tvar time = Functions.timeToRun(function() {\n\tthis.withAllMethodsDo(function(eaClass, eaMethod) {\n\t\ti++;\n\t\tif (eaMethod.match(re)) {\n\t\t\tfinds.push({search: 'implementor', class: eaClass, method: eaMethod})\n\t\t}\t\n\n\t\tvar f = eaClass.prototype[eaMethod];\n\t\t\tif (!f.getOriginal) return;\n\t\tvar source = String(f.getOriginal())\n\t\tif (source.match(re)){\n\t\t\tfinds.push({search: 'sender', class: eaClass, method: eaMethod})\n\t\t}\t\n\t})\n\t}.bind(this))\n\n\talert(\"search \" + i + \" methods, found \" \n\t\t+ finds.length + \" methods in \" + time + \"ms\")\n\tvar items = this.itemsFromFinds(finds)\n\tthis.get('searchResultList').updateList(items);\n});\n\nthis.addScript(function setSearch(searchString) {\n\tthis.get('searchText').setTextString(searchString);\n\tthis.search(searchString)\n\tvar list = this.get('searchResultList').getList();\n\tif (list.length > 0) this.get('searchResultList').setSelection(list[0])\n});\n\nthis.addScript(function withAllMethodsDo(func) {\n\n\tGlobal.classes(true).uniq().forEach(function(eaClass) {\n\t\tFunctions.own(eaClass.prototype)\n\t\t\t.forEach(function(eaMethod) {\n\t\t\t\tfunc(eaClass, eaMethod)\n\t\t\t})\t\n\t})\n\tcop.allLayers\n\t\n});","prevScroll":[0,1007],"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"41":{"_Position":{"__isSmartRef__":true,"id":42},"_Extent":{"__isSmartRef__":true,"id":43},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":44},"_Fill":{"__isSmartRef__":true,"id":45},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"42":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"43":{"x":1153.8719879168443,"y":665.0241516737489,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"44":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"45":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"46":{"x":2,"y":1,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"47":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"48":{"x":1153.8719879168443,"y":665.0241516737489,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"49":{"style":{"__isSmartRef__":true,"id":50},"morph":{"__isSmartRef__":true,"id":40},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"// MethodFinderPane (this)\n\n// ** MethodFinderPane's Scripts **\nthis.addScript(function browse(methodItem) {\n\tif (! methodItem) return;\n\tvar class = methodItem.class\n\tvar methodName = methodItem.method;\n\tvar orgFunc = class.prototype[methodName].getOriginal();\n\t\n\tvar source = \"// changes here only affect runtime\\n\" +\n\t\tclass.type + \".addMethods({\\n\\t\" + methodName + \":\" +\n\t\torgFunc + \"\\n});\"\n\tthis.get('sourceText').setTextString(source)\n\n\tthis.emphasizeStringIn(this.get('sourceText'), \n\t\tthis.get('searchText').textString, {color: Color.red});\n\n\tvar info = '' + orgFunc.sourceModule \n\n\tthis.get('infoText').setTextString(info)\n});\n\nthis.addScript(function emphasizeStringIn(morph, string, style) {\n\tvar m;\n\tvar re = new RegExp(string, \"g\");\n\twhile(m = re.exec(morph.textString)) {\n\t\tvar from = m.index,\n\t\t\tto = m.index + m[0].length;\n\t\tmorph.emphasize(style, from, to)\n\t}\n});\n\nthis.addScript(function itemsFromFinds(finds) {\n\tfinds = finds.sortBy(function(ea) {return ea.search + ' '+ ea.class.name})\n\tvar items = finds.collect(function(ea) {\n\t\tvar pref = \"\";\n\t\tif (ea.search == \"sender\") pref = \"full: \"\n\t\tif (ea.search == \"implementor\") pref = \"name: \"\n\t\treturn {\n\t\t\tisListItem: true,\n\t\t\tvalue: ea,\n\t\t\tstring: pref + ea.class.name + \": \" + ea.method,\n\t\t}\n\t})\n\treturn items\n});\n\nthis.addScript(function reset() {\n\tthis.get('searchResultList').updateList([]);\n\tthis.get('searchResultList').setSelection(null);\n\tthis.get('searchText').setTextString('enter method name her');\n\tthis.get('sourceText').setTextString('no code');\n\tthis.get('infoText').setTextString('');\n});\n\n3 + 4\n\nthis.addScript(function search(searchString) {\n\tvar finds = [];\n\tvar i=0;\n\tvar re = new RegExp(searchString)\n\tvar time = Functions.timeToRun(function() {\n\tthis.withAllMethodsDo(function(eaClass, eaMethod) {\n\t\ti++;\n\t\tif (eaMethod.match(re)) {\n\t\t\tfinds.push({search: 'implementor', class: eaClass, method: eaMethod})\n\t\t}\t\n\n\t\tvar f = eaClass.prototype[eaMethod];\n\t\t\tif (!f.getOriginal) return;\n\t\tvar source = String(f.getOriginal())\n\t\tif (source.match(re)){\n\t\t\tfinds.push({search: 'sender', class: eaClass, method: eaMethod})\n\t\t}\t\n\t})\n\t}.bind(this))\n\n\talert(\"search \" + i + \" methods, found \" \n\t\t+ finds.length + \" methods in \" + time + \"ms\")\n\tvar items = this.itemsFromFinds(finds)\n\tthis.get('searchResultList').updateList(items);\n});\n\nthis.addScript(function setSearch(searchString) {\n\tthis.get('searchText').setTextString(searchString);\n\tthis.search(searchString)\n\tvar list = this.get('searchResultList').getList();\n\tif (list.length > 0) this.get('searchResultList').setSelection(list[0])\n});\n\nthis.addScript(function withAllMethodsDo(func) {\n\n\tGlobal.classes(true).uniq().forEach(function(eaClass) {\n\t\tFunctions.own(eaClass.prototype)\n\t\t\t.forEach(function(eaMethod) {\n\t\t\t\tfunc(eaClass, eaMethod)\n\t\t\t})\t\n\t})\n\tcop.allLayers\n\t\n});","__LivelyClassName__":"lively.morphic.TextChunk"},"50":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"51":{"resizeWidth":true,"resizeHeight":true},"52":{"submorphs":[{"__isSmartRef__":true,"id":53},{"__isSmartRef__":true,"id":62},{"__isSmartRef__":true,"id":100},{"__isSmartRef__":true,"id":126}],"scripts":[],"id":223,"shape":{"__isSmartRef__":true,"id":153},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":165},"_Position":{"__isSmartRef__":true,"id":166},"eventsAreIgnored":true,"windowMorph":{"__isSmartRef__":true,"id":39},"label":{"__isSmartRef__":true,"id":53},"closeButton":{"__isSmartRef__":true,"id":62},"menuButton":{"__isSmartRef__":true,"id":100},"collapseButton":{"__isSmartRef__":true,"id":126},"priorExtent":{"__isSmartRef__":true,"id":167},"owner":{"__isSmartRef__":true,"id":39},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"53":{"submorphs":[],"scripts":[],"id":224,"shape":{"__isSmartRef__":true,"id":54},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":57},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":58},"priorExtent":{"__isSmartRef__":true,"id":59},"_MaxTextWidth":null,"_MaxTextHeight":22,"textChunks":[{"__isSmartRef__":true,"id":60}],"evalEnabled":false,"isLabel":true,"eventsAreIgnored":true,"_FontSize":10,"owner":{"__isSmartRef__":true,"id":52},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"54":{"_Position":{"__isSmartRef__":true,"id":55},"_Extent":{"__isSmartRef__":true,"id":56},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":44},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"55":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"56":{"x":72,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"57":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"58":{"x":540.9359939584222,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"59":{"x":72,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"60":{"style":{"__isSmartRef__":true,"id":61},"morph":{"__isSmartRef__":true,"id":53},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk"},"61":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"62":{"submorphs":[{"__isSmartRef__":true,"id":63}],"scripts":[],"id":225,"shape":{"__isSmartRef__":true,"id":72},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":86},"priorExtent":{"__isSmartRef__":true,"id":87},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":76},"lighterFill":{"__isSmartRef__":true,"id":88},"label":{"__isSmartRef__":true,"id":63},"owner":{"__isSmartRef__":true,"id":52},"layout":{"__isSmartRef__":true,"id":97},"attributeConnections":[{"__isSmartRef__":true,"id":98},{"__isSmartRef__":true,"id":99}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"63":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":64},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":67},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":68},"priorExtent":{"__isSmartRef__":true,"id":69},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":70}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":62},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"64":{"_Position":{"__isSmartRef__":true,"id":65},"_Extent":{"__isSmartRef__":true,"id":66},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":44},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"65":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"66":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"67":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"68":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"69":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"70":{"style":{"__isSmartRef__":true,"id":71},"morph":{"__isSmartRef__":true,"id":63},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"71":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"72":{"_Position":{"__isSmartRef__":true,"id":73},"_Extent":{"__isSmartRef__":true,"id":74},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":75},"_Fill":{"__isSmartRef__":true,"id":76},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"73":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"74":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"75":{"r":0.8392156862745098,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"76":{"stops":[{"__isSmartRef__":true,"id":77},{"__isSmartRef__":true,"id":79},{"__isSmartRef__":true,"id":81},{"__isSmartRef__":true,"id":83}],"vector":{"__isSmartRef__":true,"id":85},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"77":{"offset":0,"color":{"__isSmartRef__":true,"id":78}},"78":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"79":{"offset":0.4,"color":{"__isSmartRef__":true,"id":80}},"80":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"81":{"offset":0.6,"color":{"__isSmartRef__":true,"id":82}},"82":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"83":{"offset":1,"color":{"__isSmartRef__":true,"id":84}},"84":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"85":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"86":{"x":1133.8719879168443,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"87":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"88":{"stops":[{"__isSmartRef__":true,"id":89},{"__isSmartRef__":true,"id":91},{"__isSmartRef__":true,"id":93},{"__isSmartRef__":true,"id":95}],"vector":{"__isSmartRef__":true,"id":85},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"89":{"offset":0,"color":{"__isSmartRef__":true,"id":90}},"90":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"91":{"offset":0.4,"color":{"__isSmartRef__":true,"id":92}},"92":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"93":{"offset":0.6,"color":{"__isSmartRef__":true,"id":94}},"94":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"95":{"offset":1,"color":{"__isSmartRef__":true,"id":96}},"96":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"97":{"moveHorizontal":true},"98":{"sourceObj":{"__isSmartRef__":true,"id":62},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":39},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"99":{"sourceObj":{"__isSmartRef__":true,"id":62},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":39},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"100":{"submorphs":[{"__isSmartRef__":true,"id":101}],"scripts":[],"id":227,"shape":{"__isSmartRef__":true,"id":110},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":113},"priorExtent":{"__isSmartRef__":true,"id":114},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":76},"lighterFill":{"__isSmartRef__":true,"id":115},"label":{"__isSmartRef__":true,"id":101},"owner":{"__isSmartRef__":true,"id":52},"attributeConnections":[{"__isSmartRef__":true,"id":124},{"__isSmartRef__":true,"id":125}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"101":{"submorphs":[],"scripts":[],"id":228,"shape":{"__isSmartRef__":true,"id":102},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":105},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":106},"priorExtent":{"__isSmartRef__":true,"id":107},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":108}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":100},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"102":{"_Position":{"__isSmartRef__":true,"id":103},"_Extent":{"__isSmartRef__":true,"id":104},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":44},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"103":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"104":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"105":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"106":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"107":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"108":{"style":{"__isSmartRef__":true,"id":109},"morph":{"__isSmartRef__":true,"id":101},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"109":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"110":{"_Position":{"__isSmartRef__":true,"id":111},"_Extent":{"__isSmartRef__":true,"id":112},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":75},"_Fill":{"__isSmartRef__":true,"id":76},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"111":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"112":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"113":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"114":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"115":{"stops":[{"__isSmartRef__":true,"id":116},{"__isSmartRef__":true,"id":118},{"__isSmartRef__":true,"id":120},{"__isSmartRef__":true,"id":122}],"vector":{"__isSmartRef__":true,"id":85},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"116":{"offset":0,"color":{"__isSmartRef__":true,"id":117}},"117":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"118":{"offset":0.4,"color":{"__isSmartRef__":true,"id":119}},"119":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"120":{"offset":0.6,"color":{"__isSmartRef__":true,"id":121}},"121":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"122":{"offset":1,"color":{"__isSmartRef__":true,"id":123}},"123":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"124":{"sourceObj":{"__isSmartRef__":true,"id":100},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":39},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"125":{"sourceObj":{"__isSmartRef__":true,"id":100},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":39},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"126":{"submorphs":[{"__isSmartRef__":true,"id":127}],"scripts":[],"id":229,"shape":{"__isSmartRef__":true,"id":136},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":139},"priorExtent":{"__isSmartRef__":true,"id":140},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":76},"lighterFill":{"__isSmartRef__":true,"id":141},"label":{"__isSmartRef__":true,"id":127},"owner":{"__isSmartRef__":true,"id":52},"layout":{"__isSmartRef__":true,"id":150},"attributeConnections":[{"__isSmartRef__":true,"id":151},{"__isSmartRef__":true,"id":152}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"127":{"submorphs":[],"scripts":[],"id":230,"shape":{"__isSmartRef__":true,"id":128},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":131},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":132},"priorExtent":{"__isSmartRef__":true,"id":133},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":134}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":126},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"128":{"_Position":{"__isSmartRef__":true,"id":129},"_Extent":{"__isSmartRef__":true,"id":130},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":44},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"129":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"130":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"131":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"132":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"133":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"134":{"style":{"__isSmartRef__":true,"id":135},"morph":{"__isSmartRef__":true,"id":127},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"135":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"136":{"_Position":{"__isSmartRef__":true,"id":137},"_Extent":{"__isSmartRef__":true,"id":138},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":75},"_Fill":{"__isSmartRef__":true,"id":76},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"137":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"138":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"139":{"x":1114.8719879168443,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"140":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"141":{"stops":[{"__isSmartRef__":true,"id":142},{"__isSmartRef__":true,"id":144},{"__isSmartRef__":true,"id":146},{"__isSmartRef__":true,"id":148}],"vector":{"__isSmartRef__":true,"id":85},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"142":{"offset":0,"color":{"__isSmartRef__":true,"id":143}},"143":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"144":{"offset":0.4,"color":{"__isSmartRef__":true,"id":145}},"145":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"146":{"offset":0.6,"color":{"__isSmartRef__":true,"id":147}},"147":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"148":{"offset":1,"color":{"__isSmartRef__":true,"id":149}},"149":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"150":{"moveHorizontal":true},"151":{"sourceObj":{"__isSmartRef__":true,"id":126},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":39},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"152":{"sourceObj":{"__isSmartRef__":true,"id":126},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":39},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"153":{"_Position":{"__isSmartRef__":true,"id":154},"_Extent":{"__isSmartRef__":true,"id":155},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":156},"_Fill":{"__isSmartRef__":true,"id":157},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"154":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"155":{"x":1153.8719879168443,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"156":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"157":{"stops":[{"__isSmartRef__":true,"id":158},{"__isSmartRef__":true,"id":160},{"__isSmartRef__":true,"id":162}],"vector":{"__isSmartRef__":true,"id":164},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"158":{"offset":0,"color":{"__isSmartRef__":true,"id":159}},"159":{"r":0.7200000000000001,"g":0.7200000000000001,"b":0.7200000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"160":{"offset":0.6,"color":{"__isSmartRef__":true,"id":161}},"161":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"162":{"offset":1,"color":{"__isSmartRef__":true,"id":163}},"163":{"r":0.7200000000000001,"g":0.7200000000000001,"b":0.7200000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"164":{"x":0,"y":1,"width":0,"height":-1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"165":{"resizeWidth":true,"adjustForNewBounds":true},"166":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"167":{"x":1153.8719879168443,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"168":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":169},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"169":{"x":1153.8719879168443,"y":687.0241516737489,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"170":{"adjustForNewBounds":true},"171":{"x":32.11460365471234,"y":1187.0337409101735,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"172":{"x":1153.8719879168443,"y":687.0241516737489,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"173":{"x":636.4062920793325,"y":1207.3162247679961,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"174":{"submorphs":[{"__isSmartRef__":true,"id":175},{"__isSmartRef__":true,"id":187}],"scripts":[],"id":119,"shape":{"__isSmartRef__":true,"id":303},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":305},"_Position":{"__isSmartRef__":true,"id":306},"priorExtent":{"__isSmartRef__":true,"id":307},"targetMorph":{"__isSmartRef__":true,"id":175},"titleBar":{"__isSmartRef__":true,"id":187},"contentOffset":{"__isSmartRef__":true,"id":182},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"_Rotation":0,"_Scale":1,"prevDragPos":{"__isSmartRef__":true,"id":308},"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"175":{"submorphs":[],"scripts":[],"id":118,"shape":{"__isSmartRef__":true,"id":176},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":181},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":182},"priorExtent":{"__isSmartRef__":true,"id":183},"_MaxTextWidth":840.0361391213477,"_MaxTextHeight":208.04819264192543,"textChunks":[{"__isSmartRef__":true,"id":184}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":174},"layout":{"__isSmartRef__":true,"id":186},"priorSelectionRange":[19,27],"charsReplaced":"","lastFindLoc":118,"showsHalos":false,"prevScroll":[0,0],"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"176":{"_Position":{"__isSmartRef__":true,"id":177},"_Extent":{"__isSmartRef__":true,"id":178},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":179},"_Fill":{"__isSmartRef__":true,"id":180},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"177":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"178":{"x":840.0361391213477,"y":208.04819264192543,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"179":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"180":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"181":{"x":2,"y":1,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"182":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"183":{"x":840.0361391213477,"y":208.04819264192543,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"184":{"style":{"__isSmartRef__":true,"id":185},"morph":{"__isSmartRef__":true,"id":175},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"partSpace = lively.PartsBin.partsSpaceNamed( 'PartsBin/Tools')\npartItem = partSpace.getPartItemNamed('MethodFinder')\n\npartItem.loadPart()\n\npart = lively.PartsBin.getPart('MethodFinder', 'PartsBin/Tools')\npart.openInWorld(pt(0,0))","__LivelyClassName__":"lively.morphic.TextChunk"},"185":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"186":{"resizeWidth":true,"resizeHeight":true},"187":{"submorphs":[{"__isSmartRef__":true,"id":188},{"__isSmartRef__":true,"id":197},{"__isSmartRef__":true,"id":235},{"__isSmartRef__":true,"id":261}],"scripts":[],"id":120,"shape":{"__isSmartRef__":true,"id":288},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":300},"_Position":{"__isSmartRef__":true,"id":301},"eventsAreIgnored":true,"windowMorph":{"__isSmartRef__":true,"id":174},"label":{"__isSmartRef__":true,"id":188},"closeButton":{"__isSmartRef__":true,"id":197},"menuButton":{"__isSmartRef__":true,"id":235},"collapseButton":{"__isSmartRef__":true,"id":261},"priorExtent":{"__isSmartRef__":true,"id":302},"owner":{"__isSmartRef__":true,"id":174},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"188":{"submorphs":[],"scripts":[],"id":121,"shape":{"__isSmartRef__":true,"id":189},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":192},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":193},"priorExtent":{"__isSmartRef__":true,"id":194},"_MaxTextWidth":null,"_MaxTextHeight":22,"textChunks":[{"__isSmartRef__":true,"id":195}],"evalEnabled":false,"isLabel":true,"eventsAreIgnored":true,"_FontSize":10,"owner":{"__isSmartRef__":true,"id":187},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"189":{"_Position":{"__isSmartRef__":true,"id":190},"_Extent":{"__isSmartRef__":true,"id":191},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":179},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"190":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"191":{"x":72,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"192":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"193":{"x":384.01806956067384,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"194":{"x":72,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"195":{"style":{"__isSmartRef__":true,"id":196},"morph":{"__isSmartRef__":true,"id":188},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk"},"196":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"197":{"submorphs":[{"__isSmartRef__":true,"id":198}],"scripts":[],"id":122,"shape":{"__isSmartRef__":true,"id":207},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":221},"priorExtent":{"__isSmartRef__":true,"id":222},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":211},"lighterFill":{"__isSmartRef__":true,"id":223},"label":{"__isSmartRef__":true,"id":198},"owner":{"__isSmartRef__":true,"id":187},"layout":{"__isSmartRef__":true,"id":232},"attributeConnections":[{"__isSmartRef__":true,"id":233},{"__isSmartRef__":true,"id":234}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"198":{"submorphs":[],"scripts":[],"id":123,"shape":{"__isSmartRef__":true,"id":199},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":202},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":203},"priorExtent":{"__isSmartRef__":true,"id":204},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":205}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":197},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"199":{"_Position":{"__isSmartRef__":true,"id":200},"_Extent":{"__isSmartRef__":true,"id":201},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":179},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"200":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"201":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"202":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"203":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"204":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"205":{"style":{"__isSmartRef__":true,"id":206},"morph":{"__isSmartRef__":true,"id":198},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"206":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"207":{"_Position":{"__isSmartRef__":true,"id":208},"_Extent":{"__isSmartRef__":true,"id":209},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":210},"_Fill":{"__isSmartRef__":true,"id":211},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"208":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"209":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"210":{"r":0.8392156862745098,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"211":{"stops":[{"__isSmartRef__":true,"id":212},{"__isSmartRef__":true,"id":214},{"__isSmartRef__":true,"id":216},{"__isSmartRef__":true,"id":218}],"vector":{"__isSmartRef__":true,"id":220},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"212":{"offset":0,"color":{"__isSmartRef__":true,"id":213}},"213":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"214":{"offset":0.4,"color":{"__isSmartRef__":true,"id":215}},"215":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"216":{"offset":0.6,"color":{"__isSmartRef__":true,"id":217}},"217":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"218":{"offset":1,"color":{"__isSmartRef__":true,"id":219}},"219":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"220":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"221":{"x":820.0361391213477,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"222":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"223":{"stops":[{"__isSmartRef__":true,"id":224},{"__isSmartRef__":true,"id":226},{"__isSmartRef__":true,"id":228},{"__isSmartRef__":true,"id":230}],"vector":{"__isSmartRef__":true,"id":220},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"224":{"offset":0,"color":{"__isSmartRef__":true,"id":225}},"225":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"226":{"offset":0.4,"color":{"__isSmartRef__":true,"id":227}},"227":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"228":{"offset":0.6,"color":{"__isSmartRef__":true,"id":229}},"229":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"230":{"offset":1,"color":{"__isSmartRef__":true,"id":231}},"231":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"232":{"moveHorizontal":true},"233":{"sourceObj":{"__isSmartRef__":true,"id":197},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":174},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"234":{"sourceObj":{"__isSmartRef__":true,"id":197},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":174},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"235":{"submorphs":[{"__isSmartRef__":true,"id":236}],"scripts":[],"id":124,"shape":{"__isSmartRef__":true,"id":245},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":248},"priorExtent":{"__isSmartRef__":true,"id":249},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":211},"lighterFill":{"__isSmartRef__":true,"id":250},"label":{"__isSmartRef__":true,"id":236},"owner":{"__isSmartRef__":true,"id":187},"attributeConnections":[{"__isSmartRef__":true,"id":259},{"__isSmartRef__":true,"id":260}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"236":{"submorphs":[],"scripts":[],"id":125,"shape":{"__isSmartRef__":true,"id":237},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":240},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":241},"priorExtent":{"__isSmartRef__":true,"id":242},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":243}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":235},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"237":{"_Position":{"__isSmartRef__":true,"id":238},"_Extent":{"__isSmartRef__":true,"id":239},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":179},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"238":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"239":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"240":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"241":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"242":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"243":{"style":{"__isSmartRef__":true,"id":244},"morph":{"__isSmartRef__":true,"id":236},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"244":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"245":{"_Position":{"__isSmartRef__":true,"id":246},"_Extent":{"__isSmartRef__":true,"id":247},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":210},"_Fill":{"__isSmartRef__":true,"id":211},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"246":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"247":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"248":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"249":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"250":{"stops":[{"__isSmartRef__":true,"id":251},{"__isSmartRef__":true,"id":253},{"__isSmartRef__":true,"id":255},{"__isSmartRef__":true,"id":257}],"vector":{"__isSmartRef__":true,"id":220},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"251":{"offset":0,"color":{"__isSmartRef__":true,"id":252}},"252":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"253":{"offset":0.4,"color":{"__isSmartRef__":true,"id":254}},"254":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"255":{"offset":0.6,"color":{"__isSmartRef__":true,"id":256}},"256":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"257":{"offset":1,"color":{"__isSmartRef__":true,"id":258}},"258":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"259":{"sourceObj":{"__isSmartRef__":true,"id":235},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":174},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"260":{"sourceObj":{"__isSmartRef__":true,"id":235},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":174},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"261":{"submorphs":[{"__isSmartRef__":true,"id":262}],"scripts":[],"id":126,"shape":{"__isSmartRef__":true,"id":271},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":274},"priorExtent":{"__isSmartRef__":true,"id":275},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":211},"lighterFill":{"__isSmartRef__":true,"id":276},"label":{"__isSmartRef__":true,"id":262},"owner":{"__isSmartRef__":true,"id":187},"layout":{"__isSmartRef__":true,"id":285},"attributeConnections":[{"__isSmartRef__":true,"id":286},{"__isSmartRef__":true,"id":287}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"262":{"submorphs":[],"scripts":[],"id":127,"shape":{"__isSmartRef__":true,"id":263},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":266},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":267},"priorExtent":{"__isSmartRef__":true,"id":268},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":269}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":261},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"263":{"_Position":{"__isSmartRef__":true,"id":264},"_Extent":{"__isSmartRef__":true,"id":265},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":179},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"264":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"265":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"266":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"267":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"268":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"269":{"style":{"__isSmartRef__":true,"id":270},"morph":{"__isSmartRef__":true,"id":262},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"270":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"271":{"_Position":{"__isSmartRef__":true,"id":272},"_Extent":{"__isSmartRef__":true,"id":273},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":210},"_Fill":{"__isSmartRef__":true,"id":211},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"272":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"273":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"274":{"x":801.0361391213477,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"275":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"276":{"stops":[{"__isSmartRef__":true,"id":277},{"__isSmartRef__":true,"id":279},{"__isSmartRef__":true,"id":281},{"__isSmartRef__":true,"id":283}],"vector":{"__isSmartRef__":true,"id":220},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"277":{"offset":0,"color":{"__isSmartRef__":true,"id":278}},"278":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"279":{"offset":0.4,"color":{"__isSmartRef__":true,"id":280}},"280":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"281":{"offset":0.6,"color":{"__isSmartRef__":true,"id":282}},"282":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"283":{"offset":1,"color":{"__isSmartRef__":true,"id":284}},"284":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"285":{"moveHorizontal":true},"286":{"sourceObj":{"__isSmartRef__":true,"id":261},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":174},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"287":{"sourceObj":{"__isSmartRef__":true,"id":261},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":174},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"288":{"_Position":{"__isSmartRef__":true,"id":289},"_Extent":{"__isSmartRef__":true,"id":290},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":291},"_Fill":{"__isSmartRef__":true,"id":292},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"289":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"290":{"x":840.0361391213477,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"291":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"292":{"stops":[{"__isSmartRef__":true,"id":293},{"__isSmartRef__":true,"id":295},{"__isSmartRef__":true,"id":297}],"vector":{"__isSmartRef__":true,"id":299},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"293":{"offset":0,"color":{"__isSmartRef__":true,"id":294}},"294":{"r":0.8600000000000001,"g":0.8600000000000001,"b":0.8600000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"295":{"offset":0.6,"color":{"__isSmartRef__":true,"id":296}},"296":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"297":{"offset":1,"color":{"__isSmartRef__":true,"id":298}},"298":{"r":0.8600000000000001,"g":0.8600000000000001,"b":0.8600000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"299":{"x":0,"y":0,"width":0,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"300":{"resizeWidth":true,"adjustForNewBounds":true},"301":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"302":{"x":840.0361391213477,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"303":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":304},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"304":{"x":840.0361391213477,"y":230.04819264192543,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"305":{"adjustForNewBounds":true},"306":{"x":73.55546016837633,"y":615.4601117796843,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"307":{"x":840.0361391213477,"y":230.04819264192543,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"308":{"x":448.65006182608175,"y":630.9482621301102,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"309":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":310},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":314},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Rotation":0,"_Scale":1.0916059898444812,"__LivelyClassName__":"lively.morphic.HandMorph"},"310":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":311},"_Extent":{"__isSmartRef__":true,"id":312},"_Fill":{"__isSmartRef__":true,"id":313},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"311":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"312":{"x":2,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"313":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"314":{"x":453.0164857854597,"y":591.6504464957088,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"315":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":316},"_Extent":{"__isSmartRef__":true,"id":317},"_Fill":{"__isSmartRef__":true,"id":318},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"316":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"317":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"318":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"319":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"320":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"}}}]]>